blob: baf5527556ea64ee7b3f4429a46e8989dcfbba29 [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
reed9ce9d672016-03-17 10:51:11 -070014static sk_sp<SkImage> make_image() {
reedc8e47652015-02-19 11:39:46 -080015 const SkImageInfo info = SkImageInfo::MakeN32Premul(319, 52);
reede8f30622016-03-23 18:59:25 -070016 auto surface(SkSurface::MakeRaster(info));
reedc8e47652015-02-19 11:39:46 -080017 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 }
reed9ce9d672016-03-17 10:51:11 -070028 return surface->makeImageSnapshot();
reedc8e47652015-02-19 11:39:46 -080029}
30
halcanary2a243382015-09-09 08:16:41 -070031DEF_SIMPLE_GM(mipmap, canvas, 400, 200) {
reed9ce9d672016-03-17 10:51:11 -070032 sk_sp<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));
reed9ce9d672016-03-17 10:51:11 -070045 canvas->drawImageRect(img.get(), dst, &paint);
reedc8e47652015-02-19 11:39:46 -080046 canvas->translate(0, 20);
47 }
reed9ce9d672016-03-17 10:51:11 -070048 canvas->drawImage(img.get(), 20, 20, nullptr);
reedc8e47652015-02-19 11:39:46 -080049}
reed6644d932016-06-10 11:41:47 -070050
51///////////////////////////////////////////////////////////////////////////////////////////////////
52
53// create a circle image computed raw, so we can wrap it as a linear or srgb image
54static sk_sp<SkImage> make(sk_sp<SkColorSpace> cs) {
55 const int N = 100;
56 SkImageInfo info = SkImageInfo::Make(N, N, kN32_SkColorType, kPremul_SkAlphaType, cs);
57 SkBitmap bm;
58 bm.allocPixels(info);
59
60 for (int y = 0; y < N; ++y) {
61 for (int x = 0; x < N; ++x) {
62 *bm.getAddr32(x, y) = (x ^ y) & 1 ? 0xFFFFFFFF : 0xFF000000;
63 }
64 }
65 bm.setImmutable();
66 return SkImage::MakeFromBitmap(bm);
67}
68
69static void show_mips(SkCanvas* canvas, SkImage* img) {
70 SkPaint paint;
71 paint.setFilterQuality(kMedium_SkFilterQuality);
72
reed3cc37d32016-06-11 04:48:12 -070073 // Want to ensure we never draw fractional pixels, so we use an IRect
74 SkIRect dst = SkIRect::MakeWH(img->width(), img->height());
reed6644d932016-06-10 11:41:47 -070075 while (dst.width() > 5) {
reed3cc37d32016-06-11 04:48:12 -070076 canvas->drawImageRect(img, SkRect::Make(dst), &paint);
reed6644d932016-06-10 11:41:47 -070077 dst.offset(dst.width() + 10, 0);
reed3cc37d32016-06-11 04:48:12 -070078 dst.fRight = dst.fLeft + dst.width()/2;
79 dst.fBottom = dst.fTop + dst.height()/2;
reed6644d932016-06-10 11:41:47 -070080 }
81}
82
83/*
84 * Ensure that in L32 drawing mode, both images/mips look the same as each other, and
85 * their mips are darker than the original (since the mips should ignore the gamma in L32).
86 *
87 * Ensure that in S32 drawing mode, all images/mips look the same, and look correct (i.e.
88 * the mip levels match the original in brightness).
89 */
90DEF_SIMPLE_GM(mipmap_srgb, canvas, 260, 230) {
91 sk_sp<SkImage> limg = make(nullptr);
92 sk_sp<SkImage> simg = make(SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named));
93
94 canvas->translate(10, 10);
95 show_mips(canvas, limg.get());
96 canvas->translate(0, limg->height() + 10.0f);
97 show_mips(canvas, simg.get());
98}
99
brianosman79b15f62016-06-21 13:40:12 -0700100///////////////////////////////////////////////////////////////////////////////////////////////////
101
102// create a gradient image computed raw, so we can wrap it as a linear or srgb image
103static sk_sp<SkImage> make_g8_gradient(sk_sp<SkColorSpace> cs) {
104 const int N = 100;
105 SkImageInfo info = SkImageInfo::Make(N, N, kGray_8_SkColorType, kOpaque_SkAlphaType, cs);
106 SkBitmap bm;
107 bm.allocPixels(info);
108
109 for (int y = 0; y < N; ++y) {
110 for (int x = 0; x < N; ++x) {
111 *bm.getAddr8(x, y) = static_cast<uint8_t>(255.0f * ((x + y) / (2.0f * (N - 1))));
112 }
113 }
114 bm.setImmutable();
115 return SkImage::MakeFromBitmap(bm);
116}
117
118static void show_mips_only(SkCanvas* canvas, SkImage* img) {
119 SkPaint paint;
120 paint.setFilterQuality(kMedium_SkFilterQuality);
121
122 // Want to ensure we never draw fractional pixels, so we use an IRect
123 SkIRect dst = SkIRect::MakeWH(img->width() / 2, img->height() / 2);
124 while (dst.width() > 5) {
125 canvas->drawImageRect(img, SkRect::Make(dst), &paint);
126 dst.offset(dst.width() + 10, 0);
127 dst.fRight = dst.fLeft + dst.width() / 2;
128 dst.fBottom = dst.fTop + dst.height() / 2;
129 }
130}
131
132/*
133 * Ensure that in L32 drawing mode, both images/mips look the same as each other, and
134 * their mips are darker than the original (since the mips should ignore the gamma in L32).
135 *
136 * Ensure that in S32 drawing mode, all images/mips look the same, and look correct (i.e.
137 * the mip levels match the original in brightness).
138 *
139 * This test also verifies handling of Gray_8 data in Ganesh, which is not done natively.
140 */
141DEF_SIMPLE_GM(mipmap_gray8_srgb, canvas, 260, 230) {
142 sk_sp<SkImage> limg = make_g8_gradient(nullptr);
143 sk_sp<SkImage> simg = make_g8_gradient(SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named));
144
145 canvas->translate(10, 10);
146 show_mips_only(canvas, limg.get());
147 canvas->translate(0, limg->height() + 10.0f);
148 show_mips_only(canvas, simg.get());
149}