Home | History | Annotate | Download | only in runtime

Lines Matching defs:weights

268         getBilinearSample1D(const Allocation_t *alloc, float2 weights,
276 return getSample_RGBA(p, iPixel, next, weights.x, weights.y);
278 return getSample_A(p, iPixel, next, weights.x, weights.y);
281 return getSample_565(p, iPixel, next, weights.x, weights.y);
283 return getSample_RGB(p, iPixel, next, weights.x, weights.y);
285 return getSample_L(p, iPixel, next, weights.x, weights.y);
287 return getSample_LA(p, iPixel, next, weights.x, weights.y);
442 float2 weights;
443 weights.x = oneMinusFrac;
444 weights.y = frac;
449 return getBilinearSample1D(alloc, weights, location, next, dk, dt, lod);