commit | 49d9fd5fdb9ffd48538c8fc5a2f6f2d43a2e4fe9 | [log] [tgz] |
---|---|---|
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed May 23 11:44:08 2012 +0000 |
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed May 23 11:44:08 2012 +0000 |
tree | d9ac469c4bc3a933872276d3047d67b616efb507 | |
parent | af46cff4ee6099cebf3aa395805748af7d193a31 [diff] [blame] |
Plumbing to propagate save & restore from SkCanvas down to GrContext & lower http://codereview.appspot.com/6203067/ git-svn-id: http://skia.googlecode.com/svn/trunk@4034 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp index bd6d829..b45970b 100644 --- a/src/gpu/GrContext.cpp +++ b/src/gpu/GrContext.cpp
@@ -2216,4 +2216,12 @@ return srcTexture; } +void GrContext::postClipPush() { + fGpu->postClipPush(); +} + +void GrContext::preClipPop() { + fGpu->preClipPop(); +}; + ///////////////////////////////////////////////////////////////////////////////