Lines Matching refs:TextureSampler
66 class TextureSampler;
87 const TextureSampler& textureSampler(int index) const { return *fTextureSamplers[index]; } in textureSampler()
139 void addTextureSampler(const TextureSampler*);
186 SkSTArray<4, const TextureSampler*, true> fTextureSamplers;
200 class GrProcessor::TextureSampler : public SkNoncopyable {
205 TextureSampler();
207 TextureSampler(GrTexture*, const GrSamplerParams&);
208 explicit TextureSampler(GrTexture*,
220 TextureSampler(GrResourceProvider*, sk_sp<GrTextureProxy>, const GrSamplerParams&);
221 explicit TextureSampler(GrResourceProvider*, sk_sp<GrTextureProxy>,
232 bool operator==(const TextureSampler& that) const {
238 bool operator!=(const TextureSampler& other) const { return !(*this == other); }