Home
last modified time | relevance | path

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

12

/external/mesa3d/src/mesa/main/
Dmacros.h47 #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)))
117 #define UINT_TO_UBYTE(i) ((GLubyte) ((i) >> 24))
147 UB = (GLubyte) 0; \
149 UB = (GLubyte) 255; \
152 UB = (GLubyte) __tmp.i; \
159 UB = (GLubyte) __tmp.i; \
[all …]
Dmtypes.h49 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 …]
Dget.h68 extern const GLubyte * GLAPIENTRY
71 extern const GLubyte * GLAPIENTRY
Dimports.h73 #define ADD_POINTERS(A, B) ( (GLubyte *) (A) + (uintptr_t) (B) )
496 return *((const GLubyte *) &ui); in _mesa_little_endian()
/external/qemu/distrib/sdl-1.2.15/test/
Dtestdyngl.c61 void(APIENTRY*glColor4ub)(GLubyte,GLubyte,GLubyte,GLubyte);
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
DIndexDataManager.cpp50 const GLubyte *in = static_cast<const GLubyte*>(input); in convertIndices()
86 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); in computeRange()
109 case GL_UNSIGNED_BYTE: alignedOffset = (offset % sizeof(GLubyte) == 0); break; in prepareIndexData()
120 indices = static_cast<const GLubyte*>(buffer->data()) + offset; in prepareIndexData()
202 case GL_UNSIGNED_BYTE: return sizeof(GLubyte); in typeSize()
/external/qemu/distrib/sdl-1.2.15/include/
DSDL_opengl.h3355 GLAPI void APIENTRY glSecondaryColor3ub (GLubyte, GLubyte, GLubyte);
3356 GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *);
3401 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue);
3402 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v);
3550 GLAPI void APIENTRY glVertexAttrib4Nub (GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
3551 GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint, const GLubyte *);
3562 GLAPI void APIENTRY glVertexAttrib4ubv (GLuint, const GLubyte *);
3644 …id (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w…
3645 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v);
3656 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v);
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_glfuncs.h12 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))
122 SDL_PROC_UNUSED(void,glGetPolygonStipple,(GLubyte *mask))
123 SDL_PROC(const GLubyte *,glGetString,(GLenum name))
145 SDL_PROC_UNUSED(void,glIndexub,(GLubyte c))
146 SDL_PROC_UNUSED(void,glIndexubv,(const GLubyte *c))
208 SDL_PROC_UNUSED(void,glPolygonStipple,(const GLubyte *mask))
/external/skia/src/gpu/unix/
DSkNativeGLContext_unix.cpp171 reinterpret_cast<const GLubyte*>("GLX_ARB_create_context") in createGLContext()
172 , reinterpret_cast<const GLubyte*>(glxExts))) in createGLContext()
DGrGLCreateNativeInterface_unix.cpp18 glXGetProcAddress(reinterpret_cast<const GLubyte*>("gl" #F));
20 glXGetProcAddress(reinterpret_cast<const GLubyte*>("gl" #F #S));
/external/webkit/Source/WebCore/platform/graphics/gtk/
DGraphicsContext3DInternal.h26 typedef unsigned char GLubyte; typedef
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
DBuffer.h49 GLubyte *mContents;
DBuffer.cpp47 mContents = new GLubyte[size]; in bufferData()
DlibGLESv2.cpp3202 const GLubyte* __stdcall glGetString(GLenum name) in glGetString()
3213 return (GLubyte*)"TransGaming Inc."; in glGetString()
3215 return (GLubyte*)"ANGLE"; in glGetString()
3217 return (GLubyte*)"OpenGL ES 2.0 (git-devel "__DATE__ " " __TIME__")"; in glGetString()
3219 return (GLubyte*)"OpenGL ES GLSL ES 1.00 (git-devel "__DATE__ " " __TIME__")"; in glGetString()
3221 return (GLubyte*)((context != NULL) ? context->getExtensionString() : ""); in glGetString()
3223 return error(GL_INVALID_ENUM, (GLubyte*)NULL); in glGetString()
3228 return error(GL_OUT_OF_MEMORY, (GLubyte*)NULL); in glGetString()
DContext.h104 case GL_UNSIGNED_BYTE: return mSize * sizeof(GLubyte); in typeSize()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGLUtils.cpp321 GLubyte pixels[4 *3] = { in createSampleColorTexture()
341 GLubyte pixels[4 *3] = { in createSampleTexture()
361 GLubyte* pixels = 0; in createTileGLTexture()
364 pixels = new GLubyte[length]; in createTileGLTexture()
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
DSDL_x11gl_c.h38 void * (*glXGetProcAddress)(const GLubyte *procName);
DSDL_x11gl.c524 (void *(*)(const GLubyte *)) GL_LoadFunction(handle, "glXGetProcAddressARB"); in X11_GL_LoadLibrary()
572 return this->gl_data->glXGetProcAddress((const GLubyte *)proc); in X11_GL_GetProcAddress()
/external/mesa3d/include/GLES2/
Dgl2.h30 typedef khronos_uint8_t GLubyte; typedef
545 GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name);
/external/webkit/Source/ThirdParty/ANGLE/include/GLES2/
Dgl2.h30 typedef khronos_uint8_t GLubyte; typedef
545 GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name);
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
DSDL_wingl.c181 const GLubyte *(WINAPI *glGetStringFunc)(GLenum); in WIN_GL_SetupWindow()
/external/quake/quake/src/QW/client/
Dgl_vidlinux.c534 GLubyte table[256][4]; in VID_Init8bitPalette()
Dgl_vidlinux_svga.c572 GLubyte table[256][4]; in VID_Init8bitPalette()
Dgl_vidlinuxglx.c565 GLubyte table[256][4]; in VID_Init8bitPalette()
/external/quake/quake/src/WinQuake/
Dgl_vidlinux.cpp540 GLubyte table[256][4]; in VID_Init8bitPalette()

12