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

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

Issue 914723002: Small change to use a GrGeometryProcessor for all BitmapText draw calls (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: adding bench Created 5 years, 10 months 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
« no previous file with comments | « src/gpu/GrBitmapTextContext.cpp ('k') | src/gpu/effects/GrBitmapTextGeoProc.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 GrBitmapTextGeoProc_DEFINED 8 #ifndef GrBitmapTextGeoProc_DEFINED
9 #define GrBitmapTextGeoProc_DEFINED 9 #define GrBitmapTextGeoProc_DEFINED
10 10
11 #include "GrProcessor.h" 11 #include "GrProcessor.h"
12 #include "GrGeometryProcessor.h" 12 #include "GrGeometryProcessor.h"
13 13
14 class GrGLBitmapTextGeoProc; 14 class GrGLBitmapTextGeoProc;
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 GrBitmapTextGeoProc : public GrGeometryProcessor { 22 class GrBitmapTextGeoProc : public GrGeometryProcessor {
23 public: 23 public:
24 static GrGeometryProcessor* Create(GrColor color, GrTexture* tex, const GrTe xtureParams& p, 24 static GrGeometryProcessor* Create(GrColor color, GrTexture* tex, const GrTe xtureParams& p,
25 bool useColorAttrib, bool opaqueVertexCol ors, 25 GrMaskFormat format, bool opaqueVertexCol ors,
26 const SkMatrix& localMatrix) { 26 const SkMatrix& localMatrix) {
27 return SkNEW_ARGS(GrBitmapTextGeoProc, (color, tex, p, useColorAttrib, o paqueVertexColors, 27 return SkNEW_ARGS(GrBitmapTextGeoProc, (color, tex, p, format, opaqueVer texColors,
28 localMatrix)); 28 localMatrix));
29 } 29 }
30 30
31 virtual ~GrBitmapTextGeoProc() {} 31 virtual ~GrBitmapTextGeoProc() {}
32 32
33 const char* name() const SK_OVERRIDE { return "Texture"; } 33 const char* name() const SK_OVERRIDE { return "Texture"; }
34 34
35 const Attribute* inPosition() const { return fInPosition; } 35 const Attribute* inPosition() const { return fInPosition; }
36 const Attribute* inColor() const { return fInColor; } 36 const Attribute* inColor() const { return fInColor; }
37 const Attribute* inTextureCoords() const { return fInTextureCoords; } 37 const Attribute* inTextureCoords() const { return fInTextureCoords; }
38 GrMaskFormat maskFormat() const { return fMaskFormat; }
38 39
39 virtual void getGLProcessorKey(const GrBatchTracker& bt, 40 virtual void getGLProcessorKey(const GrBatchTracker& bt,
40 const GrGLCaps& caps, 41 const GrGLCaps& caps,
41 GrProcessorKeyBuilder* b) const SK_OVERRIDE; 42 GrProcessorKeyBuilder* b) const SK_OVERRIDE;
42 43
43 virtual GrGLPrimitiveProcessor* createGLInstance(const GrBatchTracker& bt, 44 virtual GrGLPrimitiveProcessor* createGLInstance(const GrBatchTracker& bt,
44 const GrGLCaps& caps) const SK_OVERRIDE; 45 const GrGLCaps& caps) const SK_OVERRIDE;
45 46
46 void initBatchTracker(GrBatchTracker*, const GrPipelineInfo&) const SK_OVERR IDE; 47 void initBatchTracker(GrBatchTracker*, const GrPipelineInfo&) const SK_OVERR IDE;
47 bool onCanMakeEqual(const GrBatchTracker&, 48 bool onCanMakeEqual(const GrBatchTracker&,
48 const GrGeometryProcessor&, 49 const GrGeometryProcessor&,
49 const GrBatchTracker&) const SK_OVERRIDE; 50 const GrBatchTracker&) const SK_OVERRIDE;
50 51
51 private: 52 private:
52 GrBitmapTextGeoProc(GrColor, GrTexture* texture, const GrTextureParams& para ms, 53 GrBitmapTextGeoProc(GrColor, GrTexture* texture, const GrTextureParams& para ms,
53 bool useColorAttrib, bool opaqueVertexColors, const SkMa trix& localMatrix); 54 GrMaskFormat format, bool opaqueVertexColors, const SkMa trix& localMatrix);
54 55
55 bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE; 56 bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
56 57
58 void onGetInvariantOutputColor(GrInitInvariantOutput*) const SK_OVERRIDE;
59
57 void onGetInvariantOutputCoverage(GrInitInvariantOutput*) const SK_OVERRIDE; 60 void onGetInvariantOutputCoverage(GrInitInvariantOutput*) const SK_OVERRIDE;
58 61
59 GrTextureAccess fTextureAccess; 62 GrTextureAccess fTextureAccess;
60 const Attribute* fInPosition; 63 const Attribute* fInPosition;
61 const Attribute* fInColor; 64 const Attribute* fInColor;
62 const Attribute* fInTextureCoords; 65 const Attribute* fInTextureCoords;
66 GrMaskFormat fMaskFormat;
63 67
64 GR_DECLARE_GEOMETRY_PROCESSOR_TEST; 68 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
65 69
66 typedef GrGeometryProcessor INHERITED; 70 typedef GrGeometryProcessor INHERITED;
67 }; 71 };
68 72
69 #endif 73 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrBitmapTextContext.cpp ('k') | src/gpu/effects/GrBitmapTextGeoProc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698