/external/deqp/framework/opengl/ |
gluCallLogWrapper.hpp | 52 const glw::Functions& m_gl; member in class:glu::CallLogWrapper
|
gluObjectWrapper.hpp | 73 const glw::Functions& m_gl; member in class:glu::ObjectWrapper 115 const glw::Functions& m_gl; member in class:glu::ObjectVector
|
/external/deqp/modules/glshared/ |
glsShaderLibraryCase.cpp | 232 const glw::Functions& m_gl; member in class:deqp::gls::sl::BeforeDrawValidator 241 : m_gl (gl) 258 m_gl.validateProgram(m_target); 260 m_gl.validateProgramPipeline(m_target); 264 GLU_EXPECT_NO_ERROR(m_gl.getError(), "validate"); 270 m_gl.getProgramiv(m_target, GL_VALIDATE_STATUS, &m_validateStatus); 272 m_gl.getProgramPipelineiv(m_target, GL_VALIDATE_STATUS, &m_validateStatus); 276 GLU_EXPECT_NO_ERROR(m_gl.getError(), "get validate status"); 284 m_gl.getProgramiv(m_target, GL_INFO_LOG_LENGTH, &infoLogLength); 286 m_gl.getProgramPipelineiv(m_target, GL_INFO_LOG_LENGTH, &infoLogLength) [all...] |
glsFboUtil.hpp | 405 const glw::Functions& m_gl; member in class:deqp::gls::FboUtil::FboBuilder
|
/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...] |
es31fShaderImageLoadStoreTests.cpp | 483 : m_gl (gl) 494 m_gl.unmapBuffer(m_target); 504 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon4024::BufferMemMap 515 : m_gl (gl) 527 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon4024::UniformAccessLogger 538 const int loc = m_gl.getUniformLocation(m_programGL, name.c_str()); 549 m_gl.uniform1i(loc, x); 556 m_gl.uniform3f(loc, x, y, z); [all...] |
/external/deqp/modules/egl/ |
teglMemoryStressTests.cpp | 82 glw::Functions m_gl; member in class:deqp::egl::__anon3537::MemoryAllocator 114 m_eglTestCtx.getGLFunctions(m_gl, glu::ApiType::es(2,0)); 219 m_gl.clearColor(red, green, blue, alpha); 220 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClearColor()"); 222 m_gl.clear(GL_COLOR_BUFFER_BIT); 223 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClear()"); 281 m_gl.clearColor(red, green, blue, alpha); 282 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClearColor()"); 284 m_gl.clear(GL_COLOR_BUFFER_BIT); 285 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glClear()") [all...] |
teglPreservingSwapTests.cpp | 90 glw::Functions m_gl; member in class:deqp::egl::__anon3541::PreservingSwapTest 108 const glw::Functions& m_gl; member in class:deqp::egl::__anon3541::GLES2Program 118 : m_gl (gl) 145 vtxShader = m_gl.createShader(GL_VERTEX_SHADER); 146 fragShader = m_gl.createShader(GL_FRAGMENT_SHADER); 148 m_glProgram = m_gl.createProgram(); 150 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to create resources for shader program"); 152 m_gl.shaderSource(vtxShader, 1, &vertexShaderSource, DE_NULL); 153 m_gl.shaderSource(fragShader, 1, &fragmentShaderSource, DE_NULL); 154 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to set shader sources") [all...] |
teglResizeTests.cpp | 121 glw::Functions m_gl; member in class:deqp::egl::ResizeTest 175 m_eglTestCtx.getGLFunctions(m_gl, glu::ApiType::es(2, 0)); 342 initSurface(m_gl, oldEglSize); 376 GLU_EXPECT_NO_ERROR(m_gl.getError(), "GL state erroneous upon initialization!"); 380 initSurface(m_gl, oldEglSize); 382 m_gl.finish(); 383 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glFinish() failed"); 386 const Surface oldSurface = readSurface(m_gl, oldEglSize); 394 const Surface newSurface = readSurface(m_gl, newEglSize); 476 initSurface(m_gl, oldEglSize) [all...] |
teglGLES2SharedRenderingPerfTests.cpp | 122 glw::Functions m_gl; member in class:deqp::egl::__anon3528::TestContext 530 m_testCtx.getGLFunctions(m_gl, glu::ApiType::es(2,0)); 536 if (!checkExtension((const char*)m_gl.getString(GL_EXTENSIONS), "GL_OES_EGL_image")) 545 m_coordBuffer = createCoordBuffer(m_gl, m_config); 552 m_indexBuffer = createIndexBuffer(m_gl, m_config); 561 m_texture = createTexture(m_gl, m_config); 567 m_texture = createTexture(m_gl, m_config); 596 m_program = createProgram(m_gl, m_config); 600 m_coordLoc = m_gl.getAttribLocation(m_program, "a_coord"); 603 m_textureLoc = m_gl.getUniformLocation(m_program, "u_sampler") [all...] |
/external/deqp/modules/gles3/functional/ |
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::__anon3759::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::__anon3759::AutoRbo [all...] |
es3fShaderOperatorTests.cpp | 571 : m_gl (gl) 594 m_evaluatedScale = m_scale.getValue(m_gl, m_shaderType); 595 m_evaluatedBias = m_bias.getValue(m_gl, m_shaderType); 605 const glw::Functions& m_gl; member in class:deqp::gles3::Functional::OperatorShaderEvaluator [all...] |