Index: src/core/SkPictureRecorder.cpp |
=================================================================== |
--- src/core/SkPictureRecorder.cpp (revision 0) |
+++ src/core/SkPictureRecorder.cpp (revision 0) |
@@ -0,0 +1,15 @@ |
+/* |
+ * Copyright 2014 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#include "SkPictureRecorder.h" |
+ |
+SkCanvas* SkPictureRecorder::beginRecording(int width, int height, |
+ SkBBHFactory* bbhFactory /* = NULL */, |
+ uint32_t recordFlags /* = 0 */) { |
+ fPicture.reset(SkNEW(SkPicture)); |
+ return fPicture->beginRecording(width, height, bbhFactory, recordFlags); |
+} |
Property changes on: src\core\SkPictureRecorder.cpp |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |