Lines Matching refs:Sampler
20 using android::RSC::Sampler;
23 Sampler::Sampler(sp<RS> rs, void* id): in Sampler() function in Sampler
33 Sampler::Sampler(sp<RS> rs, void* id, RsSamplerValue min, RsSamplerValue mag, in Sampler() function in Sampler
44 RsSamplerValue Sampler::getMinification() { in getMinification()
48 RsSamplerValue Sampler::getMagnification() { in getMagnification()
52 RsSamplerValue Sampler::getWrapS() { in getWrapS()
56 RsSamplerValue Sampler::getWrapT() { in getWrapT()
60 float Sampler::getAnisotropy() { in getAnisotropy()
64 sp<Sampler> Sampler::create(const sp<RS>& rs, RsSamplerValue min, RsSamplerValue mag, in create()
69 return new Sampler(rs, id, min, mag, wrapS, wrapT, anisotropy); in create()
72 #define CREATE_SAMPLER(N, MIN, MAG, WRAPS, WRAPT) sp<const Sampler> Sampler::N(const sp<RS> &rs) { \