OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 GrGLProcessor_DEFINED | 8 #ifndef GrGLProcessor_DEFINED |
9 #define GrGLProcessor_DEFINED | 9 #define GrGLProcessor_DEFINED |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
109 parameter is guaranteed to be of the same type that created this GrGLFra gmentProcessor and | 109 parameter is guaranteed to be of the same type that created this GrGLFra gmentProcessor and |
110 to have an identical processor key as the one that created this GrGLFrag mentProcessor. */ | 110 to have an identical processor key as the one that created this GrGLFrag mentProcessor. */ |
111 // TODO update this to pass in GrFragmentProcessor | 111 // TODO update this to pass in GrFragmentProcessor |
112 virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) {} | 112 virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) {} |
113 | 113 |
114 static void GenKey(const GrProcessor&, const GrGLCaps&, GrProcessorKeyBuilde r*) {} | 114 static void GenKey(const GrProcessor&, const GrGLCaps&, GrProcessorKeyBuilde r*) {} |
115 | 115 |
116 private: | 116 private: |
117 typedef GrGLProcessor INHERITED; | 117 typedef GrGLProcessor INHERITED; |
118 }; | 118 }; |
119 | 119 /* |
120 class GrGLXferProcessor : public GrGLFragmentProcessor { | 120 class GrGLXferProcessor : public GrGLFragmentProcessor { |
121 public: | 121 public: |
122 GrGLXferProcessor() {} | 122 GrGLXferProcessor() {} |
123 | 123 |
124 virtual ~GrGLXferProcessor() {} | 124 virtual ~GrGLXferProcessor() {} |
125 | 125 |
126 private: | 126 private: |
127 typedef GrGLFragmentProcessor INHERITED; | 127 typedef GrGLFragmentProcessor INHERITED; |
128 }; | 128 }; |
129 | 129 */ |
joshualitt
2014/12/08 19:46:41
is this supposed to be commented out?
bsalomon
2014/12/08 19:58:59
seems like it can be deleted.
egdaniel
2014/12/09 21:10:46
Done.
| |
130 #endif | 130 #endif |
OLD | NEW |