Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 1 | // Copyright 2019 Google LLC. |
| 2 | // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 3 | #include "tools/fiddle/examples.h" |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 4 | // HASH=a6575a49467ce8d28bb01cc7638fa04d |
Hal Canary | a7181e7c | 2019-03-18 16:06:34 -0400 | [diff] [blame] | 5 | REG_FIDDLE(Anti_Alias, 512, 256, false, 0) { |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 6 | void draw(SkCanvas* canvas) { |
| 7 | SkBitmap bitmap; |
| 8 | bitmap.allocN32Pixels(50, 50); |
| 9 | SkCanvas offscreen(bitmap); |
| 10 | SkPaint paint; |
| 11 | paint.setStyle(SkPaint::kStroke_Style); |
| 12 | paint.setStrokeWidth(10); |
| 13 | for (bool antialias : { false, true }) { |
| 14 | paint.setColor(antialias ? SK_ColorRED : SK_ColorBLUE); |
| 15 | paint.setAntiAlias(antialias); |
| 16 | bitmap.eraseColor(0); |
| 17 | offscreen.drawLine(5, 5, 15, 30, paint); |
| 18 | canvas->drawLine(5, 5, 15, 30, paint); |
| 19 | canvas->save(); |
| 20 | canvas->scale(10, 10); |
| 21 | canvas->drawBitmap(bitmap, antialias ? 12 : 0, 0); |
| 22 | canvas->restore(); |
| 23 | canvas->translate(15, 0); |
| 24 | } |
| 25 | } |
| 26 | } // END FIDDLE |