blob: 120ac609c651958285749eb33e9f895114faa2df [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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 Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=a6575a49467ce8d28bb01cc7638fa04d
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Anti_Alias, 512, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void 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