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

Side by Side Diff: src/gpu/vk/GrVkTransferBuffer.cpp

Issue 1854283004: Track GL buffer state based on unique resource ID (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix for GR_GL_USE_BUFFER_DATA_NULL_HINT=0 Created 4 years, 8 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/vk/GrVkIndexBuffer.cpp ('k') | src/gpu/vk/GrVkVertexBuffer.cpp » ('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 2015 Google Inc. 2 * Copyright 2015 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 "GrVkTransferBuffer.h" 8 #include "GrVkTransferBuffer.h"
9 #include "GrVkGpu.h" 9 #include "GrVkGpu.h"
10 #include "SkTraceMemoryDump.h" 10 #include "SkTraceMemoryDump.h"
(...skipping 13 matching lines...) Expand all
24 24
25 GrVkTransferBuffer* buffer = new GrVkTransferBuffer(gpu, desc, bufferResourc e); 25 GrVkTransferBuffer* buffer = new GrVkTransferBuffer(gpu, desc, bufferResourc e);
26 if (!buffer) { 26 if (!buffer) {
27 bufferResource->unref(gpu); 27 bufferResource->unref(gpu);
28 } 28 }
29 return buffer; 29 return buffer;
30 } 30 }
31 31
32 GrVkTransferBuffer::GrVkTransferBuffer(GrVkGpu* gpu, const GrVkBuffer::Desc& des c, 32 GrVkTransferBuffer::GrVkTransferBuffer(GrVkGpu* gpu, const GrVkBuffer::Desc& des c,
33 const GrVkBuffer::Resource* bufferResourc e) 33 const GrVkBuffer::Resource* bufferResourc e)
34 : INHERITED(gpu, kCopyRead_Type == desc.fType ? 34 : INHERITED(gpu, desc.fSizeInBytes,
35 kXferCpuToGpu_GrBufferType : kXferGpuToCpu_GrBufferType, 35 kCopyRead_Type == desc.fType ?
36 desc.fSizeInBytes, kStream_GrAccessPattern, false) 36 kXferCpuToGpu_GrBufferType : kXferGpuToCpu_GrBufferType,
37 kStream_GrAccessPattern, false)
37 , GrVkBuffer(desc, bufferResource) { 38 , GrVkBuffer(desc, bufferResource) {
38 this->registerWithCache(); 39 this->registerWithCache();
39 } 40 }
40 41
41 void GrVkTransferBuffer::onRelease() { 42 void GrVkTransferBuffer::onRelease() {
42 if (!this->wasDestroyed()) { 43 if (!this->wasDestroyed()) {
43 this->vkRelease(this->getVkGpu()); 44 this->vkRelease(this->getVkGpu());
44 } 45 }
45 46
46 INHERITED::onRelease(); 47 INHERITED::onRelease();
47 } 48 }
48 49
49 void GrVkTransferBuffer::onAbandon() { 50 void GrVkTransferBuffer::onAbandon() {
50 this->vkAbandon(); 51 this->vkAbandon();
51 INHERITED::onAbandon(); 52 INHERITED::onAbandon();
52 } 53 }
53 54
54 void GrVkTransferBuffer::setMemoryBacking(SkTraceMemoryDump* traceMemoryDump, 55 void GrVkTransferBuffer::setMemoryBacking(SkTraceMemoryDump* traceMemoryDump,
55 const SkString& dumpName) const { 56 const SkString& dumpName) const {
56 SkString buffer_id; 57 SkString buffer_id;
57 buffer_id.appendU64((uint64_t)this->buffer()); 58 buffer_id.appendU64((uint64_t)this->buffer());
58 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "vk_buffer", 59 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "vk_buffer",
59 buffer_id.c_str()); 60 buffer_id.c_str());
60 } 61 }
OLDNEW
« no previous file with comments | « src/gpu/vk/GrVkIndexBuffer.cpp ('k') | src/gpu/vk/GrVkVertexBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698