Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(815)

Side by Side Diff: tools/viewer/SKPSlide.cpp

Issue 2063883002: Revert of Add samples to Viewer. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/viewer/SKPSlide.h ('k') | tools/viewer/SampleSlide.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 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 "SKPSlide.h" 8 #include "SKPSlide.h"
9 9
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 30 matching lines...) Expand all
41 return nullptr; 41 return nullptr;
42 } 42 }
43 43
44 auto pic = SkPicture::MakeFromStream(stream.get()); 44 auto pic = SkPicture::MakeFromStream(stream.get());
45 if (!pic) { 45 if (!pic) {
46 SkDebugf("Could not read %s as an SkPicture.\n", path); 46 SkDebugf("Could not read %s as an SkPicture.\n", path);
47 } 47 }
48 return pic; 48 return pic;
49 } 49 }
50 50
51 void SKPSlide::load(SkScalar, SkScalar) { 51 void SKPSlide::load() {
52 fPic = read_picture(fPath.c_str()); 52 fPic = read_picture(fPath.c_str());
53 fCullRect = fPic->cullRect().roundOut(); 53 fCullRect = fPic->cullRect().roundOut();
54 } 54 }
55 55
56 void SKPSlide::unload() { 56 void SKPSlide::unload() {
57 fPic.reset(nullptr); 57 fPic.reset(nullptr);
58 } 58 }
OLDNEW
« no previous file with comments | « tools/viewer/SKPSlide.h ('k') | tools/viewer/SampleSlide.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698