Searched defs:depthSample (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfilter.c3417 shadow_compare(GLenum function, GLfloat coord, GLfloat depthSample) argument
3421 return (coord <= depthSample) ? 1.0F : 0.0F;
3423 return (coord >= depthSample) ? 1.0F : 0.0F;
3425 return (coord < depthSample) ? 1.0F : 0.0F;
3427 return (coord > depthSample) ? 1.0F : 0.0F;
3429 return (coord == depthSample) ? 1.0F : 0.0F;
3431 return (coord != depthSample) ? 1.0F : 0.0F;
3437 return depthSample;
3572 GLfloat depthSample, depthRef; local
3579 swImg->FetchTexel(swImg, col, row, slice, &depthSample);
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_texfilter.c3417 shadow_compare(GLenum function, GLfloat coord, GLfloat depthSample) argument
3421 return (coord <= depthSample) ? 1.0F : 0.0F;
3423 return (coord >= depthSample) ? 1.0F : 0.0F;
3425 return (coord < depthSample) ? 1.0F : 0.0F;
3427 return (coord > depthSample) ? 1.0F : 0.0F;
3429 return (coord == depthSample) ? 1.0F : 0.0F;
3431 return (coord != depthSample) ? 1.0F : 0.0F;
3437 return depthSample;
3572 GLfloat depthSample, depthRef; local
3579 swImg->FetchTexel(swImg, col, row, slice, &depthSample);
[all...]

Completed in 131 milliseconds