Lines Matching refs:depths

200 								  const Vec2&					depths,
208 const float d0 = depths[0];
209 const float d1 = depths[1];
265 const Vec4& depths,
272 const float d0 = depths[0];
273 const float d1 = depths[1];
274 const float d2 = depths[2];
275 const float d3 = depths[3];
295 const Vec4& depths,
306 const float d0 = depths[0];
307 const float d1 = depths[1];
308 const float d2 = depths[2];
309 const float d3 = depths[3];
368 const Vec4& depths,
376 return isBilinearPCFCompareValid(compareMode, prec, depths, xBounds, yBounds, cmpReference, result, isFixedPointDepth);
378 return isBilinearAnyCompareValid(compareMode, prec, depths, cmpReference, result, isFixedPointDepth);
620 const Vec4 depths (lookupDepth(level, sampler, x0, y0, coordZ),
625 if (isBilinearCompareValid(sampler.compare, prec, depths, Vec2(minA, maxA), Vec2(minB, maxB), cmpReference, result, isFixedPointDepth))
1055 Vec4 depths;
1056 depths[0] = lookupDepthNoBorder(faces[c00.face], sampler, c00.s, c00.t);
1057 depths[1] = lookupDepthNoBorder(faces[c10.face], sampler, c10.s, c10.t);
1058 depths[2] = lookupDepthNoBorder(faces[c01.face], sampler, c01.s, c01.t);
1059 depths[3] = lookupDepthNoBorder(faces[c11.face], sampler, c11.s, c11.t);
1061 if (isBilinearCompareValid(sampler.compare, prec, depths, Vec2(minA, maxA), Vec2(minB, maxB), cmpReference, result, isFixedPointDepth))
1249 const Vec2 depths (lookupDepth(level, sampler, x0, coordZ, 0),
1252 if (isLinearCompareValid(sampler.compare, prec, depths, Vec2(minA, maxA), cmpReference, result, isFixedPointDepth))
1349 Vec4 depths;
1355 depths[0] = lookupDepth(level0, sampler, x0, coordZ, 0);
1356 depths[1] = lookupDepth(level0, sampler, x1, coordZ, 0);
1369 depths[2] = lookupDepth(level1, sampler, x0, coordZ, 0);
1370 depths[3] = lookupDepth(level1, sampler, x1, coordZ, 0);
1375 depths,