Searched defs:gl (Results 276 - 300 of 354) sorted by relevance

<<1112131415

/external/chromium_org/third_party/angle/src/libGLESv2/
H A DContext.h7 // Context.h: Defines the gl::Context class, managing all GL state and performing
42 namespace gl namespace
132 Context(int clientVersion, const gl::Context *shareContext, rx::Renderer *renderer, bool notifyResets, bool robustAccess);
H A Dangletypes.h15 namespace gl namespace
175 bool clearColor[gl::IMPLEMENTATION_MAX_DRAW_BUFFERS];
242 const gl::VertexAttribCurrentValueData *currentValues);
H A DvalidationES.cpp25 namespace gl namespace
169 bool ValidImageSize(const gl::Context *context, GLenum target, GLint level,
178 (level != 0 && (!gl::isPow2(width) || !gl::isPow2(height) || !gl::isPow2(depth))))
191 bool ValidCompressedImageSize(const gl::Context *context, GLenum internalFormat, GLsizei width, GLsizei height)
240 return gl::error(GL_INVALID_OPERATION, false);
245 return gl::error(GL_INVALID_VALUE, false);
249 bool ValidateRenderbufferStorageParameters(const gl::Context *context, GLenum target, GLsizei samples,
258 return gl
[all...]
/external/chromium_org/third_party/angle/src/third_party/trace_event/
H A Dtrace_event.h462 gl::TraceGetTraceCategoryEnabledFlag
476 gl::TraceAddTraceEvent
503 gl::TraceEvent::addTraceEvent( \
505 gl::TraceEvent::noEventId, flags, ##__VA_ARGS__); \
514 gl::TraceEvent::TraceEndOnScopeClose \
517 gl::TraceEvent::addTraceEvent( \
520 name, gl::TraceEvent::noEventId, \
534 gl::TraceEvent::TraceID traceEventTraceID( \
536 gl::TraceEvent::addTraceEvent( \
575 namespace gl { namespace
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp248 const glw::Functions& gl = renderCtx.getFunctions(); local
250 gl.getIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &maxTextureImageUnits);
251 gl.getIntegerv(GL_MAX_TEXTURE_SIZE, &maxTexture2DSize);
252 gl.getIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE, &maxTextureCubeSize);
253 gl.getIntegerv(GL_MAX_RENDERBUFFER_SIZE, &maxRenderbufferSize);
254 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
258 gl.getIntegerv(GL_MAX_ARRAY_TEXTURE_LAYERS, &maxTexture2DArrayLayers);
259 gl.getIntegerv(GL_MAX_3D_TEXTURE_SIZE, &maxTexture3DSize);
267 GLU_EXPECT_NO_ERROR(gl.getError(), GL_NO_ERROR);
/external/deqp/modules/egl/
H A DteglCreateContextExtTests.cpp224 bool validateCurrentContext (const glw::Functions& gl);
484 bool hasExtension (const glw::Functions& gl, const char* extension) argument
486 std::istringstream stream((const char*)gl.getString(GL_EXTENSIONS));
498 bool checkVersionString (TestLog& log, const glw::Functions& gl, bool desktop, int major, int minor) argument
500 const char* const versionStr = (const char*)gl.getString(GL_VERSION);
614 if (hasExtension(gl, "GL_ARB_compatibility"))
626 gl.getIntegerv(GL_CONTEXT_PROFILE_MASK, &profile);
627 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetIntegerv()");
648 gl.getIntegerv(GL_CONTEXT_PROFILE_MASK, &profile);
649 GLU_EXPECT_NO_ERROR(gl
687 checkVersionQueries(TestLog& log, const glw::Functions& gl, int major, int minor) argument
713 validateCurrentContext(const glw::Functions& gl) argument
1066 glw::Functions gl; local
[all...]
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp249 const glw::Functions& gl = m_renderCtx.getFunctions(); local
293 gl.activeTexture(GL_TEXTURE0);
296 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture());
297 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, m_wrapS);
298 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, m_wrapT);
299 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, m_minFilter);
300 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, magFilter);
302 GLU_EXPECT_NO_ERROR(gl.getError(), "After texture setup");
344 gl.viewport(viewport.x+curX, viewport.y+curY, curW, curH);
535 const glw::Functions& gl local
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderStateQueryTests.cpp99 void verifyShaderParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint shader, GLenum pname, GLenum reference) argument
102 gl.glGetShaderiv(shader, pname, &state);
108 bool verifyProgramParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLenum pname, GLenum reference) argument
111 gl.glGetProgramiv(program, pname, &state);
118 void verifyCurrentVertexAttribf (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
123 gl.glGetVertexAttribfv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue);
138 void verifyCurrentVertexAttribConversion (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
143 gl.glGetVertexAttribiv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue);
189 void verifyVertexAttrib (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLint index, GLenum pname, GLenum reference) argument
192 gl
198 verifyUniformValue1f(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, float x) argument
223 verifyUniformValue2f(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, float x, float y) argument
251 verifyUniformValue3f(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, float x, float y, float z) argument
282 verifyUniformValue4f(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, float x, float y, float z, float w) argument
316 verifyUniformValue1i(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, GLint x) argument
341 verifyUniformValue2i(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, GLint x, GLint y) argument
369 verifyUniformValue3i(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, GLint x, GLint y, GLint z) argument
400 verifyUniformValue4i(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w) argument
435 verifyUniformValues(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, const GLfloat* values) argument
458 verifyUniformMatrixValues(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, const GLfloat* values, bool transpose) argument
484 requireShaderCompiler(tcu::TestContext& testCtx, glu::CallLogWrapper& gl) argument
[all...]
H A Des2fShaderTextureFunctionTests.cpp271 const glw::Functions& gl = m_renderCtx.getFunctions(); local
273 gl.getIntegerv(GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &numVertexUnits);
541 const glw::Functions& gl = m_renderCtx.getFunctions(); local
542 gl.uniform1i(gl.getUniformLocation(programID, "u_sampler"), 0);
H A Des2fTextureMipmapTests.cpp250 const glw::Functions& gl = m_renderCtx.getFunctions(); local
289 gl.bindTexture (GL_TEXTURE_2D, m_texture->getGLTexture());
290 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, m_wrapS);
291 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, m_wrapT);
292 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, m_minFilter);
293 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, magFilter);
295 GLU_EXPECT_NO_ERROR(gl.getError(), "After texture setup");
337 gl.viewport(viewport.x+curX, viewport.y+curY, curW, curH);
589 const glw::Functions& gl = m_renderCtx.getFunctions(); local
606 gl
811 const glw::Functions& gl = m_renderCtx.getFunctions(); local
948 const glw::Functions& gl = m_renderCtx.getFunctions(); local
[all...]
/external/deqp/modules/gles2/performance/
H A Des2pShaderControlStatementTests.cpp111 const glw::Functions& gl = m_renderCtx.getFunctions(); local
113 gl.enable(GL_BLEND);
114 gl.blendEquation(GL_FUNC_ADD);
115 gl.blendFunc(GL_ONE, GL_ONE);
348 const glw::Functions& gl = m_renderCtx.getFunctions(); local
352 int location = gl.getUniformLocation(program, "u_compareValue");
353 gl.uniform1f(location, m_branchType == BRANCH_TRUE ? +1.0f : -1.0f);
360 int compareAttribLocation = gl.getAttribLocation(program, "a_compareValue");
364 gl.genBuffers(1, &m_arrayBuffer);
365 gl
376 const glw::Functions& gl = m_renderCtx.getFunctions(); local
387 const glw::Functions& gl = m_renderCtx.getFunctions(); local
619 const glw::Functions& gl = m_renderCtx.getFunctions(); local
649 const glw::Functions& gl = m_renderCtx.getFunctions(); local
660 const glw::Functions& gl = m_renderCtx.getFunctions(); local
[all...]
H A Des2pShaderOperatorTests.cpp97 static void uniformNfv (const glw::Functions& gl, int n, int location, int count, const float* data) argument
101 case 1: gl.uniform1fv(location, count, data); break;
102 case 2: gl.uniform2fv(location, count, data); break;
103 case 3: gl.uniform3fv(location, count, data); break;
104 case 4: gl.uniform4fv(location, count, data); break;
109 static void uniformNiv (const glw::Functions& gl, int n, int location, int count, const int* data) argument
113 case 1: gl.uniform1iv(location, count, data); break;
114 case 2: gl.uniform2iv(location, count, data); break;
115 case 3: gl.uniform3iv(location, count, data); break;
116 case 4: gl
121 uniformMatrixNfv(const glw::Functions& gl, int n, int location, int count, const float* data) argument
[all...]
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp241 const glw::Functions& gl = m_renderCtx.getFunctions(); local
286 gl.activeTexture(GL_TEXTURE0);
289 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture());
290 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, m_wrapS);
291 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, m_wrapT);
292 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, m_minFilter);
293 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, magFilter);
295 GLU_EXPECT_NO_ERROR(gl.getError(), "After texture setup");
337 gl.viewport(viewport.x+curX, viewport.y+curY, curW, curH);
523 const glw::Functions& gl local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderBuiltinVarTests.cpp57 static int getInteger (const glw::Functions& gl, deUint32 pname) argument
60 gl.getIntegerv(pname, &value);
61 GLU_EXPECT_NO_ERROR(gl.getError(), ("glGetIntegerv(" + glu::getGettableStateStr((int)pname).toString() + ")").c_str());
66 static int getInteger (const glw::Functions& gl) argument
68 return getInteger(gl, Pname);
71 static int getVectorsFromComps (const glw::Functions& gl, deUint32 pname) argument
74 gl.getIntegerv(pname, &value);
75 GLU_EXPECT_NO_ERROR(gl.getError(), ("glGetIntegerv(" + glu::getGettableStateStr((int)pname).toString() + ")").c_str());
81 static int getVectorsFromComps (const glw::Functions& gl) argument
83 return getVectorsFromComps(gl, Pnam
256 const glw::Functions& gl = m_renderCtx.getFunctions(); local
296 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
393 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
483 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
607 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
740 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
964 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]
H A Des3fTextureFilteringTests.cpp263 const glw::Functions& gl = m_renderCtx.getFunctions(); local
287 gl.bindTexture (GL_TEXTURE_2D, curCase.texture->getGLTexture());
288 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, m_minFilter);
289 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, m_magFilter);
290 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, m_wrapS);
291 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, m_wrapT);
293 gl.viewport(viewport.x, viewport.y, viewport.width, viewport.height);
560 const glw::Functions& gl = m_renderCtx.getFunctions(); local
573 gl.bindTexture (GL_TEXTURE_CUBE_MAP, curCase.texture->getGLTexture());
574 gl
827 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
1067 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]
H A Des3fTextureShadowTests.cpp325 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
349 gl.bindTexture (GL_TEXTURE_2D, curCase.texture->getGLTexture());
350 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, m_minFilter);
351 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, m_magFilter);
352 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, m_wrapS);
353 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, m_wrapT);
354 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_MODE, GL_COMPARE_REF_TO_TEXTURE);
355 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_FUNC, m_compareFunc);
357 gl.viewport(viewport.x, viewport.y, viewport.width, viewport.height);
597 const glw::Functions& gl local
884 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]
H A Des3fTransformFeedbackTests.cpp236 static bool isProgramSupported (const glw::Functions& gl, const ProgramSpec& spec, deUint32 tfMode) argument
243 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
244 gl.getIntegerv(GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS, &maxTfInterleavedComponents);
245 gl.getIntegerv(GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS, &maxTfSeparateAttribs);
246 gl.getIntegerv(GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS, &maxTfSeparateComponents);
785 static void writeBufferGuard (const glw::Functions& gl, deUint32 target, int bufferSize, int guardSize)
787 deUint8* ptr = (deUint8*)gl.mapBufferRange(target, bufferSize, guardSize, GL_MAP_WRITE_BIT);
790 gl.unmapBuffer(target);
791 GLU_EXPECT_NO_ERROR(gl.getError(), "guardband write");
804 static void logTransformFeedbackVaryings (TestLog& log, const glw::Functions& gl, deUint3
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pShaderControlStatementTests.cpp111 const glw::Functions& gl = m_renderCtx.getFunctions(); local
113 gl.enable(GL_BLEND);
114 gl.blendEquation(GL_FUNC_ADD);
115 gl.blendFunc(GL_ONE, GL_ONE);
352 const glw::Functions& gl = m_renderCtx.getFunctions(); local
356 int location = gl.getUniformLocation(program, "u_compareValue");
357 gl.uniform1f(location, m_branchType == BRANCH_TRUE ? +1.0f : -1.0f);
364 int compareAttribLocation = gl.getAttribLocation(program, "a_compareValue");
368 gl.genBuffers(1, &m_arrayBuffer);
369 gl
380 const glw::Functions& gl = m_renderCtx.getFunctions(); local
391 const glw::Functions& gl = m_renderCtx.getFunctions(); local
627 const glw::Functions& gl = m_renderCtx.getFunctions(); local
657 const glw::Functions& gl = m_renderCtx.getFunctions(); local
668 const glw::Functions& gl = m_renderCtx.getFunctions(); local
[all...]
H A Des3pShaderOperatorTests.cpp97 static void uniformNfv (const glw::Functions& gl, int n, int location, int count, const float* data) argument
101 case 1: gl.uniform1fv(location, count, data); break;
102 case 2: gl.uniform2fv(location, count, data); break;
103 case 3: gl.uniform3fv(location, count, data); break;
104 case 4: gl.uniform4fv(location, count, data); break;
109 static void uniformNiv (const glw::Functions& gl, int n, int location, int count, const int* data) argument
113 case 1: gl.uniform1iv(location, count, data); break;
114 case 2: gl.uniform2iv(location, count, data); break;
115 case 3: gl.uniform3iv(location, count, data); break;
116 case 4: gl
121 uniformMatrixNfv(const glw::Functions& gl, int n, int location, int count, const float* data) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fAtomicCounterTests.cpp917 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
950 gl.useProgram(program.getProgram());
951 GLU_EXPECT_NO_ERROR(gl.getError(), "glUseProgram()");
954 gl.bindBuffer(GL_SHADER_STORAGE_BUFFER, *outputBuffer);
955 gl.bufferData(GL_SHADER_STORAGE_BUFFER, ssoSize, NULL, GL_STATIC_DRAW);
956 GLU_EXPECT_NO_ERROR(gl.getError(), "Failed to create output buffer");
961 gl.bindBuffer(GL_SHADER_STORAGE_BUFFER, *counterBuffer);
962 gl.bufferData(GL_SHADER_STORAGE_BUFFER, counterBufferSize, &(data[0]), GL_STATIC_DRAW);
963 GLU_EXPECT_NO_ERROR(gl.getError(), "Failed to create buffer for atomic counters");
967 gl
[all...]
H A Des31fMultisampleTests.cpp130 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog());
133 gl.enableLogging(true);
139 gl.glGetMultisamplefv(GL_SAMPLE_POSITION, ndx, samplePos.getPtr());
140 GLU_EXPECT_NO_ERROR(gl.glGetError(), "getMultisamplefv");
246 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
255 gl.getIntegerv(GL_SAMPLES, &m_numSamples);
256 GLU_EXPECT_NO_ERROR(gl.getError(), "getIntegerv(GL_SAMPLES)");
267 m_attrPositionLoc = gl.getAttribLocation(m_program->getProgram(), "a_position");
268 m_attrColorLoc = gl.getAttribLocation(m_program->getProgram(), "a_color");
269 GLU_EXPECT_NO_ERROR(gl
308 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
368 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
413 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
428 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
488 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
557 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
580 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
721 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
738 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
886 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
900 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]
H A Des31fShaderHelperInvocationTests.cpp117 static int getInteger (const glw::Functions& gl, deUint32 pname) argument
120 gl.getIntegerv(pname, &v);
121 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetIntegerv()");
125 static Vec2 getRange (const glw::Functions& gl, deUint32 pname) argument
128 gl.getFloatv(pname, v.getPtr());
129 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetFloatv()");
135 const glw::Functions& gl = renderCtx.getFunctions(); local
147 gl.useProgram(program);
152 const Vec2 range = getRange(gl, GL_ALIASED_POINT_SIZE_RANGE);
155 const int pointSizeLoc = gl
198 const glw::Functions& gl = m_renderCtx.getFunctions(); local
229 const glw::Functions& gl = m_renderCtx.getFunctions(); local
236 const glw::Functions& gl = m_renderCtx.getFunctions(); local
299 const glw::Functions& gl = renderCtx.getFunctions(); local
381 const glw::Functions& gl = renderCtx.getFunctions(); local
443 const glw::Functions& gl = renderCtx.getFunctions(); local
573 const glw::Functions& gl = renderCtx.getFunctions(); local
[all...]
H A Des31fTextureLevelStateQueryTests.cpp102 static bool verifyTextureLevelParameterEqualWithPrinter (glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLenum pname, int refValue, VerifierType type) argument
104 gl.getLog() << tcu::TestLog::Message << "Verifying " << glu::getTextureLevelParameterStr(pname) << ", expecting " << Printer::getIntegerName(refValue) << tcu::TestLog::EndMessage;
110 gl.glGetTexLevelParameteriv(target, level, pname, &result);
111 GLU_EXPECT_NO_ERROR(gl.glGetError(), "glGetTexLevelParameteriv");
115 gl.getLog() << tcu::TestLog::Message << "Error: Get* did not write a value." << tcu::TestLog::EndMessage;
120 gl.getLog() << tcu::TestLog::Message << "Error: detected illegal memory write." << tcu::TestLog::EndMessage;
127 gl.getLog() << tcu::TestLog::Message << "Error: Expected " << Printer::getIntegerName(refValue) << ", got " << Printer::getIntegerName(result) << tcu::TestLog::EndMessage;
134 gl.glGetTexLevelParameterfv(target, level, pname, &result);
135 GLU_EXPECT_NO_ERROR(gl.glGetError(), "glGetTexLevelParameterfv");
139 gl
159 verifyTextureLevelParameterEqual(glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLenum pname, int refValue, VerifierType type) argument
164 verifyTextureLevelParameterInternalFormatEqual(glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLenum pname, int refValue, VerifierType type) argument
169 verifyTextureLevelParameterGreaterOrEqual(glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLenum pname, int refValue, VerifierType type) argument
226 verifyTextureLevelParameterInternalFormatAnyOf(glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLenum pname, const int* refValues, int numRefValues, VerifierType type) argument
637 applyTextureGenergationSpec(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
739 const glw::Functions gl = m_context.getRenderContext().getFunctions(); local
906 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
924 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
942 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
978 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
1026 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
1067 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
1117 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
1239 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
1370 checkTextureState(glu::CallLogWrapper& gl, const TextureGenerationSpec& spec) argument
[all...]
H A Des31fTextureMultisampleTests.cpp191 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
199 gl.getIntegerv(GL_MAX_COLOR_TEXTURE_SAMPLES, &maxSamples);
205 gl.getIntegerv(GL_SUBPIXEL_BITS, &m_subpixelBits);
208 // generate textures & other gl stuff
212 gl.genTextures (1, &m_texID);
213 gl.bindTexture (GL_TEXTURE_2D_MULTISAMPLE, m_texID);
214 gl.texStorage2DMultisample (GL_TEXTURE_2D_MULTISAMPLE, m_samples, GL_RGBA8, m_canvasSize, m_canvasSize, GL_TRUE);
215 GLU_EXPECT_NO_ERROR (gl.getError(), "texStorage2DMultisample");
217 gl.genVertexArrays (1, &m_vaoID);
218 gl
342 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
426 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
475 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
608 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
783 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
816 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
831 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
995 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]
H A Des31fVertexAttributeBindingTests.cpp322 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog());
323 const int positionLoc = gl.glGetAttribLocation(m_program->getProgram(), "a_position");
324 const int colorLoc = gl.glGetAttribLocation(m_program->getProgram(), "a_color");
325 const int colorUniformLoc = gl.glGetUniformLocation(m_program->getProgram(), "u_color");
327 gl.enableLogging(true);
329 gl.glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
330 gl.glClear(GL_COLOR_BUFFER_BIT);
331 gl.glViewport(0, 0, dst.getWidth(), dst.getHeight());
332 gl.glBindVertexArray(m_vao);
333 GLU_EXPECT_NO_ERROR(gl
448 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
712 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
999 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
1243 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]

Completed in 2961 milliseconds

<<1112131415