Index: src/gpu/gl/GrGLRenderTarget.h |
diff --git a/src/gpu/gl/GrGLRenderTarget.h b/src/gpu/gl/GrGLRenderTarget.h |
index 7e7349257f054ac44e8a32cd5626c1cf94e1041c..4d3061c4e487a29c1a4500805d3f7ddef360ee9a 100644 |
--- a/src/gpu/gl/GrGLRenderTarget.h |
+++ b/src/gpu/gl/GrGLRenderTarget.h |
@@ -42,7 +42,7 @@ public: |
GrGLuint textureFBOID() const { return fTexFBOID; } |
// override of GrRenderTarget |
- ResolveType getResolveType() const SK_OVERRIDE { |
+ ResolveType getResolveType() const override { |
if (!this->isMultisampled() || |
fRTFBOID == fTexFBOID) { |
// catches FBO 0 and non MSAA case |
@@ -55,7 +55,7 @@ public: |
} |
/** When we don't own the FBO ID we don't attempt to modify its attachments. */ |
- bool canAttemptStencilAttachment() const SK_OVERRIDE { return !fIsWrapped; } |
+ bool canAttemptStencilAttachment() const override { return !fIsWrapped; } |
protected: |
// The public constructor registers this object with the cache. However, only the most derived |
@@ -66,11 +66,11 @@ protected: |
void init(const GrSurfaceDesc&, const IDDesc&); |
- void onAbandon() SK_OVERRIDE; |
- void onRelease() SK_OVERRIDE; |
+ void onAbandon() override; |
+ void onRelease() override; |
// In protected because subclass GrGLTextureRenderTarget calls this version. |
- size_t onGpuMemorySize() const SK_OVERRIDE; |
+ size_t onGpuMemorySize() const override; |
private: |
GrGLuint fRTFBOID; |