| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | drawpix.c | 325 const GLfloat epsilon = 0.0001F; local in function:_mesa_Bitmap 326 GLint x = IFLOOR(ctx->Current.RasterPos[0] + epsilon - xorig); 327 GLint y = IFLOOR(ctx->Current.RasterPos[1] + epsilon - yorig);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | drawpix.c | 351 const GLfloat epsilon = 0.0001F; local in function:_mesa_Bitmap 352 GLint x = util_ifloor(ctx->Current.RasterPos[0] + epsilon - xorig); 353 GLint y = util_ifloor(ctx->Current.RasterPos[1] + epsilon - yorig);
|
| /xsrc/external/mit/mesa-demos/dist/src/objviewer/ |
| H A D | glm.h | 257 /* glmWeld: eliminate (weld) vectors that are within an epsilon of 261 * epsilon - maximum difference between vertices 266 glmWeld(GLMmodel* model, float epsilon);
|
| H A D | glm.c | 136 * equal (within a certain threshold) or FALSE if not. An epsilon 143 _glmEqual(float* u, float* v, float epsilon) argument 145 if (_glmAbs(u[0] - v[0]) < epsilon && 146 _glmAbs(u[1] - v[1]) < epsilon && 147 _glmAbs(u[2] - v[2]) < epsilon) 155 * epsilon of each other. 159 * epsilon - maximum difference between vectors 163 _glmWeldVectors(float* vectors, uint* numvectors, float epsilon) argument 175 if (_glmEqual(&vectors[3 * i], &copies[3 * j], epsilon)) { 1653 /* glmWeld: eliminate (weld) vectors that are within an epsilon o 1662 glmWeld(GLMmodel * model,float epsilon) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_cb_bitmap.c | 700 const GLfloat epsilon = 0.0001F; local in function:st_DrawAtlasBitmaps 706 const float x0 = IFLOOR(ctx->Current.RasterPos[0] - xorig + epsilon); 707 const float y0 = IFLOOR(ctx->Current.RasterPos[1] - yorig + epsilon);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_bitmap.c | 699 const GLfloat epsilon = 0.0001F; local in function:st_DrawAtlasBitmaps 705 const float x0 = util_ifloor(ctx->Current.RasterPos[0] - xorig + epsilon); 706 const float y0 = util_ifloor(ctx->Current.RasterPos[1] - yorig + epsilon);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/ |
| H A D | prog_execute.c | 713 const GLfloat epsilon = 1.0F / 256.0F; /* from NV VP spec */ local in function:_mesa_execute_program 719 a[3] = CLAMP(a[3], -(128.0F - epsilon), (128.0F - epsilon));
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/program/ |
| H A D | prog_execute.c | 713 const GLfloat epsilon = 1.0F / 256.0F; /* from NV VP spec */ local in function:_mesa_execute_program 719 a[3] = CLAMP(a[3], -(128.0F - epsilon), (128.0F - epsilon));
|
| /xsrc/external/mit/xf86-video-siliconmotion/dist/src/ |
| H A D | smilynx_crtc.c | 244 int epsilon = 3000; local in function:SMILynx_CrtcModeFixup 248 if ( abs(mode->Clock - stable_clocks[i]) < epsilon) {
|
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-matrix.c | 659 pixman_fixed_t epsilon) 666 return t <= epsilon; 657 within_epsilon(pixman_fixed_t a,pixman_fixed_t b,pixman_fixed_t epsilon) argument
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 21.1.0.rst | 1948 - lima: increase epsilon for depthrange near == far
|