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

1234567

/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/
H A Dunpack_stipple.c12 GLubyte *mask;
17 mask = DATA_POINTER( 4, GLubyte );
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/grammar/
H A Dgrammar_mesa.h34 typedef GLubyte byte;
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_getstring.c16 const GLubyte * STATE_APIENTRY crStateGetString( GLenum name )
25 return (const GLubyte *) CR_VENDOR;
27 return (const GLubyte *) CR_RENDERER;
29 return (const GLubyte *) CR_OPENGL_VERSION_STRING " Chromium " CR_VERSION_STRING;
42 return (const GLubyte *) extensions;
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/x86/
H A Dmmx.h30 _mesa_mmx_blend_transparency( GLcontext *ctx, GLuint n, const GLubyte mask[],
35 _mesa_mmx_blend_add( GLcontext *ctx, GLuint n, const GLubyte mask[],
40 _mesa_mmx_blend_min( GLcontext *ctx, GLuint n, const GLubyte mask[],
45 _mesa_mmx_blend_max( GLcontext *ctx, GLuint n, const GLubyte mask[],
50 _mesa_mmx_blend_modulate( GLcontext *ctx, GLuint n, const GLubyte mask[],
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_getstring.c13 const GLubyte * SERVER_DISPATCH_APIENTRY crServerDispatchGetString( GLenum name )
15 const GLubyte *retval;
24 void SERVER_DISPATCH_APIENTRY crServerDispatchGetProgramStringNV( GLuint id, GLenum pname, GLubyte * program )
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dpolygon.h39 _mesa_polygon_stipple(GLcontext *ctx, const GLubyte *pattern);
58 _mesa_PolygonStipple( const GLubyte *mask );
61 _mesa_GetPolygonStipple( GLubyte *mask );
H A Dtexformat_tmp.h623 const GLubyte *rgba = (const GLubyte *) texel;
647 const GLubyte *rgba = (const GLubyte *) texel;
671 const GLubyte *rgba = (const GLubyte *) texel;
695 const GLubyte *rgba = (const GLubyte *) texel;
708 const GLubyte *src = TEXEL_ADDR(GLubyte, texImag
[all...]
H A Dget.h53 extern const GLubyte * GLAPIENTRY
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/
H A Dm_trans_tmp.h36 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
37 const GLubyte *first = f;
62 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
63 const GLubyte *first = f;
87 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
88 const GLubyte *first = f;
109 const GLubyte *
[all...]
H A Dm_clip_tmp.h45 GLubyte clipMask[],
46 GLubyte *orMask,
47 GLubyte *andMask )
54 GLubyte tmpAndMask = *andMask;
55 GLubyte tmpOrMask = *orMask;
72 GLubyte mask = 0;
100 *andMask = (GLubyte) (c < count ? 0 : tmpAndMask);
120 GLubyte clipMask[],
121 GLubyte *orMask,
122 GLubyte *andMas
[all...]
H A Dm_xform.h107 GLubyte clipMask[],
108 GLubyte *orMask,
109 GLubyte *andMask );
154 extern void _mesa_transform_bounds3( GLubyte *orMask, GLubyte *andMask,
158 extern void _mesa_transform_bounds2( GLubyte *orMask, GLubyte *andMask,
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/
H A Dprog_debug.h40 const GLubyte *registerName, GLfloat *v);
H A Dnvprogram.h52 _mesa_GetProgramStringNV(GLuint id, GLenum pname, GLubyte *program);
70 _mesa_LoadProgramNV(GLenum target, GLuint id, GLsizei len, const GLubyte *program);
83 _mesa_ProgramNamedParameter4fNV(GLuint id, GLsizei len, const GLubyte *name,
87 _mesa_ProgramNamedParameter4fvNV(GLuint id, GLsizei len, const GLubyte *name,
91 _mesa_ProgramNamedParameter4dNV(GLuint id, GLsizei len, const GLubyte *name,
95 _mesa_ProgramNamedParameter4dvNV(GLuint id, GLsizei len, const GLubyte *name,
99 _mesa_GetProgramNamedParameterfvNV(GLuint id, GLsizei len, const GLubyte *name,
103 _mesa_GetProgramNamedParameterdvNV(GLuint id, GLsizei len, const GLubyte *name,
H A Dnvfragparse.h36 const GLubyte *str, GLsizei len,
H A Dnvvertparse.h35 const GLubyte *str, GLsizei len,
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/tnl_dd/
H A Dt_dd_vertex.h36 GLubyte alpha, blue, green, red;
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue;
46 GLubyte blue, green, red, alpha;
76 GLubyte ub4[24][4];
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dcalllists.c39 EXPAND(GL_UNSIGNED_BYTE, GLubyte,++,*array);
46 EXPAND(GL_2_BYTES, GLubyte, +=2, 256*array[0] + array[1]);
47 EXPAND(GL_3_BYTES, GLubyte, +=3, 256 * (256 * array[0] + array[1]) + array[2]);
48 EXPAND(GL_4_BYTES, GLubyte, +=4, 256 * (256 * (256 * array[0] + array[1]) + array[2]) + array[3]);
65 EXPAND_WITH_DATA(GL_UNSIGNED_BYTE, GLubyte,++,*array);
72 EXPAND_WITH_DATA(GL_2_BYTES, GLubyte, +=2, 256*array[0] + array[1]);
73 EXPAND_WITH_DATA(GL_3_BYTES, GLubyte, +=3, 256 * (256 * array[0] + array[1]) + array[2]);
74 EXPAND_WITH_DATA(GL_4_BYTES, GLubyte, +=4, 256 * (256 * (256 * array[0] + array[1]) + array[2]) + array[3]);
/vbox/src/VBox/Additions/common/crOpenGL/pack/
H A Dpackspu_getstring.c15 static GLubyte gpszExtensions[10000];
17 static GLubyte gpszShadingVersion[255]="";
20 static void GetString(GLenum name, GLubyte *pszStr)
42 GLubyte return_value[100];
56 static const GLubyte *
62 GLubyte return_value[10*1000];
63 const GLubyte *extensions, *ext;
112 const GLubyte * PACKSPU_APIENTRY packspu_GetString( GLenum name )
H A Dpackspu.h45 GLubyte ub[4];
73 GLubyte glVersion[100]; /* GL_VERSION string */
74 GLubyte pszRealVendor[100];
75 GLubyte pszRealVersion[100];
76 GLubyte pszRealRenderer[100];
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dspantmp.h48 const void *values, const GLubyte mask[] )
52 const GLubyte (*rgba)[4] = (const GLubyte (*)[4]) values;
91 const void *values, const GLubyte mask[] )
95 const GLubyte (*rgb)[3] = (const GLubyte (*)[3]) values;
130 const void *values, const GLubyte mask[] )
134 const GLubyte (*rgba)[4] = (const GLubyte (*)[4]) values;
177 const GLubyte mas
[all...]
H A Dspantmp2.h159 const void *values, const GLubyte mask[] )
163 const GLubyte (*rgba)[4] = (const GLubyte (*)[4]) values;
202 const void *values, const GLubyte mask[] )
206 const GLubyte (*rgb)[3] = (const GLubyte (*)[3]) values;
241 const void *values, const GLubyte mask[] )
245 const GLubyte (*rgba)[4] = (const GLubyte (*)[4]) values;
287 const void *value, const GLubyte mas
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/tnl_dd/imm/
H A Dt_dd_imm_capi.h67 static void TAG(Color3ub)( GLubyte r, GLubyte g, GLubyte b )
83 static void TAG(Color3ubv)( const GLubyte *v )
131 static void TAG(Color4ub)( GLubyte r, GLubyte g, GLubyte b, GLubyte a )
147 static void TAG(Color4ubv)( const GLubyte *v )
192 static void TAG(ColorMaterial3ub)( GLubyte
[all...]
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_stipple.c12 void PACK_APIENTRY crPackPolygonStipple( const GLubyte *mask )
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_endian.h60 GLubyte *bytes = (GLubyte *) &(x); \
61 GLubyte tmp = bytes[0]; \
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/vbo/
H A Dvbo_save.h64 GLubyte attrsz[VBO_ATTRIB_MAX];
118 GLubyte attrsz[VBO_ATTRIB_MAX];
119 GLubyte active_sz[VBO_ATTRIB_MAX];
146 GLubyte *currentsz[VBO_ATTRIB_MAX];
158 const GLubyte *attrsz,

Completed in 3277 milliseconds

1234567