Searched refs:GLubyte (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/native/opengl/libs/
H A Degl_impl.h32 EGLAPI const GLubyte * egl_get_string_for_current_context(GLenum name);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetStringi.cpp1 /* const GLubyte * glGetStringi ( GLenum name, GLuint index ) */
5 const GLubyte* _chars = glGetStringi((GLenum)name, (GLuint)index);
/frameworks/native/services/surfaceflinger/
H A DGLExtensions.h75 GLubyte const* vendor,
76 GLubyte const* renderer,
77 GLubyte const* version,
78 GLubyte const* extensions,
H A DGLExtensions.cpp37 GLubyte const* vendor,
38 GLubyte const* renderer,
39 GLubyte const* version,
40 GLubyte const* extensions,
/frameworks/native/opengl/libs/GLES2/
H A Dgl2.cpp136 extern "C" const GLubyte * __glGetString(GLenum name);
138 const GLubyte * glGetString(GLenum name)
140 const GLubyte * ret = egl_get_string_for_current_context(name);
/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DGLCHeader.cpp205 extensionEqual(const GLubyte* pExtensions, const GLubyte* pExtension) {
220 static const GLubyte*
221 nextExtension(const GLubyte* pExtensions) {
233 checkForExtension(const GLubyte* pExtensions, const GLubyte* pExtension) {
246 const GLubyte* sExtensions = glGetString(GL_EXTENSIONS);
248 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_equation_separate"));
250 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_subtract"));
252 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_framebuffer_objec
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES11.spec6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
H A DGLES10.spec45 const GLubyte * glGetString ( GLenum name )
H A DGLES20.spec73 const GLubyte * glGetString ( GLenum name )
H A DGLES30.spec67 const GLubyte * glGetStringi ( GLenum name, GLuint index )
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp203 extern "C" const GLubyte * __glGetString(GLenum name);
205 const GLubyte * glGetString(GLenum name)
207 const GLubyte * ret = egl_get_string_for_current_context(name);
/frameworks/native/opengl/libs/EGL/
H A Degl.cpp279 const GLubyte * egl_get_string_for_current_context(GLenum name) {
294 return (const GLubyte *)c->gl_extensions.string();
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c82 GLubyte *colorArray;
127 result->colorArray = (GLubyte *)malloc(vertices * 4 * sizeof(GLubyte));
304 result->colorArray[i] = (GLubyte)color[0];
305 result->colorArray[i + 1] = (GLubyte)color[1];
306 result->colorArray[i + 2] = (GLubyte)color[2];
367 GLubyte color;
369 color = (GLubyte)((randomUInt() & 0x5f) + 81); // 101 1111
/frameworks/native/opengl/libagl/
H A Dstate.cpp343 const GLubyte* glGetString(GLenum string)
346 case GL_VENDOR: return (const GLubyte*)gVendorString;
347 case GL_RENDERER: return (const GLubyte*)gRendererString;
348 case GL_VERSION: return (const GLubyte*)gVersionString;
349 case GL_EXTENSIONS: return (const GLubyte*)gExtensionsString;
H A Darray.cpp206 static void fetchExpand4ub(ogles_context_t*, GLfixed* v, const GLubyte* p) {
224 static void fetchExpand3ub(ogles_context_t*, GLfixed* v, const GLubyte* p) {
749 r = *(const GLubyte*)p;
750 p = (const GLubyte*)p + 1;
953 const GLubyte* vp = c->arrays.vertex.element(first);
964 const GLubyte* vp = c->arrays.vertex.element(
H A Dcontext.h191 inline const GLubyte* element(GLint i) const {
192 return (const GLubyte*)physical_pointer + i * stride;
H A Dtexture.cpp1212 userSurface.data = (GLubyte*)pixels;
1295 userSurface.data = (GLubyte*)pixels;
1533 userSurface.data = (GLubyte*)pixels;
/frameworks/native/opengl/include/GLES/
H A Dgl.h26 typedef khronos_uint8_t GLubyte; typedef
646 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
683 GL_API const GLubyte * GL_APIENTRY glGetString (GLenum name);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h95 const GLubyte* GLTrace_glGetString(GLenum name);
226 const GLubyte* GLTrace_glGetStringi(GLenum name, GLuint index);
431 void GLTrace_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
H A Dgltrace_fixup.cpp135 /* const GLubyte* GLTrace_glGetString(GLenum name) */
556 index = *((GLubyte*) indices + i);
675 index = *((GLubyte*) indices + i);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_GLImpl.cpp206 extensionEqual(const GLubyte* pExtensions, const GLubyte* pExtension) {
221 static const GLubyte*
222 nextExtension(const GLubyte* pExtensions) {
234 checkForExtension(const GLubyte* pExtensions, const GLubyte* pExtension) {
247 const GLubyte* sExtensions = glGetString(GL_EXTENSIONS);
249 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_equation_separate"));
251 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_blend_subtract"));
253 checkForExtension(sExtensions, (const GLubyte*) "GL_OES_framebuffer_objec
[all...]
H A Dandroid_opengl_GLES11.cpp554 /* void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha ) */
559 (GLubyte)red,
560 (GLubyte)green,
561 (GLubyte)blue,
562 (GLubyte)alpha
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h30 typedef khronos_uint8_t GLubyte; typedef
544 GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h61 typedef unsigned char GLubyte; typedef
517 GLAPI const GLubyte * APIENTRY glGetString (GLenum name);
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h52 typedef khronos_uint8_t GLubyte; typedef
878 GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name);
1012 GL_APICALL const GLubyte* GL_APIENTRY glGetStringi (GLenum name, GLuint index);

Completed in 259 milliseconds

12