| commit | d364554bcfd391c3b6111af8bff963a35ab87ba7 | [log] [tgz] |
|---|---|---|
| author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Sep 05 18:37:39 2012 +0000 |
| committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Sep 05 18:37:39 2012 +0000 |
| tree | 18e5c6ed646c22b9ca1effcf86b16bb148eb0066 | |
| parent | 981b33abc65d968523d78d45e69cb071e8e03e91 [diff] [blame] |
Enforce calling of inherited onRelease & onAbandon mthds in GrResource-derived classes http://codereview.appspot.com/6499077/ git-svn-id: http://skia.googlecode.com/svn/trunk@5405 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/gl/GrGLPath.cpp b/src/gpu/gl/GrGLPath.cpp index 95e11f2..5324dcd 100644 --- a/src/gpu/gl/GrGLPath.cpp +++ b/src/gpu/gl/GrGLPath.cpp
@@ -94,9 +94,13 @@ GL_CALL(DeletePaths(fPathID, 1)); fPathID = 0; } + + INHERITED::onRelease(); } void GrGLPath::onAbandon() { fPathID = 0; + + INHERITED::onAbandon(); }