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 26 matching lines...) Expand all Loading... |
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 | 40 |
41 bool GrGLTextureRenderTarget::canAttemptStencilAttachment() const { | 41 bool GrGLTextureRenderTarget::canAttemptStencilAttachment() const { |
42 // The RT FBO of GrGLTextureRenderTarget is never created from a | 42 // The RT FBO of GrGLTextureRenderTarget is never created from a |
43 // wrapped FBO. | 43 // wrapped FBO. |
44 return true; | 44 return true; |
45 } | 45 } |
46 | 46 |
47 GrGLTextureRenderTarget* GrGLTextureRenderTarget::CreateWrapped(GrGLGpu* gpu, | 47 sk_sp<GrGLTextureRenderTarget> GrGLTextureRenderTarget::MakeWrapped( |
48 const GrSurfaceD
esc& desc, | 48 GrGLGpu* gpu, const GrSurfaceDesc& desc, |
49 const GrGLTextur
e::IDDesc& texIDDesc, | 49 const GrGLTexture::IDDesc& texIDDesc, const GrGLRenderTarget::IDDesc& rtIDDe
sc) |
50 const GrGLRender
Target::IDDesc& rtIDDesc) { | 50 { |
51 return new GrGLTextureRenderTarget(gpu, desc, texIDDesc, rtIDDesc); | 51 return sk_sp<GrGLTextureRenderTarget>( |
| 52 new GrGLTextureRenderTarget(gpu, desc, texIDDesc, rtIDDesc)); |
52 } | 53 } |
OLD | NEW |