aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLProgram.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-01-21 10:16:17 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-21 10:16:18 -0800
commitb77e4b6bf08b1619982d0a835ab4daf693aefcb6 (patch)
treeb7bfdbd2af809cb3eb1c4e574a8d7d4e19b4dd5c /src/gpu/gl/GrGLProgram.h
parentfb62b3d423fa34c672df42f47017dbef087d19e9 (diff)
remove drawType from optState
Diffstat (limited to 'src/gpu/gl/GrGLProgram.h')
-rw-r--r--src/gpu/gl/GrGLProgram.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/gl/GrGLProgram.h b/src/gpu/gl/GrGLProgram.h
index bd4d6a33ae..cce6c2a4d3 100644
--- a/src/gpu/gl/GrGLProgram.h
+++ b/src/gpu/gl/GrGLProgram.h
@@ -128,7 +128,7 @@ protected:
* Legacy NVPR needs a hook here to flush path tex gen settings.
* TODO when legacy nvpr is removed, remove this call.
*/
- virtual void didSetData(GrGpu::DrawType);
+ virtual void didSetData() {}
// Helper for setData() that sets the view matrix and loads the render target height uniform
void setRenderTargetState(const GrPrimitiveProcessor&, const GrOptDrawState&);
@@ -175,7 +175,7 @@ protected:
GrGLInstalledFragProcs* fragmentProcessors);
private:
- void didSetData(GrGpu::DrawType) SK_OVERRIDE;
+ void didSetData() SK_OVERRIDE;
virtual void setTransformData(const GrPrimitiveProcessor&,
const GrPendingFragmentStage&,
int index,