OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 GrGLProgramDesc_DEFINED | 8 #ifndef GrGLProgramDesc_DEFINED |
9 #define GrGLProgramDesc_DEFINED | 9 #define GrGLProgramDesc_DEFINED |
10 | 10 |
(...skipping 41 matching lines...) Loading... |
52 * general draw information, as well as the specific
color, geometry, | 52 * general draw information, as well as the specific
color, geometry, |
53 * and coverage stages which will be used to generate
the GL Program for | 53 * and coverage stages which will be used to generate
the GL Program for |
54 * this optstate. | 54 * this optstate. |
55 * @param GrGLGpu A GL Gpu, the caps and Gpu object are used to output proc
essor specific | 55 * @param GrGLGpu A GL Gpu, the caps and Gpu object are used to output proc
essor specific |
56 * parts of the descriptor. | 56 * parts of the descriptor. |
57 * @param GrProgramDesc The built and finalized descriptor | 57 * @param GrProgramDesc The built and finalized descriptor |
58 **/ | 58 **/ |
59 static bool Build(GrProgramDesc*, | 59 static bool Build(GrProgramDesc*, |
60 const GrPrimitiveProcessor&, | 60 const GrPrimitiveProcessor&, |
61 const GrPipeline&, | 61 const GrPipeline&, |
62 const GrGLGpu*, | 62 const GrGLGpu*); |
63 const GrBatchTracker&); | |
64 }; | 63 }; |
65 | 64 |
66 #endif | 65 #endif |
OLD | NEW |