OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 GrGLUniformHandler_DEFINED | 8 #ifndef GrGLUniformHandler_DEFINED |
9 #define GrGLUniformHandler_DEFINED | 9 #define GrGLUniformHandler_DEFINED |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 | 48 |
49 const GrGLGpu* glGpu() const; | 49 const GrGLGpu* glGpu() const; |
50 | 50 |
51 typedef GrGLProgramDataManager::UniformInfo UniformInfo; | 51 typedef GrGLProgramDataManager::UniformInfo UniformInfo; |
52 typedef GrGLProgramDataManager::UniformInfoArray UniformInfoArray; | 52 typedef GrGLProgramDataManager::UniformInfoArray UniformInfoArray; |
53 | 53 |
54 UniformInfoArray fUniforms; | 54 UniformInfoArray fUniforms; |
55 | 55 |
56 friend class GrGLProgramBuilder; | 56 friend class GrGLProgramBuilder; |
57 | 57 |
58 typedef GrGLSLUniformHandler INHERITED; | 58 typedef GrGLSLUniformHandler INHERITED; |
59 }; | 59 }; |
60 | 60 |
61 #endif | 61 #endif |
OLD | NEW |