blob: 9769cda3f5d107a711f221b85f142fabe8ecc3c2 [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"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
reedc8e47652015-02-19 11:39:46 -080010#include "SkCanvas.h"
11#include "SkImage.h"
12#include "SkRandom.h"
13#include "SkSurface.h"
14
reed9ce9d672016-03-17 10:51:11 -070015static sk_sp<SkImage> make_image() {
reedc8e47652015-02-19 11:39:46 -080016 const SkImageInfo info = SkImageInfo::MakeN32Premul(319, 52);
reede8f30622016-03-23 18:59:25 -070017 auto surface(SkSurface::MakeRaster(info));
reedc8e47652015-02-19 11:39:46 -080018 SkCanvas* canvas = surface->getCanvas();
caryclark12596012015-07-29 05:27:47 -070019 canvas->drawColor(sk_tool_utils::color_to_565(0xFFF8F8F8));
reedc8e47652015-02-19 11:39:46 -080020
21 SkPaint paint;
22 paint.setAntiAlias(true);
23
24 paint.setStyle(SkPaint::kStroke_Style);
25 for (int i = 0; i < 20; ++i) {
26 canvas->drawCircle(-4, 25, 20, paint);
27 canvas->translate(25, 0);
28 }
reed9ce9d672016-03-17 10:51:11 -070029 return surface->makeImageSnapshot();
reedc8e47652015-02-19 11:39:46 -080030}
31
halcanary2a243382015-09-09 08:16:41 -070032DEF_SIMPLE_GM(mipmap, canvas, 400, 200) {
reed9ce9d672016-03-17 10:51:11 -070033 sk_sp<SkImage> img(make_image());//SkImage::NewFromEncoded(data));
reedc8e47652015-02-19 11:39:46 -080034
35 SkPaint paint;
36 const SkRect dst = SkRect::MakeWH(177, 15);
37
38 paint.setTextSize(30);
39 SkString str;
40 str.printf("scale %g %g", dst.width() / img->width(), dst.height() / img->height());
Cary Clark2a475ea2017-04-28 15:35:12 -040041// canvas->drawString(str, 300, 100, paint);
reedc8e47652015-02-19 11:39:46 -080042
43 canvas->translate(20, 20);
44 for (int i = 0; i < 4; ++i) {
reed93a12152015-03-16 10:08:34 -070045 paint.setFilterQuality(SkFilterQuality(i));
reed9ce9d672016-03-17 10:51:11 -070046 canvas->drawImageRect(img.get(), dst, &paint);
reedc8e47652015-02-19 11:39:46 -080047 canvas->translate(0, 20);
48 }
reed9ce9d672016-03-17 10:51:11 -070049 canvas->drawImage(img.get(), 20, 20, nullptr);
reedc8e47652015-02-19 11:39:46 -080050}
reed6644d932016-06-10 11:41:47 -070051
52///////////////////////////////////////////////////////////////////////////////////////////////////
53
54// create a circle image computed raw, so we can wrap it as a linear or srgb image
55static sk_sp<SkImage> make(sk_sp<SkColorSpace> cs) {
56 const int N = 100;
57 SkImageInfo info = SkImageInfo::Make(N, N, kN32_SkColorType, kPremul_SkAlphaType, cs);
58 SkBitmap bm;
59 bm.allocPixels(info);
60
61 for (int y = 0; y < N; ++y) {
62 for (int x = 0; x < N; ++x) {
63 *bm.getAddr32(x, y) = (x ^ y) & 1 ? 0xFFFFFFFF : 0xFF000000;
64 }
65 }
66 bm.setImmutable();
67 return SkImage::MakeFromBitmap(bm);
68}
69
70static void show_mips(SkCanvas* canvas, SkImage* img) {
71 SkPaint paint;
72 paint.setFilterQuality(kMedium_SkFilterQuality);
73
reed3cc37d32016-06-11 04:48:12 -070074 // Want to ensure we never draw fractional pixels, so we use an IRect
75 SkIRect dst = SkIRect::MakeWH(img->width(), img->height());
reed6644d932016-06-10 11:41:47 -070076 while (dst.width() > 5) {
reed3cc37d32016-06-11 04:48:12 -070077 canvas->drawImageRect(img, SkRect::Make(dst), &paint);
reed6644d932016-06-10 11:41:47 -070078 dst.offset(dst.width() + 10, 0);
reed3cc37d32016-06-11 04:48:12 -070079 dst.fRight = dst.fLeft + dst.width()/2;
80 dst.fBottom = dst.fTop + dst.height()/2;
reed6644d932016-06-10 11:41:47 -070081 }
82}
83
84/*
85 * Ensure that in L32 drawing mode, both images/mips look the same as each other, and
86 * their mips are darker than the original (since the mips should ignore the gamma in L32).
87 *
88 * Ensure that in S32 drawing mode, all images/mips look the same, and look correct (i.e.
89 * the mip levels match the original in brightness).
90 */
91DEF_SIMPLE_GM(mipmap_srgb, canvas, 260, 230) {
92 sk_sp<SkImage> limg = make(nullptr);
Matt Sarett77a7a1b2017-02-07 13:56:11 -050093 sk_sp<SkImage> simg = make(SkColorSpace::MakeSRGB());
reed6644d932016-06-10 11:41:47 -070094
95 canvas->translate(10, 10);
96 show_mips(canvas, limg.get());
97 canvas->translate(0, limg->height() + 10.0f);
98 show_mips(canvas, simg.get());
99}
100
brianosman79b15f62016-06-21 13:40:12 -0700101///////////////////////////////////////////////////////////////////////////////////////////////////
102
103// create a gradient image computed raw, so we can wrap it as a linear or srgb image
104static sk_sp<SkImage> make_g8_gradient(sk_sp<SkColorSpace> cs) {
105 const int N = 100;
106 SkImageInfo info = SkImageInfo::Make(N, N, kGray_8_SkColorType, kOpaque_SkAlphaType, cs);
107 SkBitmap bm;
108 bm.allocPixels(info);
109
110 for (int y = 0; y < N; ++y) {
111 for (int x = 0; x < N; ++x) {
112 *bm.getAddr8(x, y) = static_cast<uint8_t>(255.0f * ((x + y) / (2.0f * (N - 1))));
113 }
114 }
115 bm.setImmutable();
116 return SkImage::MakeFromBitmap(bm);
117}
118
119static void show_mips_only(SkCanvas* canvas, SkImage* img) {
120 SkPaint paint;
121 paint.setFilterQuality(kMedium_SkFilterQuality);
122
123 // Want to ensure we never draw fractional pixels, so we use an IRect
124 SkIRect dst = SkIRect::MakeWH(img->width() / 2, img->height() / 2);
125 while (dst.width() > 5) {
126 canvas->drawImageRect(img, SkRect::Make(dst), &paint);
127 dst.offset(dst.width() + 10, 0);
128 dst.fRight = dst.fLeft + dst.width() / 2;
129 dst.fBottom = dst.fTop + dst.height() / 2;
130 }
131}
132
133/*
134 * Ensure that in L32 drawing mode, both images/mips look the same as each other, and
135 * their mips are darker than the original (since the mips should ignore the gamma in L32).
136 *
137 * Ensure that in S32 drawing mode, all images/mips look the same, and look correct (i.e.
138 * the mip levels match the original in brightness).
brianosman79b15f62016-06-21 13:40:12 -0700139 */
140DEF_SIMPLE_GM(mipmap_gray8_srgb, canvas, 260, 230) {
141 sk_sp<SkImage> limg = make_g8_gradient(nullptr);
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500142 sk_sp<SkImage> simg = make_g8_gradient(SkColorSpace::MakeSRGB());
brianosman79b15f62016-06-21 13:40:12 -0700143
144 canvas->translate(10, 10);
145 show_mips_only(canvas, limg.get());
146 canvas->translate(0, limg->height() + 10.0f);
147 show_mips_only(canvas, simg.get());
148}