aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGeometryProcessor.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-05-15 07:56:07 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-15 07:56:07 -0700
commite3ababe44315452cd33b96a18ce316ede09ff3c3 (patch)
treee7ba40200bc0ab12d3ad1bb2f013904599399638 /src/gpu/GrGeometryProcessor.h
parentc77f6af7c3ca08c94b882ccb2fbd61e6bae7ea42 (diff)
remove localmatrix from GrGeometryProcessor base class
Diffstat (limited to 'src/gpu/GrGeometryProcessor.h')
-rw-r--r--src/gpu/GrGeometryProcessor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrGeometryProcessor.h b/src/gpu/GrGeometryProcessor.h
index 4458a3213a..eee286b20d 100644
--- a/src/gpu/GrGeometryProcessor.h
+++ b/src/gpu/GrGeometryProcessor.h
@@ -19,8 +19,8 @@
*/
class GrGeometryProcessor : public GrPrimitiveProcessor {
public:
- GrGeometryProcessor(const SkMatrix& localMatrix = SkMatrix::I())
- : INHERITED(localMatrix, false)
+ GrGeometryProcessor()
+ : INHERITED(false)
, fWillUseGeoShader(false)
, fHasLocalCoords(false) {}