Index: src/gpu/gl/GrGLIndexBuffer.h |
diff --git a/src/gpu/gl/GrGLIndexBuffer.h b/src/gpu/gl/GrGLIndexBuffer.h |
index 3960f584379b9d2bbc24cf5f831dd66a8b53c897..5d5de43eee4c3a01ef1dadc392d20695302d2e97 100644 |
--- a/src/gpu/gl/GrGLIndexBuffer.h |
+++ b/src/gpu/gl/GrGLIndexBuffer.h |
@@ -31,19 +31,15 @@ public: |
} |
} |
- // overrides of GrIndexBuffer |
- virtual void* map() SK_OVERRIDE; |
- virtual void* mapPtr() const SK_OVERRIDE; |
- virtual void unmap() SK_OVERRIDE; |
- virtual bool isMapped() const SK_OVERRIDE; |
- virtual bool updateData(const void* src, size_t srcSizeInBytes); |
- |
protected: |
- // overrides of GrResource |
virtual void onAbandon() SK_OVERRIDE; |
virtual void onRelease() SK_OVERRIDE; |
private: |
+ virtual void* onMap() SK_OVERRIDE; |
+ virtual void onUnmap() SK_OVERRIDE; |
+ virtual bool onUpdateData(const void* src, size_t srcSizeInBytes) SK_OVERRIDE; |
+ |
GrGpuGL* getGpuGL() const { |
SkASSERT(!this->wasDestroyed()); |
return (GrGpuGL*)(this->getGpu()); |