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

Side by Side Diff: src/gpu/gl/GrGLProcessor.h

Issue 764643004: Create xfer processor backend. (Closed) Base URL: https://skia.googlesource.com/skia.git@xferBlendSolo
Patch Set: Blend off ODS and only on XP 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
« no previous file with comments | « src/gpu/effects/GrPorterDuffXferProcessor.cpp ('k') | src/gpu/gl/GrGLProgram.h » ('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 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 {
121 public:
122 GrGLXferProcessor() {}
123
124 virtual ~GrGLXferProcessor() {}
125
126 private:
127 typedef GrGLFragmentProcessor INHERITED;
128 };
129
130 #endif 120 #endif
OLDNEW
« no previous file with comments | « src/gpu/effects/GrPorterDuffXferProcessor.cpp ('k') | src/gpu/gl/GrGLProgram.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698