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

Side by Side Diff: gm/colorwheel.cpp

Issue 1020103005: Preserve texture compression when saving a revised skp from debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: clean up Created 5 years, 9 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 | « debugger/QT/SkDebuggerGUI.cpp ('k') | gm/displacement.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 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 "sk_tool_utils.h"
9 #include "Resources.h" 8 #include "Resources.h"
10 #include "SkData.h" 9 #include "SkData.h"
11 #include "gm.h" 10 #include "gm.h"
12 #include "sk_tool_utils.h" 11 #include "sk_tool_utils.h"
13 12
14 static void draw_bitmap(SkCanvas* canvas, const char* resource, int x, int y) { 13 static void draw_bitmap(SkCanvas* canvas, const char* resource, int x, int y) {
15 SkBitmap bitmap; 14 SkBitmap bitmap;
16 if (GetResourceAsBitmap(resource, &bitmap)) { 15 if (GetResourceAsBitmap(resource, &bitmap)) {
17 canvas->drawBitmap(bitmap, SkIntToScalar(x), SkIntToScalar(y)); 16 canvas->drawBitmap(bitmap, SkIntToScalar(x), SkIntToScalar(y));
18 } else { 17 } else {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 canvas->drawText("B", 1, 40.0f, 20.0f, paint); 51 canvas->drawText("B", 1, 40.0f, 20.0f, paint);
53 paint.setColor(SK_ColorCYAN); 52 paint.setColor(SK_ColorCYAN);
54 canvas->drawText("C", 1, 56.0f, 20.0f, paint); 53 canvas->drawText("C", 1, 56.0f, 20.0f, paint);
55 paint.setColor(SK_ColorMAGENTA); 54 paint.setColor(SK_ColorMAGENTA);
56 canvas->drawText("M", 1, 72.0f, 20.0f, paint); 55 canvas->drawText("M", 1, 72.0f, 20.0f, paint);
57 paint.setColor(SK_ColorYELLOW); 56 paint.setColor(SK_ColorYELLOW);
58 canvas->drawText("Y", 1, 88.0f, 20.0f, paint); 57 canvas->drawText("Y", 1, 88.0f, 20.0f, paint);
59 paint.setColor(SK_ColorBLACK); 58 paint.setColor(SK_ColorBLACK);
60 canvas->drawText("K", 1, 104.0f, 20.0f, paint); 59 canvas->drawText("K", 1, 104.0f, 20.0f, paint);
61 } 60 }
OLDNEW
« no previous file with comments | « debugger/QT/SkDebuggerGUI.cpp ('k') | gm/displacement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698