aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGeometryProcessor.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-05-14 10:09:13 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-14 10:09:14 -0700
commite578a95d3ab16544794b94da4e7ae13fc2ce6244 (patch)
treeaaa10af66b9f6acee7444e827b91825ae2fa313d /src/gpu/GrGeometryProcessor.h
parent5b9f352ff1e245dd48e200f8f8b683f4569547d3 (diff)
Remove viewmatrix from GrGeometryProcessor base class
Diffstat (limited to 'src/gpu/GrGeometryProcessor.h')
-rw-r--r--src/gpu/GrGeometryProcessor.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gpu/GrGeometryProcessor.h b/src/gpu/GrGeometryProcessor.h
index 1c7fc9989b..4458a3213a 100644
--- a/src/gpu/GrGeometryProcessor.h
+++ b/src/gpu/GrGeometryProcessor.h
@@ -19,9 +19,8 @@
*/
class GrGeometryProcessor : public GrPrimitiveProcessor {
public:
- GrGeometryProcessor(const SkMatrix& viewMatrix = SkMatrix::I(),
- const SkMatrix& localMatrix = SkMatrix::I())
- : INHERITED(viewMatrix, localMatrix, false)
+ GrGeometryProcessor(const SkMatrix& localMatrix = SkMatrix::I())
+ : INHERITED(localMatrix, false)
, fWillUseGeoShader(false)
, fHasLocalCoords(false) {}