HomeSort by relevance Sort by last modified time
    Searched refs:GLubyte (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /frameworks/native/opengl/libs/
egl_impl.h 32 EGLAPI const GLubyte * egl_get_string_for_current_context(GLenum name);
  /frameworks/native/services/surfaceflinger/
GLExtensions.h 75 GLubyte const* vendor,
76 GLubyte const* renderer,
77 GLubyte const* version,
78 GLubyte const* extensions,
GLExtensions.cpp 36 GLubyte const* vendor,
37 GLubyte const* renderer,
38 GLubyte const* version,
39 GLubyte const* extensions,
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.h 26 typedef unsigned char GLubyte;
  /frameworks/native/opengl/libs/GLES2/
gl2.cpp 117 extern "C" const GLubyte * __glGetString(GLenum name);
119 const GLubyte * glGetString(GLenum name)
121 const GLubyte * ret = egl_get_string_for_current_context(name);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Buffer.h 49 GLubyte *mContents;
Buffer.cpp 47 mContents = new GLubyte[size];
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
gl_base_types.h 38 typedef khronos_uint8_t GLubyte;
  /external/mesa3d/src/mesa/main/
macros.h 42 /** Convert GLubyte in [0,255] to GLfloat in [0.0,1.0] */
46 /** Convert GLfloat in [0.0,1.0] to GLubyte in [0,255] */
47 #define FLOAT_TO_UBYTE(X) ((GLubyte) (GLint) ((X) * 255.0F))
113 #define BYTE_TO_UBYTE(b) ((GLubyte) ((b) < 0 ? 0 : (GLubyte) (b)))
114 #define SHORT_TO_UBYTE(s) ((GLubyte) ((s) < 0 ? 0 : (GLubyte) ((s) >> 7)))
115 #define USHORT_TO_UBYTE(s) ((GLubyte) ((s) >> 8))
116 #define INT_TO_UBYTE(i) ((GLubyte) ((i) < 0 ? 0 : (GLubyte) ((i) >> 23))
    [all...]
get.h 68 extern const GLubyte * GLAPIENTRY
71 extern const GLubyte * GLAPIENTRY
mtypes.h 49 typedef GLubyte GLchan;
72 typedef GLubyte GLstencil;
533 GLubyte *TableUB; /**< Color table, ubyte values */
534 GLubyte RedSize;
535 GLubyte GreenSize;
536 GLubyte BlueSize;
537 GLubyte AlphaSize;
538 GLubyte LuminanceSize;
539 GLubyte IntensitySize;
703 GLubyte ColorMask[MAX_DRAW_BUFFERS][4];/**< Each flag is 0xff or 0x0 *
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
GLCHeader.cpp 206 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_object"))
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES11.spec 6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
  /sdk/emulator/opengl/system/GLESv1/
gl.cpp 114 const GLubyte *my_glGetString (void *self, GLenum name)
117 return (const GLubyte*)s_egl->getGLString(name);
  /sdk/emulator/opengl/system/GLESv2/
gl2.cpp 111 const GLubyte *my_glGetString (void *self, GLenum name)
114 return (const GLubyte*)s_egl->getGLString(name);
  /frameworks/native/opengl/libs/GLES_CM/
gl.cpp 172 extern "C" const GLubyte * __glGetString(GLenum name);
174 const GLubyte * glGetString(GLenum name)
176 const GLubyte * ret = egl_get_string_for_current_context(name);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.cpp 50 const GLubyte *in = static_cast<const GLubyte*>(input);
86 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex);
109 case GL_UNSIGNED_BYTE: alignedOffset = (offset % sizeof(GLubyte) == 0); break;
120 indices = static_cast<const GLubyte*>(buffer->data()) + offset;
202 case GL_UNSIGNED_BYTE: return sizeof(GLubyte);
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl_c.h 38 void * (*glXGetProcAddress)(const GLubyte *procName);
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 51 void (GLAPIENTRY *glColor4ub) (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
52 void (GLAPIENTRY *glColor4ubv) ( const GLubyte *v );
90 const GLubyte * (GLAPIENTRY *glGetString) (GLenum name);
  /external/skia/src/gpu/unix/
SkNativeGLContext_unix.cpp 171 reinterpret_cast<const GLubyte*>("GLX_ARB_create_context")
172 , reinterpret_cast<const GLubyte*>(glxExts)))
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_opengl.h     [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_opengl.h     [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_opengl.h     [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_opengl.h     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_glfuncs.h 12 SDL_PROC_UNUSED(void,glBitmap,(GLsizei,GLsizei,GLfloat,GLfloat,GLfloat,GLfloat,const GLubyte*))
33 SDL_PROC_UNUSED(void,glColor3ub,(GLubyte,GLubyte,GLubyte))
34 SDL_PROC_UNUSED(void,glColor3ubv,(const GLubyte*))
49 SDL_PROC_UNUSED(void,glColor4ub,(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha))
50 SDL_PROC_UNUSED(void,glColor4ubv,(const GLubyte *v)
    [all...]

Completed in 574 milliseconds

1 2 3 4 5 6