Searched refs:flr (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/mesa-demos/dist/src/vp/
H A DMakefile.am55 flr.txt \
H A DMakefile.in382 flr.txt \
/xsrc/external/mit/mesa-demos/dist/src/fp/
H A DMakefile.am60 flr.txt \
H A DMakefile.in407 flr.txt \
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_texfilter.c212 const GLint flr = IFLOOR(s); local in function:linear_texel_locations
213 if (flr & 1)
214 u = 1.0F - (s - (GLfloat) flr);
216 u = s - (GLfloat) flr;
340 const GLint flr = IFLOOR(s); local in function:nearest_texel_location
342 if (flr & 1)
343 u = 1.0F - (s - (GLfloat) flr);
345 u = s - (GLfloat) flr;
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_texfilter.c212 const GLint flr = util_ifloor(s); local in function:linear_texel_locations
213 if (flr & 1)
214 u = 1.0F - (s - (GLfloat) flr);
216 u = s - (GLfloat) flr;
340 const GLint flr = util_ifloor(s); local in function:nearest_texel_location
342 if (flr & 1)
343 u = 1.0F - (s - (GLfloat) flr);
345 u = s - (GLfloat) flr;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c202 int flr; local in function:wrap_nearest_mirror_repeat
206 flr = util_ifloor(s);
208 if (flr & 1)
334 int flr; local in function:wrap_linear_mirror_repeat
338 flr = util_ifloor(s);
340 if (flr & 1)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c202 int flr; local in function:wrap_nearest_mirror_repeat
206 flr = util_ifloor(s);
208 if (flr & 1)
334 int flr; local in function:wrap_linear_mirror_repeat
339 flr = util_ifloor(s);
340 no_mirror = !(flr & 1);

Completed in 28 milliseconds