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

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

Issue 611653002: Cleanup of shader building system (Closed) Base URL: https://skia.googlesource.com/skia.git@solo_gp
Patch Set: Created 6 years, 2 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/gl/GrGLProgramEffects.cpp ('k') | src/gpu/gl/GrGpuGL_program.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 2011 Google Inc. 2 * Copyright 2011 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 GrGpuGL_DEFINED 8 #ifndef GrGpuGL_DEFINED
9 #define GrGpuGL_DEFINED 9 #define GrGpuGL_DEFINED
10 10
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 bool hasExtension(const char* ext) const { return fGLContext.hasExtension(ex t); } 172 bool hasExtension(const char* ext) const { return fGLContext.hasExtension(ex t); }
173 173
174 static bool BlendCoeffReferencesConstant(GrBlendCoeff coeff); 174 static bool BlendCoeffReferencesConstant(GrBlendCoeff coeff);
175 175
176 class ProgramCache : public ::SkNoncopyable { 176 class ProgramCache : public ::SkNoncopyable {
177 public: 177 public:
178 ProgramCache(GrGpuGL* gpu); 178 ProgramCache(GrGpuGL* gpu);
179 ~ProgramCache(); 179 ~ProgramCache();
180 180
181 void abandon(); 181 void abandon();
182 GrGLProgram* getProgram(const GrOptDrawState& optState, 182 GrGLProgram* getProgram(const GrOptDrawState&,
183 const GrGLProgramDesc& desc, 183 const GrGLProgramDesc&,
184 DrawType,
184 const GrGeometryStage* geometryProcessor, 185 const GrGeometryStage* geometryProcessor,
185 const GrFragmentStage* colorStages[], 186 const GrFragmentStage* colorStages[],
186 const GrFragmentStage* coverageStages[]); 187 const GrFragmentStage* coverageStages[]);
187 188
188 private: 189 private:
189 enum { 190 enum {
190 // We may actually have kMaxEntries+1 shaders in the GL context beca use we create a new 191 // We may actually have kMaxEntries+1 shaders in the GL context beca use we create a new
191 // shader before evicting from the cache. 192 // shader before evicting from the cache.
192 kMaxEntries = 128, 193 kMaxEntries = 128,
193 kHashBits = 6, 194 kHashBits = 6,
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 443
443 // we record what stencil format worked last time to hopefully exit early 444 // we record what stencil format worked last time to hopefully exit early
444 // from our loop that tries stencil formats and calls check fb status. 445 // from our loop that tries stencil formats and calls check fb status.
445 int fLastSuccessfulStencilFmtIdx; 446 int fLastSuccessfulStencilFmtIdx;
446 447
447 typedef GrGpu INHERITED; 448 typedef GrGpu INHERITED;
448 friend class GrGLPathRendering; // For accessing setTextureUnit. 449 friend class GrGLPathRendering; // For accessing setTextureUnit.
449 }; 450 };
450 451
451 #endif 452 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLProgramEffects.cpp ('k') | src/gpu/gl/GrGpuGL_program.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698