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

Side by Side Diff: src/gpu/gl/builders/GrGLProgramBuilder.h

Issue 739133004: Small cleanups after GrDrawState/GrOptDrawState base class elimination. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update Created 6 years, 1 month 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/GrGpuGL.cpp ('k') | no next file » | 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 2014 Google Inc. 2 * Copyright 2014 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 GrGLProgramBuilder_DEFINED 8 #ifndef GrGLProgramBuilder_DEFINED
9 #define GrGLProgramBuilder_DEFINED 9 #define GrGLProgramBuilder_DEFINED
10 10
11 #include "GrGLFragmentShaderBuilder.h" 11 #include "GrGLFragmentShaderBuilder.h"
12 #include "GrGLGeometryShaderBuilder.h" 12 #include "GrGLGeometryShaderBuilder.h"
13 #include "GrGLVertexShaderBuilder.h" 13 #include "GrGLVertexShaderBuilder.h"
14 #include "../GrGLProgramDataManager.h" 14 #include "../GrGLProgramDataManager.h"
15 #include "../GrGLUniformHandle.h" 15 #include "../GrGLUniformHandle.h"
16 #include "../GrGLGeometryProcessor.h" 16 #include "../GrGLGeometryProcessor.h"
17 #include "../../GrOptDrawState.h"
17 #include "../../GrPendingFragmentStage.h" 18 #include "../../GrPendingFragmentStage.h"
18 19
19 /* 20 /*
20 * This is the base class for a series of interfaces. This base class *MUST* re main abstract with 21 * This is the base class for a series of interfaces. This base class *MUST* re main abstract with
21 * NO data members because it is used in multiple interface inheritance. 22 * NO data members because it is used in multiple interface inheritance.
22 * Heirarchy: 23 * Heirarchy:
23 * GrGLUniformBuilder 24 * GrGLUniformBuilder
24 * / \ 25 * / \
25 * GrGLFPBuilder GrGLGPBuilder 26 * GrGLFPBuilder GrGLGPBuilder
26 * \ / 27 * \ /
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 SkSTArray<2, Transform, true> fTransforms; 403 SkSTArray<2, Transform, true> fTransforms;
403 bool fLocalCoordAttrib; 404 bool fLocalCoordAttrib;
404 }; 405 };
405 406
406 struct GrGLInstalledFragProcs : public SkRefCnt { 407 struct GrGLInstalledFragProcs : public SkRefCnt {
407 virtual ~GrGLInstalledFragProcs(); 408 virtual ~GrGLInstalledFragProcs();
408 SkSTArray<8, GrGLInstalledFragProc*, true> fProcs; 409 SkSTArray<8, GrGLInstalledFragProc*, true> fProcs;
409 }; 410 };
410 411
411 #endif 412 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGpuGL.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698