aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLStencilAttachment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/GrGLStencilAttachment.cpp')
-rw-r--r--src/gpu/gl/GrGLStencilAttachment.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gpu/gl/GrGLStencilAttachment.cpp b/src/gpu/gl/GrGLStencilAttachment.cpp
index d72729dc10..15e531be84 100644
--- a/src/gpu/gl/GrGLStencilAttachment.cpp
+++ b/src/gpu/gl/GrGLStencilAttachment.cpp
@@ -8,6 +8,7 @@
#include "GrGLStencilAttachment.h"
#include "GrGLGpu.h"
+#include "SkTraceMemoryDump.h"
size_t GrGLStencilAttachment::onGpuMemorySize() const {
uint64_t size = this->width();
@@ -33,3 +34,11 @@ void GrGLStencilAttachment::onAbandon() {
INHERITED::onAbandon();
}
+
+void GrGLStencilAttachment::setMemoryBacking(SkTraceMemoryDump* traceMemoryDump,
+ const SkString& dumpName) const {
+ SkString renderbuffer_id;
+ renderbuffer_id.appendU32(this->renderbufferID());
+ traceMemoryDump->setMemoryBacking(dumpName.c_str(), "gl_renderbuffer",
+ renderbuffer_id.c_str());
+}