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

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

Issue 1862043002: Refactor to separate backend object lifecycle and GpuResource budget decision (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix unrelated GrBuffer::onGpuMemorySize() lack of override keyword compile error 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/gl/GrGLTextureRenderTarget.h ('k') | src/gpu/vk/GrVkGpu.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 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 "GrGLTextureRenderTarget.h" 8 #include "GrGLTextureRenderTarget.h"
9 9
10 #include "SkTraceMemoryDump.h" 10 #include "SkTraceMemoryDump.h"
(...skipping 19 matching lines...) Expand all
30 if (this->isPurgeable()) { 30 if (this->isPurgeable()) {
31 traceMemoryDump->dumpNumericValue(dumpName.c_str(), "purgeable_size", 31 traceMemoryDump->dumpNumericValue(dumpName.c_str(), "purgeable_size",
32 "bytes", size); 32 "bytes", size);
33 } 33 }
34 34
35 SkString texture_id; 35 SkString texture_id;
36 texture_id.appendU32(this->textureID()); 36 texture_id.appendU32(this->textureID());
37 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "gl_texture", 37 traceMemoryDump->setMemoryBacking(dumpName.c_str(), "gl_texture",
38 texture_id.c_str()); 38 texture_id.c_str());
39 } 39 }
40
41 bool GrGLTextureRenderTarget::canAttemptStencilAttachment() const {
42 // The RT FBO of GrGLTextureRenderTarget is never created from a
43 // wrapped FBO.
44 return true;
45 }
46
47 GrGLTextureRenderTarget* GrGLTextureRenderTarget::CreateWrapped(GrGLGpu* gpu,
48 const GrSurfaceD esc& desc,
49 const GrGLTextur e::IDDesc& texIDDesc,
50 const GrGLRender Target::IDDesc& rtIDDesc) {
51 return new GrGLTextureRenderTarget(gpu, desc, texIDDesc, rtIDDesc);
52 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLTextureRenderTarget.h ('k') | src/gpu/vk/GrVkGpu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698