blob: b0b0cc487c8076de3188e2bca17600f734ff4e1e [file] [log] [blame]
reedc8e47652015-02-19 11:39:46 -08001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkCanvas.h"
10#include "SkImage.h"
11#include "SkRandom.h"
12#include "SkSurface.h"
13
14static SkImage* make_image() {
15 const SkImageInfo info = SkImageInfo::MakeN32Premul(319, 52);
16 SkAutoTUnref<SkSurface> surface(SkSurface::NewRaster(info));
17 SkCanvas* canvas = surface->getCanvas();
caryclark12596012015-07-29 05:27:47 -070018 canvas->drawColor(sk_tool_utils::color_to_565(0xFFF8F8F8));
reedc8e47652015-02-19 11:39:46 -080019
20 SkPaint paint;
21 paint.setAntiAlias(true);
22
23 paint.setStyle(SkPaint::kStroke_Style);
24 for (int i = 0; i < 20; ++i) {
25 canvas->drawCircle(-4, 25, 20, paint);
26 canvas->translate(25, 0);
27 }
28 return surface->newImageSnapshot();
29}
30
halcanary2a243382015-09-09 08:16:41 -070031DEF_SIMPLE_GM(mipmap, canvas, 400, 200) {
reed1c846342015-07-09 11:47:36 -070032 SkAutoTUnref<SkImage> img(make_image());//SkImage::NewFromEncoded(data));
reedc8e47652015-02-19 11:39:46 -080033
34 SkPaint paint;
35 const SkRect dst = SkRect::MakeWH(177, 15);
36
37 paint.setTextSize(30);
38 SkString str;
39 str.printf("scale %g %g", dst.width() / img->width(), dst.height() / img->height());
40// canvas->drawText(str.c_str(), str.size(), 300, 100, paint);
41
42 canvas->translate(20, 20);
43 for (int i = 0; i < 4; ++i) {
reed93a12152015-03-16 10:08:34 -070044 paint.setFilterQuality(SkFilterQuality(i));
reede47829b2015-08-06 10:02:53 -070045 canvas->drawImageRect(img, dst, &paint);
reedc8e47652015-02-19 11:39:46 -080046 canvas->translate(0, 20);
47 }
halcanary96fcdcc2015-08-27 07:41:13 -070048 canvas->drawImage(img, 20, 20, nullptr);
reedc8e47652015-02-19 11:39:46 -080049}
50