HomeSort by relevance Sort by last modified time
    Searched defs:m_gl (Results 1 - 25 of 30) 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::__anon17049::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::__anon17046::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::__anon17069::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::__anon17025::BufferAgeTest
214 const glw::Functions& m_gl; member in class:deqp::egl::__anon17025::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::__anon17054::PartialUpdateTest
202 const glw::Functions& m_gl; member in class:deqp::egl::__anon17054::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::__anon17055::PreservingSwapTest
114 const glw::Functions& m_gl; member in class:deqp::egl::__anon17055::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::__anon17068::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::__anon17068::SwapBuffersWithDamageTest
    [all...]
teglGLES2SharedRenderingPerfTests.cpp 126 glw::Functions m_gl; member in class:deqp::egl::__anon17037::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...]
teglWideColorTests.cpp 116 glw::Functions m_gl; member in class:deqp::egl::__anon17071::WideColorTest
157 const glw::Functions& m_gl; member in class:deqp::egl::__anon17071::GLES2Renderer
189 : m_gl (gl)
196 m_colorLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_color");
197 m_coordLoc = m_gl.getAttribLocation(m_glProgram.getProgram(), "a_pos");
198 GLU_EXPECT_NO_ERROR(m_gl.getError(), "Failed to get attribute locations");
234 m_gl.useProgram(m_glProgram.getProgram());
235 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glUseProgram() failed");
237 m_gl.enableVertexAttribArray(m_coordLoc);
238 m_gl.enableVertexAttribArray(m_colorLoc)
    [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::__anon17059::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 593 glw::Functions& m_gl; member in class:deqp::egl::__anon17061::ContextReset
609 : m_gl (gl)
616 : m_gl (gl)
625 : m_gl (gl)
633 GLU_CHECK_GLW_CALL(m_gl, finish());
638 m_sync = m_gl.fenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
639 GLU_EXPECT_NO_ERROR(m_gl.getError(), "glFenceSync()");
645 error = m_gl.getError();
653 resetStatus = m_gl.getGraphicsResetStatus();
661 m_gl.getSynciv(m_sync, GL_SYNC_STATUS, sizeof(glw::GLint), NULL, &syncStatus)
    [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...]
es31fDrawElementsBaseVertexTests.cpp 184 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon17493::VertexIDCase
205 , m_gl (m_context.getRenderContext().getFunctions())
254 GLU_CHECK_GLW_CALL(m_gl, useProgram(m_program->getProgram()));
256 GLU_CHECK_GLW_CALL(m_gl, genBuffers(1, &m_coordinatesBuffer));
257 GLU_CHECK_GLW_CALL(m_gl, genBuffers(1, &m_elementsBuffer));
267 GLU_CHECK_GLW_CALL(m_gl, deleteBuffers(1, &m_elementsBuffer));
273 GLU_CHECK_GLW_CALL(m_gl, deleteBuffers(1, &m_coordinatesBuffer));
283 GLU_CHECK_GLW_CALL(m_gl, drawElementsBaseVertex(mode, count, type, indices, baseVertex));
289 GLU_CHECK_GLW_CALL(m_gl, getIntegerv(GL_MAX_ELEMENTS_VERTICES, &maxElementsVertices));
290 GLU_CHECK_GLW_CALL(m_gl, drawRangeElementsBaseVertex(mode, 0, maxElementsVertices, count, type, indices, baseVertex))
    [all...]
es31fShaderFramebufferFetchTests.cpp 280 const glw::Functions& m_gl; member in class:deqp::gles31::Functional::__anon17573::FramebufferFetchTestCase
300 , m_gl (m_context.getRenderContext().getFunctions())
333 m_gl.useProgram(m_program->getProgram());
343 m_gl.bindFramebuffer(GL_FRAMEBUFFER, 0);
344 m_gl.deleteFramebuffers(1, &m_framebuffer);
350 m_gl.deleteTextures(1, &m_texColorBuffer);
390 m_gl.genFramebuffers(1, &m_framebuffer);
391 m_gl.bindFramebuffer(GL_FRAMEBUFFER, m_framebuffer);
394 GLU_EXPECT_NO_ERROR(m_gl.getError(), "genAttachementTexture()");
396 m_gl.framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_texColorBuffer, 0)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fLifetimeTests.cpp 474 glu::CallLogWrapper& m_gl; member in class:deqp::gles3::Functional::__anon17249::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::__anon17278::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::__anon17278::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 331 milliseconds

1 2