/hardware/google/gfxstream/host/tests/ |
D | GLSnapshotMultisampling_unittest.cpp | 26 GLboolean invert; member 40 expected.invert)); in stateCheck() 43 gl->glSampleCoverage(GetParam().value, GetParam().invert); in stateChange()
|
/hardware/google/gfxstream/include/OpenGLESDispatch/ |
D | gles_common_functions.h | 68 X(void, glSampleCoverage, (GLclampf value, GLboolean invert), (value, invert)) \
|
D | gles1_only_functions.h | 103 X(void, glSampleCoveragex, (GLclampx value, GLboolean invert), (value, invert)) \
|
D | gles12tr_internal.h | 251 X(void, glSampleCoverage, (GLclampf value, GLboolean invert), (value, invert)) \ 252 X(void, glSampleCoveragex, (GLclampx value, GLboolean invert), (value, invert)) \ 253 X(void, glSampleCoveragexOES, (GLclampx value, GLboolean invert), (value, invert)) \
|
D | gles_common_for_gles1_static_translator_namespaced_header.h | 68 GL_APICALL void GL_APIENTRY glSampleCoverage(GLclampf value, GLboolean invert);
|
D | gles_common_for_gles2_static_translator_namespaced_header.h | 68 GL_APICALL void GL_APIENTRY glSampleCoverage(GLclampf value, GLboolean invert);
|
D | gles1_only_static_translator_namespaced_header.h | 103 GL_APICALL void GL_APIENTRY glSampleCoveragex(GLclampx value, GLboolean invert);
|
/hardware/google/gfxstream/host/gl/OpenGLESDispatch/ |
D | gles_common_dispatch_logging_wrappers.impl | 289 void glSampleCoverage_dispatchLoggingWrapper(GLclampf value, GLboolean invert) { 290 DISPATCH_DEBUG_LOG("glSampleCoverage(value:%f, invert:%d)", value, invert); 291 GLDispatch::glSampleCoverage_underlying(value, invert);
|
D | gles1_only_dispatch_logging_wrappers.impl | 479 void glSampleCoveragex_dispatchLoggingWrapper(GLclampx value, GLboolean invert) { 480 DISPATCH_DEBUG_LOG("glSampleCoveragex(value:%d, invert:%d)", value, invert); 481 GLDispatch::glSampleCoveragex_underlying(value, invert);
|
D | gles_common_for_gles1.entries | 67 void glSampleCoverage( GLclampf value, GLboolean invert );
|
D | gles_common_for_gles2.entries | 67 void glSampleCoverage( GLclampf value, GLboolean invert );
|
D | gles_common.entries | 66 void glSampleCoverage( GLclampf value, GLboolean invert );
|
D | gles12tr_internal.entries | 249 void glSampleCoverage( GLclampf value, GLboolean invert); 250 void glSampleCoveragex( GLclampx value, GLboolean invert); 251 void glSampleCoveragexOES( GLclampx value, GLboolean invert);
|
D | gles1_only.entries | 101 void glSampleCoveragex(GLclampx value, GLboolean invert);
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | generator.py | 835 invert = '~' in strVal 839 strVal = "~" if invert else "" 845 invert = '~' in strVal 853 strVal = "~" if invert else ""
|
/hardware/google/gfxstream/guest/GLESv1_enc/ |
D | gl_entry.cpp | 129 void glSampleCoverage(GLclampf value, GLboolean invert); 130 void glSampleCoveragex(GLclampx value, GLboolean invert); 217 void glSampleCoveragexOES(GLclampx value, GLboolean invert); 1039 void glSampleCoverage(GLclampf value, GLboolean invert) in glSampleCoverage() argument 1042 ctx->glSampleCoverage(ctx, value, invert); in glSampleCoverage() 1045 void glSampleCoveragex(GLclampx value, GLboolean invert) in glSampleCoveragex() argument 1048 ctx->glSampleCoveragex(ctx, value, invert); in glSampleCoveragex() 1567 void glSampleCoveragexOES(GLclampx value, GLboolean invert) in glSampleCoveragexOES() argument 1570 ctx->glSampleCoveragexOES(ctx, value, invert); in glSampleCoveragexOES()
|
/hardware/google/gfxstream/guest/mesa/include/GLES/ |
D | gl.h | 507 GL_API void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); 508 GL_API void GL_APIENTRY glSampleCoveragex (GLclampx value, GLboolean invert);
|
/hardware/google/gfxstream/common/opengl/include/GLES/ |
D | gl.h | 717 GL_API void GL_APIENTRY glSampleCoverage (GLclampf value, GLboolean invert); 718 GL_API void GL_APIENTRY glSampleCoveragex (GLclampx value, GLboolean invert);
|
/hardware/google/gfxstream/include/GLES/ |
D | gl.h | 717 GL_API void GL_APIENTRY glSampleCoverage (GLclampf value, GLboolean invert); 718 GL_API void GL_APIENTRY glSampleCoveragex (GLclampx value, GLboolean invert);
|
D | glext.h | 595 GL_API void GL_APIENTRY glSampleCoveragexOES (GLclampx value, GLboolean invert); 635 typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEXOESPROC) (GLclampx value, GLboolean invert);
|
/hardware/google/gfxstream/codegen/gles1/ |
D | gles1.in | 122 GL_ENTRY(void, glSampleCoverage, GLclampf value, GLboolean invert) 123 GL_ENTRY(void, glSampleCoveragex, GLclampx value, GLboolean invert) 217 GL_ENTRY(void, glSampleCoveragexOES, GLclampx value, GLboolean invert)
|
/hardware/google/gfxstream/common/detector/ |
D | GlesFuncs.h | 84 X(void, glSampleCoverage, (GLclampf value, GLboolean invert), (value, invert)) \ 196 X(void, glSampleCoveragex, (GLclampx value, GLboolean invert), (value, invert)) \
|
/hardware/google/gfxstream/host/gl/glestranslator/GLES_CM/ |
D | GLEScmImp.cpp | 1831 GL_API void GL_APIENTRY glSampleCoverage( GLclampf value, GLboolean invert) { in glSampleCoverage() argument 1834 ctx->setSampleCoverage(value, invert); in glSampleCoverage() 1835 ctx->dispatcher().glSampleCoverage(value,invert); in glSampleCoverage() 1838 GL_API void GL_APIENTRY glSampleCoveragex( GLclampx value, GLboolean invert) { in glSampleCoveragex() argument 1841 ctx->setSampleCoverage(X2F(value), invert); in glSampleCoveragex() 1842 ctx->dispatcher().glSampleCoverage(X2F(value),invert); in glSampleCoveragex()
|
/hardware/google/gfxstream/guest/mesa/include/GLES2/ |
D | gl2.h | 459 typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); 602 GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert);
|
/hardware/google/gfxstream/include/GLES2/ |
D | gl2.h | 478 typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); 621 GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert);
|