2015-02-18 19:29:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2015-10-01 14:28:13 +00:00
|
|
|
#include "Resources.h"
|
|
|
|
#include "SkImage.h"
|
2015-02-18 19:29:56 +00:00
|
|
|
#include "gm.h"
|
|
|
|
#include "sk_tool_utils.h"
|
|
|
|
|
2015-10-01 14:28:13 +00:00
|
|
|
static void draw_rotated_image(SkCanvas* canvas, const SkImage* image) {
|
|
|
|
sk_tool_utils::draw_checkerboard(canvas, SkColorSetRGB(156, 154, 156),
|
2015-09-03 20:32:33 +00:00
|
|
|
SK_ColorWHITE, 12);
|
2015-10-01 14:28:13 +00:00
|
|
|
if (!image) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkRect rect = SkRect::MakeLTRB(-68.0f, -68.0f, 68.0f, 68.0f);
|
2015-02-18 19:29:56 +00:00
|
|
|
SkPaint paint;
|
2015-10-01 14:28:13 +00:00
|
|
|
paint.setColor(SkColorSetRGB(49, 48, 49));
|
|
|
|
SkScalar scale = SkTMin(128.0f / image->width(),
|
|
|
|
128.0f / image->height());
|
|
|
|
SkScalar point[2] = {-0.5f * image->width(), -0.5f * image->height()};
|
|
|
|
for (int j = 0; j < 4; ++j) {
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
SkAutoCanvasRestore autoCanvasRestore(canvas, true);
|
|
|
|
canvas->translate(96.0f + 192.0f * i, 96.0f + 192.0f * j);
|
|
|
|
canvas->rotate(18.0f * (i + 4 * j));
|
|
|
|
canvas->drawRect(rect, paint);
|
|
|
|
canvas->scale(scale, scale);
|
|
|
|
canvas->drawImage(image, point[0], point[1]);
|
2015-02-18 19:29:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-17 20:27:24 +00:00
|
|
|
|
2015-10-01 14:28:13 +00:00
|
|
|
DEF_SIMPLE_GM(repeated_bitmap, canvas, 576, 576) {
|
2016-03-17 17:51:11 +00:00
|
|
|
draw_rotated_image(canvas, GetResourceAsImage("randPixels.png").get());
|
2015-10-01 14:28:13 +00:00
|
|
|
}
|
|
|
|
|
2015-04-17 20:27:24 +00:00
|
|
|
DEF_SIMPLE_GM(repeated_bitmap_jpg, canvas, 576, 576) {
|
2016-03-17 17:51:11 +00:00
|
|
|
draw_rotated_image(canvas, GetResourceAsImage("color_wheel.jpg").get());
|
2015-04-17 20:27:24 +00:00
|
|
|
}
|