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

Side by Side Diff: gm/copyTo4444.cpp

Issue 319473003: Clean up Test's resourcePath code. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: review Created 6 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 | « bench/SkBenchmark.cpp ('k') | gm/etc1bitmap.cpp » ('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 2013 Google Inc. 2 * Copyright 2013 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 "gm.h" 8 #include "gm.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkImageDecoder.h" 10 #include "SkImageDecoder.h"
(...skipping 12 matching lines...) Expand all
23 virtual SkString onShortName() { 23 virtual SkString onShortName() {
24 return SkString("copyTo4444"); 24 return SkString("copyTo4444");
25 } 25 }
26 26
27 virtual SkISize onISize() { 27 virtual SkISize onISize() {
28 return make_isize(1024, 512); 28 return make_isize(1024, 512);
29 } 29 }
30 30
31 virtual void onDraw(SkCanvas* canvas) { 31 virtual void onDraw(SkCanvas* canvas) {
32 SkBitmap bm, bm4444; 32 SkBitmap bm, bm4444;
33 SkString filename = SkOSPath::SkPathJoin( 33 SkString filename = SkOSPath::SkPathJoin(INHERITED::gResourcePath, "mand rill_512.png");
34 INHERITED::gResourcePath.c_str(), "mandrill_512.png");
35 if (!SkImageDecoder::DecodeFile(filename.c_str(), &bm, 34 if (!SkImageDecoder::DecodeFile(filename.c_str(), &bm,
36 SkBitmap::kARGB_8888_Config, 35 SkBitmap::kARGB_8888_Config,
37 SkImageDecoder::kDecodePixels_Mode)) { 36 SkImageDecoder::kDecodePixels_Mode)) {
38 SkDebugf("Could not decode the file. Did you forget to set the " 37 SkDebugf("Could not decode the file. Did you forget to set the "
39 "resourcePath?\n"); 38 "resourcePath?\n");
40 return; 39 return;
41 } 40 }
42 canvas->drawBitmap(bm, 0, 0); 41 canvas->drawBitmap(bm, 0, 0);
43 SkAssertResult(bm.copyTo(&bm4444, kARGB_4444_SkColorType)); 42 SkAssertResult(bm.copyTo(&bm4444, kARGB_4444_SkColorType));
44 canvas->drawBitmap(bm4444, SkIntToScalar(bm.width()), 0); 43 canvas->drawBitmap(bm4444, SkIntToScalar(bm.width()), 0);
45 } 44 }
46 45
47 private: 46 private:
48 typedef GM INHERITED; 47 typedef GM INHERITED;
49 }; 48 };
50 49
51 ////////////////////////////////////////////////////////////////////////////// 50 //////////////////////////////////////////////////////////////////////////////
52 51
53 static GM* MyFactory(void*) { return new CopyTo4444GM; } 52 static GM* MyFactory(void*) { return new CopyTo4444GM; }
54 static GMRegistry reg(MyFactory); 53 static GMRegistry reg(MyFactory);
55 54
56 } 55 }
OLDNEW
« no previous file with comments | « bench/SkBenchmark.cpp ('k') | gm/etc1bitmap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698