Searched refs:GLfixed (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10Ext.spec1 GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
H A DGLES11Ext.spec6 void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height )
9 void glDrawTexxvOES ( const GLfixed *coords )
17 void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
18 void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blu
[all...]
H A DGLES10.spec14 void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
37 void glFogx ( GLenum pname, GLfixed param )
38 void glFogxv ( GLenum pname, const GLfixed *params )
41 void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed to
[all...]
H A DGLES11.spec5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
14 void glGetClipPlanex ( GLenum pname, GLfixed *eqn )
15 void glGetFixedv ( GLenum pname, GLfixed *params )
18 void glGetLightxv ( GLenum light, GLenum pname, GLfixed *params )
20 void glGetMaterialxv ( GLenum face, GLenum pname, GLfixed *params )
24 void glGetTexEnvxv ( GLenum env, GLenum pname, GLfixed *params )
27 void glGetTexParameterxv ( GLenum target, GLenum pname, GLfixed *params )
34 void glPointParameterx ( GLenum pname, GLfixed param )
35 void glPointParameterxv ( GLenum pname, const GLfixed *params )
43 void glTexParameterxv ( GLenum target, GLenum pname, const GLfixed *param
[all...]
/frameworks/native/opengl/libagl/
H A Dmatrix.h59 GLfixed vsquare3(GLfixed a, GLfixed b, GLfixed c)
63 GLfixed r;
79 GLfixed res;
110 static inline GLfixed mla2a( GLfixed a0, GLfixed b0,
111 GLfixed a
[all...]
H A Dlight.cpp40 static inline void vscale3(GLfixed* d, const GLfixed* m, GLfixed s);
43 void vnorm3(GLfixed* d, const GLfixed* a);
45 static inline void vsa3(GLfixed* d,
46 const GLfixed* m, GLfixed s, const GLfixed* a);
47 static inline void vss3(GLfixed*
[all...]
H A Dcontext.h88 struct { GLfixed x, y, z; };
89 struct { GLfixed r, g, b; };
90 struct { GLfixed S, T, R; };
91 GLfixed v[3];
97 struct { GLfixed x, y, z, w; };
98 struct { GLfixed r, g, b, a; };
99 struct { GLfixed S, T, R, Q; };
100 GLfixed v[4];
143 GLfixed fog;
173 GLfixed facto
[all...]
H A Dvertex.cpp70 const GLfixed* const m = c->transforms.vpt.transform.matrix.m;
90 const GLfixed w = v->clip.w;
124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v);
164 static void clipPlanex(GLenum plane, const GLfixed* equ, ogles_context_t* c)
200 void glColor4x(GLfixed r, GLfixed g, GLfixed b, GLfixed a)
221 void glNormal3x(GLfixed x, GLfixed
[all...]
H A Dmatrix.cpp182 int notZero(GLfixed v) {
187 int notOne(GLfixed v) {
193 const GLfixed* const m = matrix.m;
218 GLfixed const * const m = matrix.m;
236 GLfixed* xp = m;
286 void matrixf_t::set(const GLfixed* rhs) {
294 void matrixf_t::load(const GLfixed* rhs) {
405 void matrix_stack_t::load(const GLfixed* rhs)
581 GLfixed* const x = mvit4.matrix.m;
606 GLfixed* cons
[all...]
H A Darray.cpp136 static void currentColor(ogles_context_t* c, GLfixed* v, const GLvoid*) {
139 static void currentNormal(ogles_context_t* c, GLfixed* v, const GLvoid*) {
142 static void currentTexCoord(ogles_context_t* c, GLfixed* v, const GLvoid*) {
147 static void fetchNop(ogles_context_t*, GLfixed*, const GLvoid*) {
149 static void fetch2b(ogles_context_t*, GLfixed* v, const GLbyte* p) {
153 static void fetch2s(ogles_context_t*, GLfixed* v, const GLshort* p) {
157 static void fetch2x(ogles_context_t*, GLfixed* v, const GLfixed* p) {
158 memcpy(v, p, 2*sizeof(GLfixed));
160 static void fetch2f(ogles_context_t*, GLfixed*
[all...]
H A Dprimitives.cpp382 static inline int32_t clampZ(GLfixed z) CONST;
383 int32_t clampZ(GLfixed z) {
514 GLfixed itf[3];
650 GLfixed itc[12];
667 const GLfixed factor = c->polygonOffset.factor;
687 GLfixed itf[3];
839 GLfixed frustumPlaneDist(int plane, const vec4_t& s)
841 const GLfixed d = s.v[ plane >> 1 ];
846 int32_t clipDivide(GLfixed a, GLfixed
[all...]
H A Dfp.cpp34 GLfloat fixedToFloat(GLfixed x)
H A Dtexture.cpp622 GLenum target, GLenum pname, GLfixed param, ogles_context_t* c)
680 static void drawTexxOESImp(GLfixed x, GLfixed y, GLfixed z, GLfixed w, GLfixed h,
747 static void drawTexxOES(GLfixed x, GLfixed y, GLfixed z, GLfixed
[all...]
H A Dfp.h34 extern "C" GLfixed gglFloatToFixed(float f) __attribute__((const));
41 GLfloat fixedToFloat(GLfixed) CONST;
/frameworks/native/opengl/include/GLES/
H A Dglext.h133 typedef void (GL_APIENTRYP PFNGLDRAWTEXXOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
136 typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords);
142 GL_API void GL_APIENTRY glDrawTexxOES (GLfixed x, GLfixed y, GLfixed z, GLfixed widt
[all...]
H A Dgl.h58 typedef khronos_int32_t GLfixed; typedef
444 GL_API void GL_APIENTRY glAlphaFuncx (GLenum func, GLfixed ref);
451 GL_API void GL_APIENTRY glClearColorx (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
452 GL_API void GL_APIENTRY glClearDepthx (GLfixed depth);
455 GL_API void GL_APIENTRY glClipPlanex (GLenum plane, const GLfixed *equation);
457 GL_API void GL_APIENTRY glColor4x (GLfixed red, GLfixed gree
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11Ext.cpp514 /* void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height ) */
519 (GLfixed)x,
520 (GLfixed)y,
521 (GLfixed)z,
522 (GLfixed)width,
523 (GLfixed)heigh
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp396 /* void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
401 (GLfixed)red,
402 (GLfixed)green,
403 (GLfixed)blue,
404 (GLfixed)alpha
966 /* void glFogx ( GLenum pname, GLfixed param ) */
972 (GLfixed)para
[all...]
H A Dandroid_opengl_GLES10.cpp587 /* void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
592 (GLfixed)red,
593 (GLfixed)green,
594 (GLfixed)blue,
595 (GLfixed)alpha
1129 /* void glFogx ( GLenum pname, GLfixed param ) */
1135 (GLfixed)para
[all...]
H A Dandroid_opengl_GLES11.cpp633 /* void glClipPlanex ( GLenum plane, const GLfixed *equation ) */
640 GLfixed *equation_base = (GLfixed *) 0;
642 GLfixed *equation = (GLfixed *) 0;
657 equation_base = (GLfixed *)
663 (GLfixed *)equation
676 /* void glClipPlanex ( GLenum plane, const GLfixed *equation ) */
686 GLfixed *equation = (GLfixed *)
[all...]
H A Dandroid_opengl_GLES10Ext.cpp457 /* GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) */
465 GLfixed *mantissa_base = (GLfixed *) 0;
467 GLfixed *mantissa = (GLfixed *) 0;
491 mantissa_base = (GLfixed *)
519 (GLfixed *)mantissa,
538 /* GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) */
551 GLfixed *mantissa = (GLfixed *)
[all...]
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h69 typedef int GLfixed; typedef
486 GLAPI void APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
509 GLAPI void APIENTRY glFogx (GLenum pname, GLfixed param);
510 GLAPI void APIENTRY glFogxv (GLenum pname, const GLfixed *params);
513 GLAPI void APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed botto
[all...]
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c81 GLfixed *vertexArray;
83 GLfixed *normalArray;
125 result->vertexArray = (GLfixed *)malloc(vertices * vertexComponents *
126 sizeof(GLfixed));
130 result->normalArray = (GLfixed *)malloc(vertices * 3 *
131 sizeof(GLfixed));
417 static const GLfixed quadVertices[] = {
432 const GLfixed fadeColor = minFade << 6;
512 glFrustumx((GLfixed)(xmin * 65536), (GLfixed)(xma
[all...]
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp163 const GLfixed texCoords[] = {
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp236 const GLfixed texCoords[] = {

Completed in 5033 milliseconds

12