Searched refs:epsilon (Results 1 - 11 of 11) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Ddrawpix.c325 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 Ddrawpix.c351 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 Dglm.h257 /* glmWeld: eliminate (weld) vectors that are within an epsilon of
261 * epsilon - maximum difference between vertices
266 glmWeld(GLMmodel* model, float epsilon);
H A Dglm.c136 * 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 Dst_cb_bitmap.c700 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 Dst_cb_bitmap.c699 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 Dprog_execute.c713 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 Dprog_execute.c713 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 Dsmilynx_crtc.c244 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 Dpixman-matrix.c659 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 D21.1.0.rst1948 - lima: increase epsilon for depthrange near == far

Completed in 21 milliseconds