| Index: tests/GLProgramsTest.cpp
|
| diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp
|
| index b2204b4b2b68f2f3a98f1c54757a7e471d23dd69..ed74ae8f6a65ae828a3c0727580ae1622d6b03db 100644
|
| --- a/tests/GLProgramsTest.cpp
|
| +++ b/tests/GLProgramsTest.cpp
|
| @@ -61,14 +61,14 @@ public:
|
| return SkRef(gBigKeyProcessor);
|
| }
|
|
|
| - const char* name() const SK_OVERRIDE { return "Big Ole Key"; }
|
| + const char* name() const override { return "Big Ole Key"; }
|
|
|
| virtual void getGLProcessorKey(const GrGLCaps& caps,
|
| - GrProcessorKeyBuilder* b) const SK_OVERRIDE {
|
| + GrProcessorKeyBuilder* b) const override {
|
| GLBigKeyProcessor::GenKey(*this, caps, b);
|
| }
|
|
|
| - GrGLFragmentProcessor* createGLInstance() const SK_OVERRIDE {
|
| + GrGLFragmentProcessor* createGLInstance() const override {
|
| return SkNEW_ARGS(GLBigKeyProcessor, (*this));
|
| }
|
|
|
| @@ -76,8 +76,8 @@ private:
|
| BigKeyProcessor() {
|
| this->initClassID<BigKeyProcessor>();
|
| }
|
| - bool onIsEqual(const GrFragmentProcessor&) const SK_OVERRIDE { return true; }
|
| - void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE { }
|
| + bool onIsEqual(const GrFragmentProcessor&) const override { return true; }
|
| + void onComputeInvariantOutput(GrInvariantOutput* inout) const override { }
|
|
|
| GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
|
|
|
|
|