blob: b7466b4ffb2008d0e6bd86622e04f15b0f004297 [file] [log] [blame]
bsalomon@google.com68b58c92013-01-17 16:50:08 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrSimpleTextureEffect_DEFINED
9#define GrSimpleTextureEffect_DEFINED
10
11#include "GrSingleTextureEffect.h"
12
13class GrGLSimpleTextureEffect;
14
15/**
16 * The output color of this effect is a modulation of the input color and a sample from a texture.
17 * The coord to sample the texture is determine by a matrix. It allows explicit specification of
18 * the filtering and wrap modes (GrTextureParams).
19 */
20class GrSimpleTextureEffect : public GrSingleTextureEffect {
21public:
22 /* unfiltered, clamp mode */
23 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix) {
bsalomon@google.com6340a412013-01-22 19:55:59 +000024 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix)));
bsalomon@google.com68b58c92013-01-17 16:50:08 +000025 return CreateEffectRef(effect);
26 }
27
28 /* clamp mode */
29 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix, bool bilerp) {
bsalomon@google.com6340a412013-01-22 19:55:59 +000030 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, bilerp)));
bsalomon@google.com68b58c92013-01-17 16:50:08 +000031 return CreateEffectRef(effect);
32 }
33
34 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix, const GrTextureParams& p) {
bsalomon@google.com6340a412013-01-22 19:55:59 +000035 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p)));
bsalomon@google.com68b58c92013-01-17 16:50:08 +000036 return CreateEffectRef(effect);
37 }
38
39 virtual ~GrSimpleTextureEffect() {}
40
41 static const char* Name() { return "Texture"; }
42
43 virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags) const SK_OVERRIDE;
44
45 typedef GrGLSimpleTextureEffect GLEffect;
46
47 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE;
48
49private:
50 GrSimpleTextureEffect(GrTexture* texture, const SkMatrix& matrix)
51 : GrSingleTextureEffect(texture, matrix) {}
52 GrSimpleTextureEffect(GrTexture* texture, const SkMatrix& matrix, bool bilerp)
53 : GrSingleTextureEffect(texture, matrix, bilerp) {}
54 GrSimpleTextureEffect(GrTexture* texture, const SkMatrix& matrix, const GrTextureParams& params)
55 : GrSingleTextureEffect(texture, matrix, params) {}
56
bsalomon@google.com6340a412013-01-22 19:55:59 +000057 virtual bool onIsEqual(const GrEffectRef& other) const SK_OVERRIDE {
58 const GrSimpleTextureEffect& ste = CastEffect<GrSimpleTextureEffect>(other);
bsalomon@google.com68b58c92013-01-17 16:50:08 +000059 return this->hasSameTextureParamsAndMatrix(ste);
60 }
61
62 GR_DECLARE_EFFECT_TEST;
63
64 typedef GrSingleTextureEffect INHERITED;
65};
66
67#endif