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

Side by Side Diff: gm/transparency.cpp

Issue 1263553002: make pixelsnap textblob* etc gm portable (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add more 565 compatibility Created 5 years, 4 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 | « gm/textblobshader.cpp ('k') | no next file » | 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 2015 Google Inc. 2 * Copyright 2015 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 "SkGradientShader.h" 8 #include "SkGradientShader.h"
9 #include "SkSurface.h" 9 #include "SkSurface.h"
10 #include "gm.h" 10 #include "gm.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 SkPaint paint; 56 SkPaint paint;
57 paint.setShader(create_checkerboard_shader(c1, c2, size))->unref(); 57 paint.setShader(create_checkerboard_shader(c1, c2, size))->unref();
58 canvas->drawPaint(paint); 58 canvas->drawPaint(paint);
59 } 59 }
60 60
61 /** 61 /**
62 * This GM verifies that a transparent bitmap drawn over a 62 * This GM verifies that a transparent bitmap drawn over a
63 * checkerboard pattern looks correct. 63 * checkerboard pattern looks correct.
64 */ 64 */
65 DEF_SIMPLE_GM(transparency_check, canvas, 1792, 1080) { 65 DEF_SIMPLE_GM(transparency_check, canvas, 1792, 1080) {
66 checkerboard(canvas, 0xFF999999, 0xFF666666, 8); 66 checkerboard(canvas, sk_tool_utils::color_to_565(0xFF999999),
67 sk_tool_utils::color_to_565(0xFF666666), 8);
67 { 68 {
68 SkAutoCanvasRestore autoCanvasRestore(canvas, true); 69 SkAutoCanvasRestore autoCanvasRestore(canvas, true);
69 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(256, 9)); 70 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(256, 9));
70 make_transparency(surface->getCanvas(), 256.0f, 9.0f); 71 make_transparency(surface->getCanvas(), 256.0f, 9.0f);
71 canvas->scale(7.0f, 120.0f); 72 canvas->scale(7.0f, 120.0f);
72 surface->draw(canvas, 0, 0, NULL); 73 surface->draw(canvas, 0, 0, NULL);
73 } 74 }
74 } 75 }
OLDNEW
« no previous file with comments | « gm/textblobshader.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698