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

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

Issue 1438003003: Move all ShaderBuilder files to GLSL (Closed) Base URL: https://skia.googlesource.com/skia.git@glslProgBuild
Patch Set: nits Created 5 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
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 GrGLGeometryShaderBuilder_DEFINED
9 #define GrGLGeometryShaderBuilder_DEFINED
10
11 #include "GrGLShaderBuilder.h"
12
13 class GrGLSLVarying;
14
15 class GrGLGeometryBuilder : public GrGLShaderBuilder {
16 public:
17 GrGLGeometryBuilder(GrGLSLProgramBuilder* program);
18
19 private:
20 /*
21 * an internal call for GrGLFullProgramBuilder to add varyings
22 */
23 void addVarying(const char* name, GrSLPrecision precision, GrGLSLVarying*);
24
25 void onFinalize() override {}
26
27 friend class GrGLProgramBuilder;
28
29 typedef GrGLShaderBuilder INHERITED;
30 };
31
32 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/builders/GrGLFragmentShaderBuilder.cpp ('k') | src/gpu/gl/builders/GrGLGeometryShaderBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698