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 "GrGLIndexBuffer.h" | 8 #include "GrGLIndexBuffer.h" |
9 #include "GrGLGpu.h" | 9 #include "GrGLGpu.h" |
| 10 #include "SkTraceMemoryDump.h" |
10 | 11 |
11 GrGLIndexBuffer::GrGLIndexBuffer(GrGLGpu* gpu, const Desc& desc) | 12 GrGLIndexBuffer::GrGLIndexBuffer(GrGLGpu* gpu, const Desc& desc) |
12 : INHERITED(gpu, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID) | 13 : INHERITED(gpu, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID) |
13 , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) { | 14 , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) { |
14 this->registerWithCache(); | 15 this->registerWithCache(); |
15 } | 16 } |
16 | 17 |
17 void GrGLIndexBuffer::onRelease() { | 18 void GrGLIndexBuffer::onRelease() { |
18 if (!this->wasDestroyed()) { | 19 if (!this->wasDestroyed()) { |
19 fImpl.release(this->getGpuGL()); | 20 fImpl.release(this->getGpuGL()); |
(...skipping 21 matching lines...) Expand all Loading... |
41 } | 42 } |
42 } | 43 } |
43 | 44 |
44 bool GrGLIndexBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { | 45 bool GrGLIndexBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { |
45 if (!this->wasDestroyed()) { | 46 if (!this->wasDestroyed()) { |
46 return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes); | 47 return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes); |
47 } else { | 48 } else { |
48 return false; | 49 return false; |
49 } | 50 } |
50 } | 51 } |
| 52 |
| 53 void GrGLIndexBuffer::setMemoryBacking(SkTraceMemoryDump* traceMemoryDump, |
| 54 const SkString& dumpName) const { |
| 55 SkString buffer_id; |
| 56 buffer_id.appendU32(this->bufferID()); |
| 57 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "gl_buffer", |
| 58 buffer_id.c_str()); |
| 59 } |
OLD | NEW |