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

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

Issue 822423004: Move most of the transform logic into the primitive processors (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: cleanup Created 5 years, 11 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
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef GrGLLegacyNvprProgramBuilder_DEFINED
9 #define GrGLLegacyNvprProgramBuilder_DEFINED
10
11 #include "GrGLProgramBuilder.h"
12
13 class GrGLLegacyNvprProgramBuilder : public GrGLProgramBuilder {
14 public:
15 GrGLLegacyNvprProgramBuilder(GrGLGpu*, const GrOptDrawState&);
16
17 GrGLProgram* createProgram(GrGLuint programID) SK_OVERRIDE;
18
19 private:
20 int addTexCoordSets(int count);
21 void emitTransforms(const GrPendingFragmentStage&,
22 GrGLProcessor::TransformedCoordsArray* outCoords,
23 GrGLInstalledFragProc*) SK_OVERRIDE;
24
25 int fTexCoordSetCnt;
26
27 typedef GrGLProgramBuilder INHERITED;
28 };
29
30 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/builders/GrGLFragmentShaderBuilder.h ('k') | src/gpu/gl/builders/GrGLLegacyNvprProgramBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698