Searched refs:GLbyte (Results 26 - 50 of 103) sorted by relevance

12345

/external/mesa3d/src/mesa/main/
H A Dapi_arrayelt.c179 VertexAttrib1NbvNV(GLuint index, const GLbyte *v)
185 VertexAttrib1bvNV(GLuint index, const GLbyte *v)
191 VertexAttrib2NbvNV(GLuint index, const GLbyte *v)
197 VertexAttrib2bvNV(GLuint index, const GLbyte *v)
203 VertexAttrib3NbvNV(GLuint index, const GLbyte *v)
211 VertexAttrib3bvNV(GLuint index, const GLbyte *v)
217 VertexAttrib4NbvNV(GLuint index, const GLbyte *v)
226 VertexAttrib4bvNV(GLuint index, const GLbyte *v)
684 VertexAttrib1NbvARB(GLuint index, const GLbyte *v)
690 VertexAttrib1bvARB(GLuint index, const GLbyte *
[all...]
H A Dformat_unpack.c1067 const GLbyte *s = (const GLbyte *) src;
1145 const GLbyte *s = (const GLbyte *) src;
1158 const GLbyte *s = ((const GLbyte *) src);
1174 dst[i][RCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (s[i] & 0xff) );
1175 dst[i][GCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (s[i] >> 8) );
1187 dst[i][RCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (s[i] >> 24) );
1188 dst[i][GCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (
[all...]
H A Dformat_pack.c1389 GLbyte du, dv;
1427 GLbyte *d = (GLbyte *) dst;
1440 GLbyte r = FLOAT_TO_BYTE(CLAMP(src[RCOMP], -1.0f, 1.0f));
1441 GLbyte g = FLOAT_TO_BYTE(CLAMP(src[GCOMP], -1.0f, 1.0f));
1454 GLbyte r = FLOAT_TO_BYTE(CLAMP(src[RCOMP], -1.0f, 1.0f));
1455 GLbyte g = FLOAT_TO_BYTE(CLAMP(src[GCOMP], -1.0f, 1.0f));
1456 GLbyte b = FLOAT_TO_BYTE(CLAMP(src[BCOMP], -1.0f, 1.0f));
1457 GLbyte a = 127;
1470 GLbyte
[all...]
H A Dapi_loopback.c93 loopback_Color3b_f( GLbyte red, GLbyte green, GLbyte blue )
144 loopback_Color3bv_f( const GLbyte *v )
193 loopback_Color4b_f( GLbyte red, GLbyte green, GLbyte blue,
194 GLbyte alpha )
253 loopback_Color4bv_f( const GLbyte *v )
366 loopback_Normal3b( GLbyte n
[all...]
H A Dmipmap.c212 const GLbyte(*rowA)[4] = (const GLbyte(*)[4]) srcRowA;
213 const GLbyte(*rowB)[4] = (const GLbyte(*)[4]) srcRowB;
214 GLbyte(*dst)[4] = (GLbyte(*)[4]) dstRow;
225 const GLbyte(*rowA)[3] = (const GLbyte(*)[3]) srcRowA;
226 const GLbyte(*rowB)[3] = (const GLbyte(*)[
[all...]
H A Dpack.c509 #define DST_TYPE GLbyte
895 #define DST_TYPE GLbyte
1488 GLbyte *dst = (GLbyte *) dstAddr;
1562 dst[i] = (GLbyte) rgba[i][RCOMP];
1567 dst[i] = (GLbyte) rgba[i][GCOMP];
1572 dst[i] = (GLbyte) rgba[i][BCOMP];
1577 dst[i] = (GLbyte) rgba[i][ACOMP];
1582 dst[i*2+0] = (GLbyte) rgba[i][RCOMP];
1583 dst[i*2+1] = (GLbyte) rgb
[all...]
H A Dpack.h86 GLuint n, GLenum dstFormat, GLbyte dest[],
H A Dtexstore.c2393 GLbyte *tempImage, *dst, *src;
2396 tempImage = (GLbyte *) malloc(srcWidth * srcHeight * srcDepth
2397 * components * sizeof(GLbyte));
2401 src = (GLbyte *) _mesa_image_address(dims, srcPacking, srcAddr,
2416 dst = (GLbyte *) dstSlices[0];
2467 GLbyte *dstRow = (GLbyte *) dstSlices[img];
2521 GLbyte *dstRow = (GLbyte *) dstSlices[img];
2523 GLbyte *ds
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_glfuncs.h23 SDL_PROC_UNUSED(void,glColor3b,(GLbyte,GLbyte,GLbyte))
24 SDL_PROC_UNUSED(void,glColor3bv,(const GLbyte*))
39 SDL_PROC_UNUSED(void,glColor4b,(GLbyte,GLbyte,GLbyte,GLbyte))
40 SDL_PROC_UNUSED(void,glColor4bv,(const GLbyte*))
184 SDL_PROC_UNUSED(void,glNormal3b,(GLbyte n
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dformat_unpack.c1067 const GLbyte *s = (const GLbyte *) src;
1145 const GLbyte *s = (const GLbyte *) src;
1158 const GLbyte *s = ((const GLbyte *) src);
1174 dst[i][RCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (s[i] & 0xff) );
1175 dst[i][GCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (s[i] >> 8) );
1187 dst[i][RCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (s[i] >> 24) );
1188 dst[i][GCOMP] = BYTE_TO_FLOAT_TEX( (GLbyte) (
[all...]
H A Dformat_pack.c1389 GLbyte du, dv;
1427 GLbyte *d = (GLbyte *) dst;
1440 GLbyte r = FLOAT_TO_BYTE(CLAMP(src[RCOMP], -1.0f, 1.0f));
1441 GLbyte g = FLOAT_TO_BYTE(CLAMP(src[GCOMP], -1.0f, 1.0f));
1454 GLbyte r = FLOAT_TO_BYTE(CLAMP(src[RCOMP], -1.0f, 1.0f));
1455 GLbyte g = FLOAT_TO_BYTE(CLAMP(src[GCOMP], -1.0f, 1.0f));
1456 GLbyte b = FLOAT_TO_BYTE(CLAMP(src[BCOMP], -1.0f, 1.0f));
1457 GLbyte a = 127;
1470 GLbyte
[all...]
H A Dapi_loopback.c93 loopback_Color3b_f( GLbyte red, GLbyte green, GLbyte blue )
144 loopback_Color3bv_f( const GLbyte *v )
193 loopback_Color4b_f( GLbyte red, GLbyte green, GLbyte blue,
194 GLbyte alpha )
253 loopback_Color4bv_f( const GLbyte *v )
366 loopback_Normal3b( GLbyte n
[all...]
H A Dmipmap.c219 const GLbyte(*rowA)[4] = (const GLbyte(*)[4]) srcRowA;
220 const GLbyte(*rowB)[4] = (const GLbyte(*)[4]) srcRowB;
221 GLbyte(*dst)[4] = (GLbyte(*)[4]) dstRow;
232 const GLbyte(*rowA)[3] = (const GLbyte(*)[3]) srcRowA;
233 const GLbyte(*rowB)[3] = (const GLbyte(*)[
[all...]
H A Dpack.c509 #define DST_TYPE GLbyte
895 #define DST_TYPE GLbyte
1488 GLbyte *dst = (GLbyte *) dstAddr;
1562 dst[i] = (GLbyte) rgba[i][RCOMP];
1567 dst[i] = (GLbyte) rgba[i][GCOMP];
1572 dst[i] = (GLbyte) rgba[i][BCOMP];
1577 dst[i] = (GLbyte) rgba[i][ACOMP];
1582 dst[i*2+0] = (GLbyte) rgba[i][RCOMP];
1583 dst[i*2+1] = (GLbyte) rgb
[all...]
H A Dpack.h86 GLuint n, GLenum dstFormat, GLbyte dest[],
H A Dtexstore.c2393 GLbyte *tempImage, *dst, *src;
2396 tempImage = (GLbyte *) malloc(srcWidth * srcHeight * srcDepth
2397 * components * sizeof(GLbyte));
2401 src = (GLbyte *) _mesa_image_address(dims, srcPacking, srcAddr,
2416 dst = (GLbyte *) dstSlices[0];
2467 GLbyte *dstRow = (GLbyte *) dstSlices[img];
2521 GLbyte *dstRow = (GLbyte *) dstSlices[img];
2523 GLbyte *ds
[all...]
/external/chromium_org/third_party/angle/samples/gles2_book/MipMap2D/
H A DMipMap2D.c216 GLbyte vShaderStr[] =
228 GLbyte fShaderStr[] =
/external/chromium_org/third_party/angle/samples/gles2_book/ParticleSystem/
H A DParticleSystem.c89 GLbyte vShaderStr[] =
112 GLbyte fShaderStr[] =
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dindirect.h77 extern _X_HIDDEN void __indirect_glColor3b(GLbyte red, GLbyte green, GLbyte blue);
78 extern _X_HIDDEN void __indirect_glColor3bv(const GLbyte * v);
93 extern _X_HIDDEN void __indirect_glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha);
94 extern _X_HIDDEN void __indirect_glColor4bv(const GLbyte * v);
120 extern _X_HIDDEN void __indirect_glNormal3b(GLbyte n
[all...]
/external/chromium_org/cc/test/
H A Dtest_gles2_interface.cc352 void TestGLES2Interface::GenMailboxCHROMIUM(GLbyte* mailbox) {
357 const GLbyte* mailbox) {
362 const GLbyte* mailbox) {
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_opengl.h3345 GLAPI void APIENTRY glSecondaryColor3b (GLbyte, GLbyte, GLbyte);
3346 GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *);
3391 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue);
3392 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v);
3547 GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint, const GLbyte *);
3554 GLAPI void APIENTRY glVertexAttrib4bv (GLuint, const GLbyte *);
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
H A Dglapitable.h52 void (GLAPIENTRYP Color3b)(GLbyte red, GLbyte green, GLbyte blue); /* 9 */
53 void (GLAPIENTRYP Color3bv)(const GLbyte * v); /* 10 */
68 void (GLAPIENTRYP Color4b)(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha); /* 25 */
69 void (GLAPIENTRYP Color4bv)(const GLbyte * v); /* 26 */
95 void (GLAPIENTRYP Normal3b)(GLbyte n
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_interface_stub_impl_autogen.h620 void GLES2InterfaceStub::GenMailboxCHROMIUM(GLbyte* /* mailbox */) {
623 GLenum /* target */, const GLbyte* /* mailbox */) {
626 GLenum /* target */, const GLbyte* /* mailbox */) {
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_draw.c222 GLsizeiptr offset = (GLbyte *)exec->vtx.attrptr[src] -
223 (GLbyte *)exec->vtx.vertex;
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_draw.c222 GLsizeiptr offset = (GLbyte *)exec->vtx.attrptr[src] -
223 (GLbyte *)exec->vtx.vertex;

Completed in 737 milliseconds

12345