HomeSort by relevance Sort by last modified time
    Searched defs:m_gl (Results 1 - 25 of 26) sorted by null

1 2

  /external/deqp/framework/opengl/
gluCallLogWrapper.hpp 52 const glw::Functions& m_gl; member in class:glu::CallLogWrapper
gluObjectWrapper.hpp 75 const glw::Functions& m_gl; member in class:glu::ObjectWrapper
118 const glw::Functions& m_gl; member in class:glu::ObjectVector
gluShaderProgram.hpp 105 const glw::Functions& m_gl; member in class:glu::Shader
146 const glw::Functions& m_gl; member in class:glu::Program
171 const glw::Functions& m_gl; member in class:glu::ProgramPipeline
  /external/deqp/modules/egl/
teglMutableRenderBufferTests.cpp 70 glw::Functions m_gl; member in class:deqp::egl::__anon16891::MutableRenderBufferTest
169 m_eglTestCtx.initGLFunctions(&m_gl, glu::ApiType::es(2,0));
205 m_gl.clearColor((float)color/255.f, (float)color/255.f, (float)color/255.f, (float)color/255.f);
206 m_gl.clear(GL_COLOR_BUFFER_BIT);
209 m_gl.flush();
242 m_gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &backBufferPixel);
teglImageTests.cpp 153 , glu::CallLogWrapper (m_gl, m_testCtx.getLog())
165 m_eglTestCtx.initGLFunctions(&m_gl, m_api, DE_LENGTH_OF_ARRAY(extensions), &extensions[0]);
176 return m_api.getMajorVersion() >= 3 || glu::hasExtension(m_gl, m_api, "GL_EXT_texture_rg");
180 glw::Functions m_gl; member in class:deqp::egl::Image::ImageTestCase
255 m_eglTestCtx.initGLFunctions(&m_gl, ctxType.getAPI());
261 const glw::Functions& gl (void) const { return m_gl; }
270 glw::Functions m_gl; member in class:deqp::egl::Image::Context
442 TCU_CHECK(m_gl.eglImageTargetTexture2DOES);
443 TCU_CHECK(m_gl.eglImageTargetRenderbufferStorageOES);
teglMemoryStressTests.cpp 88 glw::Functions m_gl; member in class:deqp::egl::__anon16888::MemoryAllocator
120 m_eglTestCtx.initGLFunctions(&m_gl, glu::ApiType::es(2,0));
226 m_gl.clearColor(red, green, blue, alpha);
227 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClearColor()");
229 m_gl.clear(GL_COLOR_BUFFER_BIT);
230 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClear()");
290 m_gl.clearColor(red, green, blue, alpha);
291 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClearColor()");
293 m_gl.clear(GL_COLOR_BUFFER_BIT);
294 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClear()")
    [all...]
teglSyncTests.cpp 95 glw::Functions m_gl; member in class:deqp::egl::__anon16911::SyncTest
207 m_eglTestCtx.initGLFunctions(&m_gl, glu::ApiType::es(2,0));
227 requiredGLESExtensions(m_gl);
512 GLU_CHECK_GLW_CALL(m_gl, flush());
555 GLU_CHECK_GLW_CALL(m_gl, flush());
762 GLU_CHECK_GLW_CALL(m_gl, finish());
    [all...]
teglBufferAgeTests.cpp 120 glw::Functions m_gl; member in class:deqp::egl::__anon16866::BufferAgeTest
214 const glw::Functions& m_gl; member in class:deqp::egl::__anon16866::GLES2Renderer
244 : m_gl (gl)
249 m_colorLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_color");
250 m_coordLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_pos");
251 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to get attribute locations");
292 m_gl.useProgram(m_glProgram.getProgram());
293 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glUseProgram() failed");
295 m_gl.enableVertexAttribArray(m_coordLoc);
296 m_gl.enableVertexAttribArray(m_colorLoc)
    [all...]
teglGLES2SharingTests.cpp 108 glw::Functions m_gl; member in class:deqp::egl::GLES2SharingTest
125 m_eglTestCtx.initGLFunctions(&m_gl, glu::ApiType::es(2,0));
324 GLU_CHECK_GLW_CALL(m_gl, genBuffers(1, &m_glBuffer));
325 GLU_CHECK_GLW_CALL(m_gl, bindBuffer(GL_ARRAY_BUFFER, m_glBuffer));
326 GLU_CHECK_GLW_CALL(m_gl, bufferData(GL_ARRAY_BUFFER, (GLsizei)(m_buffer.size() * sizeof(GLubyte)), &(m_buffer[0]), GL_DYNAMIC_DRAW));
327 GLU_CHECK_GLW_CALL(m_gl, bindBuffer(GL_ARRAY_BUFFER, 0));
332 GLU_CHECK_GLW_CALL(m_gl, deleteBuffers(1, &m_glBuffer));
357 glu::ShaderProgram program(m_gl, glu::makeVtxFragSources(vertexShader, fragmentShader));
398 GLU_CHECK_GLW_CALL(m_gl, viewport(0, 0, width, height));
400 GLU_CHECK_GLW_CALL(m_gl, clearColor(1.0f, 0.0f, 0.0f, 1.0f))
    [all...]
teglPartialUpdateTests.cpp 109 glw::Functions m_gl; member in class:deqp::egl::__anon16896::PartialUpdateTest
202 const glw::Functions& m_gl; member in class:deqp::egl::__anon16896::GLES2Renderer
232 : m_gl (gl)
237 m_colorLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_color");
238 m_coordLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_pos");
239 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to get attribute locations");
281 m_gl.useProgram(m_glProgram.getProgram());
282 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glUseProgram() failed");
284 m_gl.enableVertexAttribArray(m_coordLoc);
285 m_gl.enableVertexAttribArray(m_colorLoc)
    [all...]
teglPreservingSwapTests.cpp 96 glw::Functions m_gl; member in class:deqp::egl::__anon16897::PreservingSwapTest
114 const glw::Functions& m_gl; member in class:deqp::egl::__anon16897::GLES2Program
146 : m_gl (gl)
151 m_colorLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_color");
152 m_coordLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_pos");
153 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to get attribute locations");
186 m_gl.useProgram(m_glProgram.getProgram());
187 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glUseProgram() failed");
189 m_gl.enableVertexAttribArray(m_coordLoc);
190 m_gl.enableVertexAttribArray(m_colorLoc)
    [all...]
teglResizeTests.cpp 128 glw::Functions m_gl; member in class:deqp::egl::ResizeTest
187 m_eglTestCtx.initGLFunctions(&m_gl, glu::ApiType::es(2, 0));
357 initSurface(m_gl, oldEglSize);
392 GLU_EXPECT_NO_ERROR(m_gl.getError(), "GL state erroneous upon initialization!");
396 initSurface(m_gl, oldEglSize);
398 m_gl.finish();
399 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glFinish() failed");
402 const Surface oldSurface = readSurface(m_gl, oldEglSize);
411 const Surface newSurface = readSurface(m_gl, newEglSize);
497 initSurface(m_gl, oldEglSize)
    [all...]
teglSwapBuffersWithDamageTests.cpp 144 const glw::Functions& m_gl; member in class:deqp::egl::__anon16910::GLES2Renderer
174 : m_gl (gl)
179 m_colorLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_color");
180 m_coordLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_pos");
181 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to get attribute locations");
223 m_gl.useProgram(m_glProgram.getProgram());
224 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glUseProgram() failed");
226 m_gl.enableVertexAttribArray(m_coordLoc);
227 m_gl.enableVertexAttribArray(m_colorLoc);
228 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to enable attributes")
289 glw::Functions m_gl; member in class:deqp::egl::__anon16910::SwapBuffersWithDamageTest
    [all...]
teglGLES2SharedRenderingPerfTests.cpp 126 glw::Functions m_gl; member in class:deqp::egl::__anon16878::TestContext
512 m_testCtx.initGLFunctions(&m_gl, glu::ApiType::es(2,0), DE_LENGTH_OF_ARRAY(reqExts), reqExts);
519 vector<string> glExts = de::splitString((const char*)m_gl.getString(GL_EXTENSIONS), ' ');
524 TCU_CHECK(m_gl.eglImageTargetTexture2DOES);
528 m_coordBuffer = createCoordBuffer(m_gl, m_config);
535 m_indexBuffer = createIndexBuffer(m_gl, m_config);
544 m_texture = createTexture(m_gl, m_config);
550 m_texture = createTexture(m_gl, m_config);
579 m_program = createProgram(m_gl, m_config);
583 m_coordLoc = m_gl.getAttribLocation(m_program, "a_coord")
    [all...]
teglImageFormatTests.cpp 273 const glw::Functions& m_gl; member in class:deqp::egl::Image::GLES2ImageApi
282 , m_gl (gl)
318 de::UniquePtr<ClientBuffer> buffer (m_imgSource->createBuffer(api.m_gl, &ref));
378 const glw::Functions& gl = api.m_gl;
455 const glw::Functions& gl = api.m_gl;
582 const glw::Functions& gl = api.m_gl;
696 const glw::Functions& gl = api.m_gl;
770 const glw::Functions& gl = api.m_gl;
797 const glw::Functions& gl = api.m_gl;
821 const glw::Functions& gl = api.m_gl;
883 glw::Functions m_gl; member in class:deqp::egl::Image::ImageFormatCase
    [all...]
teglRenderTests.cpp 488 : m_gl (gl)
494 m_positionLoc = m_gl.getAttribLocation(m_program.getProgram(), "a_position");
495 m_colorLoc = m_gl.getAttribLocation(m_program.getProgram(), "a_color");
504 m_gl.useProgram(m_program.getProgram());
505 m_gl.enableVertexAttribArray(m_positionLoc);
506 m_gl.enableVertexAttribArray(m_colorLoc);
507 GLU_CHECK_GLW_MSG(m_gl, "Program setup failed");
514 const glw::Functions& m_gl; member in class:deqp::egl::__anon16901::GLES2Program
678 glw::Functions m_gl; member in class:deqp::egl::SingleThreadRenderCase
691 m_eglTestCtx.initGLFunctions(&m_gl, glu::ApiType::es(2,0))
812 glw::Functions m_gl; member in class:deqp::egl::MultiThreadRenderCase
879 const glw::Functions& m_gl; member in class:deqp::egl::RenderTestThread
    [all...]
teglRobustnessTests.cpp 586 glw::Functions& m_gl; member in class:deqp::egl::__anon16903::ContextReset
602 : m_gl (gl)
609 : m_gl (gl)
618 : m_gl (gl)
626 GLU_CHECK_GLW_CALL(m_gl, finish());
631 m_sync = m_gl.fenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
632 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glFenceSync()");
638 error = m_gl.getError();
646 resetStatus = m_gl.getGraphicsResetStatus();
654 m_gl.getSynciv(m_sync, GL_SYNC_STATUS, sizeof(glw::GLint), NULL, &syncStatus)
    [all...]
teglGLES2SharingThreadedTests.cpp 2100 glw::Functions m_gl; member in class:deqp::egl::GLES2SharingRandomTest
3002 glw::Functions m_gl; member in class:deqp::egl::GLES2ThreadedSharingTest
    [all...]
  /external/deqp/modules/gles31/functional/
es31fBasicComputeShaderTests.cpp 54 : m_gl (gl)
65 m_gl.unmapBuffer(m_target);
75 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::BufferMemMap
    [all...]
es31fSRGBDecodeTests.cpp 322 const glw::Functions* m_gl; member in class:deqp::gles31::Functional::__anon17383::SRGBTestSampler
339 : m_gl (&context.getRenderContext().getFunctions())
346 m_gl->genSamplers(1, &m_samplerHandle);
348 m_gl->samplerParameteri(m_samplerHandle, GL_TEXTURE_WRAP_S, glu::getGLWrapMode(m_wrapS));
349 m_gl->samplerParameteri(m_samplerHandle, GL_TEXTURE_WRAP_T, glu::getGLWrapMode(m_wrapT));
350 m_gl->samplerParameteri(m_samplerHandle, GL_TEXTURE_MIN_FILTER, glu::getGLFilterMode(m_minFilter));
351 m_gl->samplerParameteri(m_samplerHandle, GL_TEXTURE_MAG_FILTER, glu::getGLFilterMode(m_magFilter));
358 m_gl->deleteSamplers(1, &m_samplerHandle);
365 m_gl->samplerParameteri(m_samplerHandle, GL_TEXTURE_SRGB_DECODE_EXT, GL_SKIP_DECODE_EXT);
366 GLU_EXPECT_NO_ERROR(m_gl->getError(), "samplerParameteri(m_samplerID, GL_TEXTURE_SRGB_DECODE_EXT, GL_SKIP_DECODE_EXT)")
    [all...]
es31fShaderImageLoadStoreTests.cpp 494 : m_gl (gl)
505 m_gl.unmapBuffer(m_target);
515 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon17409::BufferMemMap
526 : m_gl (gl)
538 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon17409::UniformAccessLogger
549 const int loc = m_gl.getUniformLocation(m_programGL, name.c_str());
560 m_gl.uniform1i(loc, x);
567 m_gl.uniform3f(loc, x, y, z);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fLifetimeTests.cpp 474 glu::CallLogWrapper& m_gl; member in class:deqp::gles3::Functional::__anon17090::ScopedTransformFeedbackFeedback
478 : m_gl(gl)
480 m_gl.glBeginTransformFeedback(type);
481 GLU_EXPECT_NO_ERROR(m_gl.glGetError(), "glBeginTransformFeedback");
486 m_gl.glEndTransformFeedback();
es3fShaderDerivateTests.cpp 106 : m_gl (gl)
114 m_gl.deleteFramebuffers(1, &m_fbo);
120 m_gl.genFramebuffers(1, &m_fbo);
126 const glw::Functions& m_gl; member in class:deqp::gles3::Functional::__anon17119::AutoFbo
134 : m_gl (gl)
142 m_gl.deleteRenderbuffers(1, &m_rbo);
148 m_gl.genRenderbuffers(1, &m_rbo);
154 const glw::Functions& m_gl; member in class:deqp::gles3::Functional::__anon17119::AutoRbo
    [all...]
  /external/deqp/modules/glshared/
glsShaderLibraryCase.cpp 623 const glw::Functions& m_gl; member in class:deqp::gls::BeforeDrawValidator
632 : m_gl (gl)
649 m_gl.validateProgram(m_target);
651 m_gl.validateProgramPipeline(m_target);
655 GLU_EXPECT_NO_ERROR(m_gl.getError(), "validate");
661 m_gl.getProgramiv(m_target, GL_VALIDATE_STATUS, &m_validateStatus);
663 m_gl.getProgramPipelineiv(m_target, GL_VALIDATE_STATUS, &m_validateStatus);
667 GLU_EXPECT_NO_ERROR(m_gl.getError(), "get validate status");
675 m_gl.getProgramiv(m_target, GL_INFO_LOG_LENGTH, &infoLogLength);
677 m_gl.getProgramPipelineiv(m_target, GL_INFO_LOG_LENGTH, &infoLogLength)
    [all...]
glsFboUtil.hpp 356 const glw::Functions& m_gl; member in class:deqp::gls::FboUtil::FboBuilder

Completed in 3673 milliseconds

1 2