Home | History | Annotate | Download | only in cpp

Lines Matching full:sampler

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