aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLGpuCommandBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/GrGLGpuCommandBuffer.h')
-rw-r--r--src/gpu/gl/GrGLGpuCommandBuffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/gl/GrGLGpuCommandBuffer.h b/src/gpu/gl/GrGLGpuCommandBuffer.h
index c45bf5f141..84e05a8998 100644
--- a/src/gpu/gl/GrGLGpuCommandBuffer.h
+++ b/src/gpu/gl/GrGLGpuCommandBuffer.h
@@ -84,14 +84,14 @@ public:
private:
GrGpu* gpu() override { return fGpu; }
- void onDraw(const GrPipeline& pipeline,
- const GrPrimitiveProcessor& primProc,
+ void onDraw(const GrPrimitiveProcessor& primProc,
+ const GrPipeline& pipeline,
const GrMesh mesh[],
const GrPipeline::DynamicState dynamicStates[],
int meshCount,
const SkRect& bounds) override {
SkASSERT(pipeline.renderTarget() == fRenderTarget);
- fGpu->draw(pipeline, primProc, mesh, dynamicStates, meshCount);
+ fGpu->draw(primProc, pipeline, mesh, dynamicStates, meshCount);
}
void onClear(const GrFixedClip& clip, GrColor color) override {