Lines Matching refs:RsSamplerValue
26 RsSamplerValue mMin = RS_SAMPLER_INVALID; in Sampler()
27 RsSamplerValue mMag = RS_SAMPLER_INVALID; in Sampler()
28 RsSamplerValue mWrapS = RS_SAMPLER_INVALID; in Sampler()
29 RsSamplerValue mWrapT = RS_SAMPLER_INVALID; in Sampler()
33 Sampler::Sampler(sp<RS> rs, void* id, RsSamplerValue min, RsSamplerValue mag, in Sampler()
34 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy): in Sampler()
37 RsSamplerValue mMin = min; in Sampler()
38 RsSamplerValue mMag = mag; in Sampler()
39 RsSamplerValue mWrapS = wrapS; in Sampler()
40 RsSamplerValue mWrapT = wrapT; 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()
64 sp<Sampler> Sampler::create(const sp<RS>& rs, RsSamplerValue min, RsSamplerValue mag, in create()
65 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy) { in create()