/external/mesa3d/src/mesa/main/ |
D | es1_conversion.h | 14 _es_ClipPlanex(GLenum plane, const GLfixed *equation); 20 _es_Color4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 26 _es_DrawTexxOES(GLfixed x, GLfixed y, GLfixed z, GLfixed w, GLfixed h); 29 _es_DrawTexxvOES(const GLfixed *coords); 32 _es_Fogx(GLenum pname, GLfixed param); 35 _es_Fogxv(GLenum pname, const GLfixed *params); 42 _es_Frustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, 43 GLfixed zNear, GLfixed zFar); 49 _es_GetClipPlanex(GLenum plane, GLfixed *equation); 52 _es_GetLightxv(GLenum light, GLenum pname, GLfixed *params); [all …]
|
D | es1_conversion.c | 73 _es_ClipPlanex(GLenum plane, const GLfixed *equation) in _es_ClipPlanex() 95 _es_Color4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) in _es_Color4x() 111 _es_DrawTexxOES(GLfixed x, GLfixed y, GLfixed z, GLfixed w, GLfixed h) in _es_DrawTexxOES() 122 _es_DrawTexxvOES(const GLfixed *coords) in _es_DrawTexxvOES() 135 _es_Fogx(GLenum pname, GLfixed param) in _es_Fogx() 146 _es_Fogxv(GLenum pname, const GLfixed *params) in _es_Fogxv() 198 _es_Frustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, in _es_Frustumx() 199 GLfixed zNear, GLfixed zFar) in _es_Frustumx() 222 _es_GetClipPlanex(GLenum plane, GLfixed *equation) in _es_GetClipPlanex() 229 equation[i] = (GLfixed) (converted_equation[i] * 65536); in _es_GetClipPlanex() [all …]
|
D | drawtex.h | 53 _mesa_DrawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); 56 _mesa_DrawTexxv(const GLfixed *coords);
|
D | drawtex.c | 113 _mesa_DrawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height) in _mesa_DrawTexx() 126 _mesa_DrawTexxv(const GLfixed *coords) in _mesa_DrawTexxv()
|
D | querymatrix.c | 36 #define INT_TO_FIXED(x) ((GLfixed) ((x) << 16)) 37 #define FLOAT_TO_FIXED(x) ((GLfixed) ((x) * 65536.0)) 91 extern GLbitfield GL_APIENTRY _es_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16]); 97 GLbitfield GL_APIENTRY _es_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16]) in _es_QueryMatrixxOES()
|
D | get.h | 54 _mesa_GetFixedv(GLenum pname, GLfixed *params);
|
D | glheader.h | 65 typedef int GLfixed; typedef
|
D | glformats.c | 97 return sizeof(GLfixed); in _mesa_sizeof_type()
|
D | get.c | 2732 _mesa_GetFixedv(GLenum pname, GLfixed *params) in _mesa_GetFixedv()
|
/external/mesa3d/include/GLES/ |
D | glext.h | 510 GL_API void GL_APIENTRY glDrawTexxOES (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed heig… 513 GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords); 519 …ypedef void (GL_APIENTRYP PFNGLDRAWTEXXOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed width, G… 522 typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords); 566 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation); 567 GL_API void GL_APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 569 GL_API void GL_APIENTRY glFogxOES (GLenum pname, GLfixed param); 570 GL_API void GL_APIENTRY glFogxvOES (GLenum pname, const GLfixed *params); 571 …API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfi… 572 GL_API void GL_APIENTRY glGetClipPlanexOES (GLenum pname, GLfixed eqn[4]); [all …]
|
D | gl.h | 31 typedef khronos_int32_t GLfixed; typedef 645 GL_API void GL_APIENTRY glClipPlanex (GLenum plane, const GLfixed *equation); 647 GL_API void GL_APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 668 GL_API void GL_APIENTRY glFogx (GLenum pname, GLfixed param); 669 GL_API void GL_APIENTRY glFogxv (GLenum pname, const GLfixed *params); 671 GL_API void GL_APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfix… 674 GL_API void GL_APIENTRY glGetClipPlanex (GLenum pname, GLfixed eqn[4]); 678 GL_API void GL_APIENTRY glGetFixedv (GLenum pname, GLfixed *params); 680 GL_API void GL_APIENTRY glGetLightxv (GLenum light, GLenum pname, GLfixed *params); 681 GL_API void GL_APIENTRY glGetMaterialxv (GLenum face, GLenum pname, GLfixed *params); [all …]
|
/external/mesa3d/src/mesa/swrast/ |
D | s_span.h | 145 GLfixed red, redStep; 146 GLfixed green, greenStep; 147 GLfixed blue, blueStep; 148 GLfixed alpha, alphaStep; 149 GLfixed index, indexStep; 150 GLfixed z, zStep; /**< XXX z should probably be GLuint */ 151 GLfixed intTex[2], intTexStep[2]; /**< (s,t) for unit[0] only */
|
D | s_tritemp.h | 100 GLfixed endVal = span.CHANNEL + (LEN) * span.CHANNELSTEP; \ 120 GLfixed fdxdy; /* dx/dy in fixed-point */ in NAME() 122 GLfixed fsx; /* first sample point x coord */ in NAME() 123 GLfixed fsy; in NAME() 124 GLfixed fx0; /* fixed pt X of lower endpoint */ in NAME() 140 GLfixed vMin_fx, vMin_fy, vMid_fx, vMid_fy, vMax_fx, vMax_fy; in NAME() 173 const GLfixed fy0 = FloatToFixed(v0->attrib[FRAG_ATTRIB_WPOS][1] - 0.5F) & snapMask; in NAME() 174 const GLfixed fy1 = FloatToFixed(v1->attrib[FRAG_ATTRIB_WPOS][1] - 0.5F) & snapMask; in NAME() 175 const GLfixed fy2 = FloatToFixed(v2->attrib[FRAG_ATTRIB_WPOS][1] - 0.5F) & snapMask; in NAME() 258 eMaj.fsx = eMaj.fx0 + (GLfixed) (eMaj.adjy * eMaj.dxdy); in NAME() [all …]
|
D | s_alpha.c | 135 const GLfixed alphaStep = span->alphaStep; in _swrast_alpha_test() 136 GLfixed alpha = span->alpha; in _swrast_alpha_test() 142 const GLfixed alphaStep = span->alphaStep; in _swrast_alpha_test() 143 GLfixed alpha = span->alpha; in _swrast_alpha_test()
|
D | s_triangle.c | 245 GLfixed er, eg, eb, ea; 383 const GLfixed sf = span->intTex[0] & FIXED_FRAC_MASK; \ in affine_span() 384 const GLfixed tf = span->intTex[1] & FIXED_FRAC_MASK; \ in affine_span() 601 GLfixed er, eg, eb, ea; /* texture env color */ 644 const GLfixed s_fix = FloatToFixed(s_tmp) - FIXED_HALF; \ in fast_persp_span() 645 const GLfixed t_fix = FloatToFixed(t_tmp) - FIXED_HALF; \ in fast_persp_span() 648 const GLfixed sf = s_fix & FIXED_FRAC_MASK; \ in fast_persp_span() 649 const GLfixed tf = t_fix & FIXED_FRAC_MASK; \ in fast_persp_span()
|
D | s_span.c | 244 GLfixed r = span->red; in interpolate_int_colors() 245 GLfixed g = span->green; in interpolate_int_colors() 246 GLfixed b = span->blue; in interpolate_int_colors() 247 GLfixed a = span->alpha; in interpolate_int_colors() 280 GLfixed r, g, b, a; in interpolate_int_colors() 388 GLfixed zval = span->z; in _swrast_span_interpolate_z()
|
/external/mesa3d/src/mapi/glapi/ |
D | glapi_priv.h | 42 typedef int GLfixed; typedef
|
/external/mesa3d/src/mesa/tnl/ |
D | t_draw.c | 149 const GLfixed *in = (GLfixed *) ptr; in convert_fixed_to_float() 157 const GLfixed *in = (GLfixed *) ptr; in convert_fixed_to_float()
|
/external/deqp/framework/opengl/wrapper/ |
D | glwDefs.cpp | 54 DE_STATIC_ASSERT(sizeof(GLfixed) == 4);
|
D | glwTypes.inl | 70 typedef deInt32 GLfixed; typedef
|
/external/mesa3d/include/GLES2/ |
D | gl2.h | 35 typedef khronos_int32_t GLfixed; typedef
|
/external/mesa3d/docs/ |
D | VERSIONS | 408 - internally, colors now stored in GLubytes, not GLfixed
|