OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |