Lines Matching refs:sampler

57      * @return minification setting for the sampler
64 * @return magnification setting for the sampler
71 * @return S wrapping mode for the sampler
78 * @return T wrapping mode for the sampler
85 * @return anisotropy setting for the sampler
92 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
95 * @param rs Context to which the sampler will belong.
112 * Retrieve a sampler with min and mag set to linear and wrap modes set to
115 * @param rs Context to which the sampler will belong.
132 * Retrieve a sampler with mag set to linear, min linear mipmap linear, and
135 * @param rs Context to which the sampler will belong.
152 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
155 * @param rs Context to which the sampler will belong.
172 * Retrieve a sampler with min and mag set to linear and wrap modes set to
175 * @param rs Context to which the sampler will belong.
192 * Retrieve a sampler with mag set to linear, min linear mipmap linear, and
195 * @param rs Context to which the sampler will belong.
212 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
215 * @param rs Context to which the sampler will belong.
232 * Retrieve a sampler with min and mag set to linear and wrap modes set to
235 * @param rs Context to which the sampler will belong.
252 * Retrieve a sampler with min and mag set to linear and wrap modes set to
255 * @param rs Context to which the sampler will belong.
341 Sampler sampler = new Sampler(id, mRS);
342 sampler.mMin = mMin;
343 sampler.mMag = mMag;
344 sampler.mWrapS = mWrapS;
345 sampler.mWrapT = mWrapT;
346 sampler.mWrapR = mWrapR;
347 sampler.mAniso = mAniso;
348 return sampler;