OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkAtomics.h" | 8 #include "SkAtomics.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkDrawable.h" | 10 #include "SkDrawable.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 } | 69 } |
70 | 70 |
71 ////////////////////////////////////////////////////////////////////////////////
///////// | 71 ////////////////////////////////////////////////////////////////////////////////
///////// |
72 | 72 |
73 #include "SkPictureRecorder.h" | 73 #include "SkPictureRecorder.h" |
74 | 74 |
75 SkPicture* SkDrawable::onNewPictureSnapshot() { | 75 SkPicture* SkDrawable::onNewPictureSnapshot() { |
76 SkPictureRecorder recorder; | 76 SkPictureRecorder recorder; |
77 | 77 |
78 const SkRect bounds = this->getBounds(); | 78 const SkRect bounds = this->getBounds(); |
79 SkCanvas* canvas = recorder.beginRecording(bounds, NULL, 0); | 79 SkCanvas* canvas = recorder.beginRecording(bounds, nullptr, 0); |
80 this->draw(canvas); | 80 this->draw(canvas); |
81 if (false) { | 81 if (false) { |
82 draw_bbox(canvas, bounds); | 82 draw_bbox(canvas, bounds); |
83 } | 83 } |
84 return recorder.endRecording(); | 84 return recorder.endRecording(); |
85 } | 85 } |
OLD | NEW |