Lines Matching defs:Sampler

47 class Sampler;
242 sp<const Sampler> CLAMP_NEAREST;
243 sp<const Sampler> CLAMP_LINEAR;
244 sp<const Sampler> CLAMP_LINEAR_MIP_LINEAR;
245 sp<const Sampler> WRAP_NEAREST;
246 sp<const Sampler> WRAP_LINEAR;
247 sp<const Sampler> WRAP_LINEAR_MIP_LINEAR;
248 sp<const Sampler> MIRRORED_REPEAT_NEAREST;
249 sp<const Sampler> MIRRORED_REPEAT_LINEAR;
250 sp<const Sampler> MIRRORED_REPEAT_LINEAR_MIP_LINEAR;
252 friend class Sampler;
287 * Sampler. A developer must synchronize across these different usages using
290 * used as the output of one kernel and as Sampler input in a later kernel, a
585 * Sampler. Note that Allocation objects with DataKind USER cannot be used as
586 * input for a Sampler. In general, Allocation objects that are intended for
587 * use with a Sampler should use bitmap-derived Elements such as
754 * Utility function for returning an Element containing a single Sampler.
1873 * Sampler object that defines how Allocations can be read as textures
1877 * Any Allocation used with a Sampler must have been created with
1878 * RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE; using a Sampler on an
1882 class Sampler : public BaseObj {
1884 Sampler(sp<RS> rs, void* id);
1894 * Creates a non-standard Sampler.
1902 static sp<Sampler> create(sp<RS> rs, RsSamplerValue min, RsSamplerValue mag, RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy);
1931 * @return Sampler
1933 static sp<const Sampler> CLAMP_NEAREST(sp<RS> rs);
1940 * @return Sampler
1942 static sp<const Sampler> CLAMP_LINEAR(sp<RS> rs);
1949 * @return Sampler
1951 static sp<const Sampler> CLAMP_LINEAR_MIP_LINEAR(sp<RS> rs);
1958 * @return Sampler
1960 static sp<const Sampler> WRAP_NEAREST(sp<RS> rs);
1967 * @return Sampler
1969 static sp<const Sampler> WRAP_LINEAR(sp<RS> rs);
1976 * @return Sampler
1978 static sp<const Sampler> WRAP_LINEAR_MIP_LINEAR(sp<RS> rs);
1985 * @return Sampler
1987 static sp<const Sampler> MIRRORED_REPEAT_NEAREST(sp<RS> rs);
1994 * @return Sampler
1996 static sp<const Sampler> MIRRORED_REPEAT_LINEAR(sp<RS> rs);
2003 * @return Sampler
2005 static sp<const Sampler> MIRRORED_REPEAT_LINEAR_MIP_LINEAR(sp<RS> rs);