Searched refs:m_gl (Results 1 - 16 of 16) sorted by relevance

/external/deqp/modules/egl/
H A DteglPreservingSwapTests.cpp90 glw::Functions m_gl; member in class:deqp::egl::__anon19836::PreservingSwapTest
108 const glw::Functions& m_gl; member in class:deqp::egl::__anon19836::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
[all...]
H A DteglMemoryStressTests.cpp82 glw::Functions m_gl; member in class:deqp::egl::__anon19832::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
[all...]
H A DteglGLES2SharedRenderingPerfTests.cpp122 glw::Functions m_gl; member in class:deqp::egl::__anon19823::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
[all...]
H A DteglResizeTests.cpp121 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, oldEglSiz
[all...]
/external/deqp/framework/opengl/
H A DgluCallLogWrapper.inl9 glw::GLsync returnValue = m_gl.createSyncFromCLeventARB(param0, param1, param2);
19 m_gl.blendBarrierKHR();
26 m_gl.cullFace(param0);
33 m_gl.frontFace(param0);
40 m_gl.hint(param0, param1);
47 m_gl.lineWidth(param0);
54 m_gl.pointSize(param0);
61 m_gl.polygonMode(param0, param1);
68 m_gl.scissor(param0, param1, param2, param3);
75 m_gl
[all...]
H A DgluCallLogWrapper.hpp52 const glw::Functions& m_gl; member in class:glu::CallLogWrapper
H A DgluObjectWrapper.cpp36 : m_gl (gl)
59 (m_gl.*m_traits.deleteFunc)(1, &m_object);
79 : m_gl (gl)
102 (m_gl.*m_traits.genFunc)(glw::GLsizei(newSize - oldSize), &m_objects[oldSize]);
106 (m_gl.*m_traits.deleteFunc)(glw::GLsizei(oldSize - newSize), &m_objects[newSize]);
113 (m_gl.*m_traits.deleteFunc)(glw::GLsizei(m_objects.size()), &m_objects.front());
H A DgluObjectWrapper.hpp73 const glw::Functions& m_gl; member in class:glu::ObjectWrapper
115 const glw::Functions& m_gl; member in class:glu::ObjectVector
H A DgluCallLogWrapper.cpp36 : m_gl (gl)
/external/deqp/modules/glshared/
H A DglsFboUtil.cpp570 , m_gl (gl)
572 m_gl.bindFramebuffer(m_target, fbo);
579 glDelete(*it->second, it->first, m_gl);
583 glDelete(*it->second, it->first, m_gl);
585 m_gl.bindFramebuffer(m_target, 0);
594 const GLenum error = m_gl.getError();
602 m_gl.framebufferRenderbuffer(m_target, attPoint, GL_RENDERBUFFER, 0);
604 attachAttachment(*att, attPoint, m_gl);
611 const GLuint texName = glCreate(texCfg, m_gl);
619 const GLuint rbName = glCreate(rbCfg, m_gl);
[all...]
H A DglsShaderLibraryCase.cpp232 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
[all...]
H A DglsFboUtil.hpp405 const glw::Functions& m_gl; member in class:deqp::gls::FboUtil::FboBuilder
/external/deqp/modules/gles3/functional/
H A Des3fShaderDerivateTests.cpp106 : 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::__anon20054::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::__anon20054::AutoRbo
H A Des3fShaderOperatorTests.cpp571 : 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
/external/deqp/modules/gles31/functional/
H A Des31fShaderImageLoadStoreTests.cpp483 : m_gl (gl)
494 m_gl.unmapBuffer(m_target);
504 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon20319::BufferMemMap
515 : m_gl (gl)
527 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon20319::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);
H A Des31fBasicComputeShaderTests.cpp54 : m_gl (gl)
65 m_gl.unmapBuffer(m_target);
75 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::BufferMemMap

Completed in 262 milliseconds