You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
523 B
16 lines
523 B
4 months ago
|
// Copyright 2019 Google LLC.
|
||
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
||
|
#include "tools/fiddle/examples.h"
|
||
|
// HASH=7d0d801ef13c6c6da51e840c22ac15b0
|
||
|
REG_FIDDLE(Canvas_scale, 256, 160, false, 0) {
|
||
|
void draw(SkCanvas* canvas) {
|
||
|
SkPaint paint;
|
||
|
SkRect rect = { 10, 20, 60, 120 };
|
||
|
canvas->translate(20, 20);
|
||
|
canvas->drawRect(rect, paint);
|
||
|
canvas->scale(2, .5f);
|
||
|
paint.setColor(SK_ColorGRAY);
|
||
|
canvas->drawRect(rect, paint);
|
||
|
}
|
||
|
} // END FIDDLE
|