Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: src/gpu/gl/GrGLVertexBuffer.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/gl/GrGLVertexArray.h ('k') | src/gpu/gl/SkNullGLContext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrGLVertexBuffer_DEFINED 8 #ifndef GrGLVertexBuffer_DEFINED
9 #define GrGLVertexBuffer_DEFINED 9 #define GrGLVertexBuffer_DEFINED
10 10
(...skipping 13 matching lines...) Expand all
24 GrGLuint bufferID() const { return fImpl.bufferID(); } 24 GrGLuint bufferID() const { return fImpl.bufferID(); }
25 size_t baseOffset() const { return fImpl.baseOffset(); } 25 size_t baseOffset() const { return fImpl.baseOffset(); }
26 26
27 void bind() const { 27 void bind() const {
28 if (!this->wasDestroyed()) { 28 if (!this->wasDestroyed()) {
29 fImpl.bind(this->getGpuGL()); 29 fImpl.bind(this->getGpuGL());
30 } 30 }
31 } 31 }
32 32
33 protected: 33 protected:
34 virtual void onAbandon() SK_OVERRIDE; 34 void onAbandon() SK_OVERRIDE;
35 virtual void onRelease() SK_OVERRIDE; 35 void onRelease() SK_OVERRIDE;
36 36
37 private: 37 private:
38 virtual void* onMap() SK_OVERRIDE; 38 void* onMap() SK_OVERRIDE;
39 virtual void onUnmap() SK_OVERRIDE; 39 void onUnmap() SK_OVERRIDE;
40 virtual bool onUpdateData(const void* src, size_t srcSizeInBytes) SK_OVERRID E; 40 bool onUpdateData(const void* src, size_t srcSizeInBytes) SK_OVERRIDE;
41 41
42 GrGLGpu* getGpuGL() const { 42 GrGLGpu* getGpuGL() const {
43 SkASSERT(!this->wasDestroyed()); 43 SkASSERT(!this->wasDestroyed());
44 return (GrGLGpu*)(this->getGpu()); 44 return (GrGLGpu*)(this->getGpu());
45 } 45 }
46 46
47 GrGLBufferImpl fImpl; 47 GrGLBufferImpl fImpl;
48 48
49 typedef GrVertexBuffer INHERITED; 49 typedef GrVertexBuffer INHERITED;
50 }; 50 };
51 51
52 #endif 52 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLVertexArray.h ('k') | src/gpu/gl/SkNullGLContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698