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

Side by Side Diff: src/gpu/gl/GrGLIndexBuffer.cpp

Issue 275493004: Rename from "(un)lock" to "(un)map" for geometry buffers. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Address Rob's comments Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/gpu/gl/GrGLIndexBuffer.h ('k') | src/gpu/gl/GrGLVertexBuffer.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 #include "GrGLIndexBuffer.h" 8 #include "GrGLIndexBuffer.h"
9 #include "GrGpuGL.h" 9 #include "GrGpuGL.h"
10 10
11 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc) 11 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc)
12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == des c.fID) 12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == des c.fID)
13 , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) { 13 , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) {
14 } 14 }
15 15
16 void GrGLIndexBuffer::onRelease() { 16 void GrGLIndexBuffer::onRelease() {
17 if (!this->wasDestroyed()) { 17 if (!this->wasDestroyed()) {
18 fImpl.release(this->getGpuGL()); 18 fImpl.release(this->getGpuGL());
19 } 19 }
20 20
21 INHERITED::onRelease(); 21 INHERITED::onRelease();
22 } 22 }
23 23
24 void GrGLIndexBuffer::onAbandon() { 24 void GrGLIndexBuffer::onAbandon() {
25 fImpl.abandon(); 25 fImpl.abandon();
26 INHERITED::onAbandon(); 26 INHERITED::onAbandon();
27 } 27 }
28 28
29 void* GrGLIndexBuffer::lock() { 29 void* GrGLIndexBuffer::map() {
30 if (!this->wasDestroyed()) { 30 if (!this->wasDestroyed()) {
31 return fImpl.lock(this->getGpuGL()); 31 return fImpl.map(this->getGpuGL());
32 } else { 32 } else {
33 return NULL; 33 return NULL;
34 } 34 }
35 } 35 }
36 36
37 void* GrGLIndexBuffer::lockPtr() const { 37 void* GrGLIndexBuffer::mapPtr() const {
38 return fImpl.lockPtr(); 38 return fImpl.mapPtr();
39 } 39 }
40 40
41 void GrGLIndexBuffer::unlock() { 41 void GrGLIndexBuffer::unmap() {
42 if (!this->wasDestroyed()) { 42 if (!this->wasDestroyed()) {
43 fImpl.unlock(this->getGpuGL()); 43 fImpl.unmap(this->getGpuGL());
44 } 44 }
45 } 45 }
46 46
47 bool GrGLIndexBuffer::isLocked() const { 47 bool GrGLIndexBuffer::isMapped() const {
48 return fImpl.isLocked(); 48 return fImpl.isMapped();
49 } 49 }
50 50
51 bool GrGLIndexBuffer::updateData(const void* src, size_t srcSizeInBytes) { 51 bool GrGLIndexBuffer::updateData(const void* src, size_t srcSizeInBytes) {
52 if (!this->wasDestroyed()) { 52 if (!this->wasDestroyed()) {
53 return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes); 53 return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes);
54 } else { 54 } else {
55 return false; 55 return false;
56 } 56 }
57 } 57 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLIndexBuffer.h ('k') | src/gpu/gl/GrGLVertexBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698