Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: src/gpu/effects/GrCustomCoordsTextureEffect.h

Issue 778453002: Remove backend factories (Closed) Base URL: https://skia.googlesource.com/skia.git@unichoice
Patch Set: more clang warnings Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrCustomCoordsTextureEffect_DEFINED 8 #ifndef GrCustomCoordsTextureEffect_DEFINED
9 #define GrCustomCoordsTextureEffect_DEFINED 9 #define GrCustomCoordsTextureEffect_DEFINED
10 10
11 #include "GrProcessor.h" 11 #include "GrProcessor.h"
12 #include "GrGeometryProcessor.h" 12 #include "GrGeometryProcessor.h"
13 13
14 class GrGLCustomCoordsTextureEffect; 14 class GrGLCustomCoordsTextureEffect;
15 class GrInvariantOutput; 15 class GrInvariantOutput;
16 16
17 /** 17 /**
18 * The output color of this effect is a modulation of the input color and a samp le from a texture. 18 * The output color of this effect is a modulation of the input color and a samp le from a texture.
19 * It allows explicit specification of the filtering and wrap modes (GrTexturePa rams). The input 19 * It allows explicit specification of the filtering and wrap modes (GrTexturePa rams). The input
20 * coords are a custom attribute. 20 * coords are a custom attribute.
21 */ 21 */
22 class GrCustomCoordsTextureEffect : public GrGeometryProcessor { 22 class GrCustomCoordsTextureEffect : public GrGeometryProcessor {
23 public: 23 public:
24 static GrGeometryProcessor* Create(GrTexture* tex, const GrTextureParams& p, bool hasColor) { 24 static GrGeometryProcessor* Create(GrTexture* tex, const GrTextureParams& p, bool hasColor) {
25 return SkNEW_ARGS(GrCustomCoordsTextureEffect, (tex, p, hasColor)); 25 return SkNEW_ARGS(GrCustomCoordsTextureEffect, (tex, p, hasColor));
26 } 26 }
27 27
28 virtual ~GrCustomCoordsTextureEffect() {} 28 virtual ~GrCustomCoordsTextureEffect() {}
29 29
30 static const char* Name() { return "Texture"; } 30 virtual const char* name() const SK_OVERRIDE { return "Texture"; }
31 31
32 const GrAttribute* inPosition() const { return fInPosition; } 32 const GrAttribute* inPosition() const { return fInPosition; }
33 const GrAttribute* inColor() const { return fInColor; } 33 const GrAttribute* inColor() const { return fInColor; }
34 const GrAttribute* inTextureCoords() const { return fInTextureCoords; } 34 const GrAttribute* inTextureCoords() const { return fInTextureCoords; }
35 35
36 typedef GrGLCustomCoordsTextureEffect GLProcessor; 36 virtual void getGLProcessorKey(const GrBatchTracker& bt,
37 const GrGLCaps& caps,
38 GrProcessorKeyBuilder* b) const SK_OVERRIDE;
37 39
38 virtual const GrBackendGeometryProcessorFactory& getFactory() const SK_OVERR IDE; 40 virtual GrGLGeometryProcessor* createGLInstance(const GrBatchTracker& bt) co nst SK_OVERRIDE;
39 41
40 private: 42 private:
41 GrCustomCoordsTextureEffect(GrTexture* texture, const GrTextureParams& param s, bool hasColor); 43 GrCustomCoordsTextureEffect(GrTexture* texture, const GrTextureParams& param s, bool hasColor);
42 44
43 virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE; 45 virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
44 46
45 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVE RRIDE; 47 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVE RRIDE;
46 48
47 GrTextureAccess fTextureAccess; 49 GrTextureAccess fTextureAccess;
48 const GrAttribute* fInPosition; 50 const GrAttribute* fInPosition;
49 const GrAttribute* fInColor; 51 const GrAttribute* fInColor;
50 const GrAttribute* fInTextureCoords; 52 const GrAttribute* fInTextureCoords;
51 53
52 GR_DECLARE_GEOMETRY_PROCESSOR_TEST; 54 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
53 55
54 typedef GrGeometryProcessor INHERITED; 56 typedef GrGeometryProcessor INHERITED;
55 }; 57 };
56 58
57 #endif 59 #endif
OLDNEW
« no previous file with comments | « src/gpu/effects/GrConvolutionEffect.cpp ('k') | src/gpu/effects/GrCustomCoordsTextureEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698