blob: ffc05e5b52263ac917287a60e59fb843b3689156 [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.
reed@google.com67e7cde2013-03-20 17:47:16 +000017 * The coord to sample the texture is determine by a matrix. It allows explicit specification of
18 * the filtering and wrap modes (GrTextureParams).
bsalomon@google.com68b58c92013-01-17 16:50:08 +000019 */
20class GrSimpleTextureEffect : public GrSingleTextureEffect {
21public:
22 /* unfiltered, clamp mode */
reed@google.com67e7cde2013-03-20 17:47:16 +000023 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix) {
24 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix)));
bsalomon@google.com68b58c92013-01-17 16:50:08 +000025 return CreateEffectRef(effect);
26 }
27
28 /* clamp mode */
reed@google.com67e7cde2013-03-20 17:47:16 +000029 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix, bool bilerp) {
30 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, bilerp)));
bsalomon@google.com68b58c92013-01-17 16:50:08 +000031 return CreateEffectRef(effect);
32 }
33
reed@google.com67e7cde2013-03-20 17:47:16 +000034 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix, const GrTextureParams& p) {
35 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:
reed@google.com67e7cde2013-03-20 17:47:16 +000050 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) {}
bsalomon@google.com68b58c92013-01-17 16:50:08 +000056
bsalomon@google.com8a252f72013-01-22 20:35:13 +000057 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
bsalomon@google.com6340a412013-01-22 19:55:59 +000058 const GrSimpleTextureEffect& ste = CastEffect<GrSimpleTextureEffect>(other);
reed@google.com67e7cde2013-03-20 17:47:16 +000059 return this->hasSameTextureParamsAndMatrix(ste);
bsalomon@google.com68b58c92013-01-17 16:50:08 +000060 }
61
62 GR_DECLARE_EFFECT_TEST;
63
64 typedef GrSingleTextureEffect INHERITED;
65};
66
67#endif