aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/gpu/GrGeometryProcessor.h2
-rw-r--r--src/gpu/effects/GrCoverageSetOpXP.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/gpu/GrGeometryProcessor.h b/src/gpu/GrGeometryProcessor.h
index f3ae800b80..f3ec0b5af3 100644
--- a/src/gpu/GrGeometryProcessor.h
+++ b/src/gpu/GrGeometryProcessor.h
@@ -169,8 +169,6 @@ public:
, fHasVertexColor(false)
, fHasLocalCoords(false) {}
- virtual const char* name() const = 0;
-
/*
* This is a safeguard to prevent GPs from going beyond platform specific attribute limits.
* This number can almost certainly be raised if required.
diff --git a/src/gpu/effects/GrCoverageSetOpXP.h b/src/gpu/effects/GrCoverageSetOpXP.h
index 8f85d0688e..327d3c01f0 100644
--- a/src/gpu/effects/GrCoverageSetOpXP.h
+++ b/src/gpu/effects/GrCoverageSetOpXP.h
@@ -28,7 +28,7 @@ public:
~GrCoverageSetOpXP() SK_OVERRIDE;
- virtual const char* name() const { return "Coverage Set Op"; }
+ virtual const char* name() const SK_OVERRIDE { return "Coverage Set Op"; }
void getGLProcessorKey(const GrGLCaps& caps, GrProcessorKeyBuilder* b) const SK_OVERRIDE;