/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
D | GLCHeader.cpp | 151 extensionEqual(const GLubyte* pExtensions, const GLubyte* pExtension) { 166 static const GLubyte* 167 nextExtension(const GLubyte* pExtensions) { 179 checkForExtension(const GLubyte* pExtensions, const GLubyte* pExtension) { 192 const GLubyte* sExtensions = glGetString(GL_EXTENSIONS); 194 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_equation_separate")); 196 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_subtract")); 198 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_framebuffer_object")); 200 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_texture_cube_map"));
|
D | glGetString.java-impl | 1 // C function const GLubyte * glGetString ( GLenum name )
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_legacy_PerfMeasurement.cpp | 43 extensionEqual(const GLubyte* pExtensions, const GLubyte* pExtension) { in extensionEqual() 58 static const GLubyte* 59 nextExtension(const GLubyte* pExtensions) { in nextExtension() 71 checkForExtension(const GLubyte* pExtensions, const GLubyte* pExtension) { in checkForExtension() 218 const GLubyte* extensions = glGetString(GL_EXTENSIONS); in isMeasurementSupported() 220 reinterpret_cast<const GLubyte*>("GL_EXT_disjoint_timer_query")); in isMeasurementSupported()
|
D | com_google_android_gles_jni_GLImpl.cpp | 152 extensionEqual(const GLubyte* pExtensions, const GLubyte* pExtension) { in extensionEqual() 167 static const GLubyte* 168 nextExtension(const GLubyte* pExtensions) { in nextExtension() 180 checkForExtension(const GLubyte* pExtensions, const GLubyte* pExtension) { in checkForExtension() 193 const GLubyte* sExtensions = glGetString(GL_EXTENSIONS); in supportsExtension() 195 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_equation_separate")); in supportsExtension() 197 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_subtract")); in supportsExtension() 199 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_framebuffer_object")); in supportsExtension() 201 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_texture_cube_map")); in supportsExtension() 4543 (GLubyte)red, in android_glColor4ub__BBBB() [all …]
|
/frameworks/native/libs/renderengine/gl/ |
D | GLExtensions.h | 45 void initWithGLStrings(GLubyte const* vendor, GLubyte const* renderer, GLubyte const* version, 46 GLubyte const* extensions);
|
D | GLExtensions.cpp | 57 void GLExtensions::initWithGLStrings(GLubyte const* vendor, GLubyte const* renderer, in initWithGLStrings() 58 GLubyte const* version, GLubyte const* extensions) { in initWithGLStrings()
|
/frameworks/native/opengl/libs/ |
D | egl_impl.h | 32 EGLAPI const GLubyte * egl_get_string_for_current_context(GLenum name); 33 EGLAPI const GLubyte * egl_get_string_for_current_context(GLenum name, GLuint index);
|
D | platform_entries.in | 81 GL_ENTRY(const GLubyte*, glGetString, GLenum) 82 GL_ENTRY(const GLubyte*, glGetStringi, GLenum, GLuint)
|
D | entries_gles1.in | 35 GL_ENTRY(void, glColor4ub, GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) 145 GL_ENTRY(const GLubyte *, glGetString, GLenum name)
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES11.spec | 6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
|
D | GLES10.spec | 45 const GLubyte * glGetString ( GLenum name )
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2.cpp | 295 const GLubyte * __glGetString(GLenum name); 296 const GLubyte * __glGetStringi(GLenum name, GLuint index); 303 const GLubyte * glGetString(GLenum name) { in glGetString() 308 const GLubyte * glGetStringi(GLenum name, GLuint index) { in glGetStringi()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl.cpp | 113 const GLubyte * egl_get_string_for_current_context(GLenum name) { in egl_get_string_for_current_context() 128 return (const GLubyte *)c->gl_extensions.c_str(); in egl_get_string_for_current_context() 131 const GLubyte * egl_get_string_for_current_context(GLenum name, GLuint index) { in egl_get_string_for_current_context() 151 return (const GLubyte *)c->tokenized_gl_extensions[index].c_str(); in egl_get_string_for_current_context()
|
/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
D | glspec-1.1 | 6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
|
/frameworks/native/opengl/tests/angeles/ |
D | demo.c | 82 GLubyte *colorArray; 127 result->colorArray = (GLubyte *)malloc(vertices * 4 * sizeof(GLubyte)); in newGLObject() 304 result->colorArray[i] = (GLubyte)color[0]; in createSuperShape() 305 result->colorArray[i + 1] = (GLubyte)color[1]; in createSuperShape() 306 result->colorArray[i + 2] = (GLubyte)color[2]; in createSuperShape() 367 GLubyte color; in createGroundPlane() 369 color = (GLubyte)((randomUInt() & 0x5f) + 81); // 101 1111 in createGroundPlane()
|
/frameworks/native/opengl/libs/GLES_CM/ |
D | gl.cpp | 347 extern "C" const GLubyte * __glGetString(GLenum name); 349 const GLubyte * glGetString(GLenum name) { in glGetString() 350 const GLubyte * ret = egl_get_string_for_current_context(name); in glGetString()
|
D | gl_api.in | 154 void API_ENTRY(glColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) { 265 const GLubyte * API_ENTRY(__glGetString)(GLenum name) {
|
/frameworks/base/libs/hwui/debug/ |
D | NullGlesDriver.cpp | 166 const GLubyte* NullGlesDriver::glGetString_(GLenum name) { in glGetString_() 167 return (GLubyte*)getString(name); in glGetString_()
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
D | glGetStringi.cpp | 5 const GLubyte* _chars = glGetStringi((GLenum)name, (GLuint)index); in android_glGetStringi__II()
|
/frameworks/native/opengl/libagl/ |
D | state.cpp | 343 const GLubyte* glGetString(GLenum string) in glGetString() 346 case GL_VENDOR: return (const GLubyte*)gVendorString; in glGetString() 347 case GL_RENDERER: return (const GLubyte*)gRendererString; in glGetString() 348 case GL_VERSION: return (const GLubyte*)gVersionString; in glGetString() 349 case GL_EXTENSIONS: return (const GLubyte*)gExtensionsString; in glGetString()
|
D | array.cpp | 203 static void fetchExpand4ub(ogles_context_t*, GLfixed* v, const GLubyte* p) { in fetchExpand4ub() 221 static void fetchExpand3ub(ogles_context_t*, GLfixed* v, const GLubyte* p) { in fetchExpand3ub() 751 r = *(const GLubyte*)p; in read_index() 752 p = (const GLubyte*)p + 1; in read_index() 955 const GLubyte* vp = c->arrays.vertex.element(first); in compileElement__generic() 966 const GLubyte* vp = c->arrays.vertex.element( in compileElements__generic()
|
D | context.h | 196 inline const GLubyte* element(GLint i) const { in element() 197 return (const GLubyte*)physical_pointer + i * stride; in element()
|
/frameworks/native/opengl/include/GLES/ |
D | gl.h | 67 typedef khronos_uint8_t GLubyte; typedef 456 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 493 GL_API const GLubyte *GL_APIENTRY glGetString (GLenum name);
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
D | gl.h | 61 typedef unsigned char GLubyte; typedef 517 GLAPI const GLubyte * APIENTRY glGetString (GLenum name);
|
/frameworks/native/libs/gui/tests/ |
D | GLTest.cpp | 179 GLubyte pixel[4]; in checkPixel()
|