Lines Matching refs:TextureSampler
200 class TextureSampler;
207 const TextureSampler& textureSampler(int index) const { return *fTextureSamplers[index]; } in textureSampler()
227 void addTextureSampler(const TextureSampler*);
238 SkSTArray<4, const TextureSampler*, true> fTextureSamplers;
249 class GrResourceIOProcessor::TextureSampler {
254 TextureSampler();
260 explicit TextureSampler(const TextureSampler& that) in TextureSampler() function
265 TextureSampler(sk_sp<GrTextureProxy>, const GrSamplerState&);
267 explicit TextureSampler(sk_sp<GrTextureProxy>,
272 TextureSampler& operator=(const TextureSampler&) = delete;
281 bool operator==(const TextureSampler& that) const {
286 bool operator!=(const TextureSampler& other) const { return !(*this == other); }