Add GrSurface::savePixels().

R=bsalomon@google.com

Author: jvanverth@google.com

Review URL: https://codereview.chromium.org/25021006

git-svn-id: http://skia.googlecode.com/svn/trunk/include@11528 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gpu/GrSurface.h b/gpu/GrSurface.h
index 3aa498b..c401a90 100644
--- a/gpu/GrSurface.h
+++ b/gpu/GrSurface.h
@@ -126,6 +126,12 @@
                              size_t rowBytes = 0,
                              uint32_t pixelOpsFlags = 0) = 0;
 
+    /**
+     * Write the contents of the surface to a PNG. Returns true if successful.
+     * @param filename      Full path to desired file
+     */
+    bool savePixels(const char* filename);
+
 protected:
     GrSurface(GrGpu* gpu, bool isWrapped, const GrTextureDesc& desc)
     : INHERITED(gpu, isWrapped)