aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLProgramDesc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/GrGLProgramDesc.h')
-rw-r--r--src/gpu/gl/GrGLProgramDesc.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gpu/gl/GrGLProgramDesc.h b/src/gpu/gl/GrGLProgramDesc.h
index edf139e3a8..3b8093d53d 100644
--- a/src/gpu/gl/GrGLProgramDesc.h
+++ b/src/gpu/gl/GrGLProgramDesc.h
@@ -41,6 +41,7 @@ public:
/**
* Builds a GL specific program descriptor
*
+ * @param GrPrimitiveProcessor The geometry
* @param GrOptDrawState The optimized drawstate. The descriptor will represent a program
* which this optstate can use to draw with. The optstate contains
* general draw information, as well as the specific color, geometry,
@@ -55,11 +56,13 @@ public:
* supported
* @param GrProgramDesc The built and finalized descriptor
**/
- static bool Build(const GrOptDrawState&,
+ static bool Build(GrProgramDesc*,
+ const GrPrimitiveProcessor&,
+ const GrOptDrawState&,
const GrProgramDesc::DescInfo&,
GrGpu::DrawType,
- GrGLGpu*,
- GrProgramDesc*);
+ const GrGLGpu*,
+ const GrBatchTracker&);
};
#endif