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

Side by Side Diff: src/gpu/glsl/GrGLSLUniformHandler.h

Issue 1490283004: Create GLSLUniformHandler class for gpu backend (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: clean up public api of uniformhandler Created 5 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/glsl/GrGLSLShaderBuilder.cpp ('k') | src/gpu/glsl/GrGLSLVertexShaderBuilder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 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 GrGLSLUniformHandler_DEFINED
9 #define GrGLSLUniformHandler_DEFINED
10
11 #include "GrGLSLProgramDataManager.h"
12 #include "GrGLSLShaderVar.h"
13
14 class GrGLSLProgramBuilder;
15
16 class GrGLSLUniformHandler {
17 public:
18 enum ShaderVisibility {
19 kVertex_Visibility = 1 << kVertex_GrShaderType,
20 kGeometry_Visibility = 1 << kGeometry_GrShaderType,
21 kFragment_Visibility = 1 << kFragment_GrShaderType,
22 };
23
24 virtual ~GrGLSLUniformHandler() {}
25
26 typedef GrGLSLProgramDataManager::UniformHandle UniformHandle;
27
28 /** Add a uniform variable to the current program, that has visibility in on e or more shaders.
29 visibility is a bitfield of ShaderVisibility values indicating from whic h shaders the
30 uniform should be accessible. At least one bit must be set. Geometry sha der uniforms are not
31 supported at this time. The actual uniform name will be mangled. If outN ame is not nullptr
32 then it will refer to the final uniform name after return. Use the addUn iformArray variant
33 to add an array of uniforms. */
34 UniformHandle addUniform(uint32_t visibility,
35 GrSLType type,
36 GrSLPrecision precision,
37 const char* name,
38 const char** outName = nullptr) {
39 return this->addUniformArray(visibility, type, precision, name, 0, outNa me);
40 }
41
42 UniformHandle addUniformArray(uint32_t visibility,
43 GrSLType type,
44 GrSLPrecision precision,
45 const char* name,
46 int arrayCount,
47 const char** outName = nullptr) {
48 return this->internalAddUniformArray(visibility, type, precision, name, true, arrayCount,
49 outName);
50 }
51
52 virtual const GrGLSLShaderVar& getUniformVariable(UniformHandle u) const = 0 ;
53
54 /**
55 * Shortcut for getUniformVariable(u).c_str()
56 */
57 virtual const char* getUniformCStr(UniformHandle u) const = 0;
58 protected:
59 explicit GrGLSLUniformHandler(GrGLSLProgramBuilder* program) : fProgramBuild er(program) {}
60
61 // This is not owned by the class
62 GrGLSLProgramBuilder* fProgramBuilder;
63
64 private:
65 virtual UniformHandle internalAddUniformArray(uint32_t visibility,
66 GrSLType type,
67 GrSLPrecision precision,
68 const char* name,
69 bool mangleName,
70 int arrayCount,
71 const char** outName) = 0;
72
73 virtual void appendUniformDecls(ShaderVisibility, SkString*) const = 0;
74
75 friend class GrGLSLProgramBuilder;
76 };
77
78 #endif
79
OLDNEW
« no previous file with comments | « src/gpu/glsl/GrGLSLShaderBuilder.cpp ('k') | src/gpu/glsl/GrGLSLVertexShaderBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698