| OLD | NEW |
| 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 #include "GrGLVertexBuffer.h" | 8 #include "GrGLVertexBuffer.h" |
| 9 #include "GrGLGpu.h" | 9 #include "GrGLGpu.h" |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 void GrGLVertexBuffer::onAbandon() { | 25 void GrGLVertexBuffer::onAbandon() { |
| 26 fImpl.abandon(); | 26 fImpl.abandon(); |
| 27 INHERITED::onAbandon(); | 27 INHERITED::onAbandon(); |
| 28 } | 28 } |
| 29 | 29 |
| 30 void* GrGLVertexBuffer::onMap() { | 30 void* GrGLVertexBuffer::onMap() { |
| 31 if (!this->wasDestroyed()) { | 31 if (!this->wasDestroyed()) { |
| 32 return fImpl.map(this->getGpuGL()); | 32 return fImpl.map(this->getGpuGL()); |
| 33 } else { | 33 } else { |
| 34 return NULL; | 34 return nullptr; |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 void GrGLVertexBuffer::onUnmap() { | 38 void GrGLVertexBuffer::onUnmap() { |
| 39 if (!this->wasDestroyed()) { | 39 if (!this->wasDestroyed()) { |
| 40 fImpl.unmap(this->getGpuGL()); | 40 fImpl.unmap(this->getGpuGL()); |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 bool GrGLVertexBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { | 44 bool GrGLVertexBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { |
| 45 if (!this->wasDestroyed()) { | 45 if (!this->wasDestroyed()) { |
| 46 return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes); | 46 return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes); |
| 47 } else { | 47 } else { |
| 48 return false; | 48 return false; |
| 49 } | 49 } |
| 50 } | 50 } |
| OLD | NEW |