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

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

Issue 1870553002: Revert of Track GL buffer state based on unique resource ID (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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, desc.fSizeInBytes, 34 : INHERITED(gpu, kCopyRead_Type == desc.fType ?
35 kCopyRead_Type == desc.fType ? 35 kXferCpuToGpu_GrBufferType : kXferGpuToCpu_GrBufferType,
36 kXferCpuToGpu_GrBufferType : kXferGpuToCpu_GrBufferType, 36 desc.fSizeInBytes, kStream_GrAccessPattern, false)
37 kStream_GrAccessPattern, false)
38 , GrVkBuffer(desc, bufferResource) { 37 , GrVkBuffer(desc, bufferResource) {
39 this->registerWithCache(); 38 this->registerWithCache();
40 } 39 }
41 40
42 void GrVkTransferBuffer::onRelease() { 41 void GrVkTransferBuffer::onRelease() {
43 if (!this->wasDestroyed()) { 42 if (!this->wasDestroyed()) {
44 this->vkRelease(this->getVkGpu()); 43 this->vkRelease(this->getVkGpu());
45 } 44 }
46 45
47 INHERITED::onRelease(); 46 INHERITED::onRelease();
48 } 47 }
49 48
50 void GrVkTransferBuffer::onAbandon() { 49 void GrVkTransferBuffer::onAbandon() {
51 this->vkAbandon(); 50 this->vkAbandon();
52 INHERITED::onAbandon(); 51 INHERITED::onAbandon();
53 } 52 }
54 53
55 void GrVkTransferBuffer::setMemoryBacking(SkTraceMemoryDump* traceMemoryDump, 54 void GrVkTransferBuffer::setMemoryBacking(SkTraceMemoryDump* traceMemoryDump,
56 const SkString& dumpName) const { 55 const SkString& dumpName) const {
57 SkString buffer_id; 56 SkString buffer_id;
58 buffer_id.appendU64((uint64_t)this->buffer()); 57 buffer_id.appendU64((uint64_t)this->buffer());
59 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "vk_buffer", 58 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "vk_buffer",
60 buffer_id.c_str()); 59 buffer_id.c_str());
61 } 60 }
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