aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/mipmap.cpp
diff options
context:
space:
mode:
authorGravatar brianosman <brianosman@google.com>2016-06-21 13:40:12 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-06-21 13:40:12 -0700
commit79b15f60f4e5893cf93d20e3f0bd6ae6560e1351 (patch)
tree5130f4193c1606d02036ebc1c42e82df7b686c03 /gm/mipmap.cpp
parenta80bb676d3432c202c633f9e6fb05d2348d7aa04 (diff)
Add new GM that exercises Gray 8 mipmapping and sRGB-ness
This demonstrates the bug that was fixed by: https://codereview.chromium.org/2088883002/ BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087933002 Review-Url: https://codereview.chromium.org/2087933002
Diffstat (limited to 'gm/mipmap.cpp')
-rw-r--r--gm/mipmap.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/gm/mipmap.cpp b/gm/mipmap.cpp
index 7a867d4225..baf5527556 100644
--- a/gm/mipmap.cpp
+++ b/gm/mipmap.cpp
@@ -97,3 +97,53 @@ DEF_SIMPLE_GM(mipmap_srgb, canvas, 260, 230) {
show_mips(canvas, simg.get());
}
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+// create a gradient image computed raw, so we can wrap it as a linear or srgb image
+static sk_sp<SkImage> make_g8_gradient(sk_sp<SkColorSpace> cs) {
+ const int N = 100;
+ SkImageInfo info = SkImageInfo::Make(N, N, kGray_8_SkColorType, kOpaque_SkAlphaType, cs);
+ SkBitmap bm;
+ bm.allocPixels(info);
+
+ for (int y = 0; y < N; ++y) {
+ for (int x = 0; x < N; ++x) {
+ *bm.getAddr8(x, y) = static_cast<uint8_t>(255.0f * ((x + y) / (2.0f * (N - 1))));
+ }
+ }
+ bm.setImmutable();
+ return SkImage::MakeFromBitmap(bm);
+}
+
+static void show_mips_only(SkCanvas* canvas, SkImage* img) {
+ SkPaint paint;
+ paint.setFilterQuality(kMedium_SkFilterQuality);
+
+ // Want to ensure we never draw fractional pixels, so we use an IRect
+ SkIRect dst = SkIRect::MakeWH(img->width() / 2, img->height() / 2);
+ while (dst.width() > 5) {
+ canvas->drawImageRect(img, SkRect::Make(dst), &paint);
+ dst.offset(dst.width() + 10, 0);
+ dst.fRight = dst.fLeft + dst.width() / 2;
+ dst.fBottom = dst.fTop + dst.height() / 2;
+ }
+}
+
+/*
+ * Ensure that in L32 drawing mode, both images/mips look the same as each other, and
+ * their mips are darker than the original (since the mips should ignore the gamma in L32).
+ *
+ * Ensure that in S32 drawing mode, all images/mips look the same, and look correct (i.e.
+ * the mip levels match the original in brightness).
+ *
+ * This test also verifies handling of Gray_8 data in Ganesh, which is not done natively.
+ */
+DEF_SIMPLE_GM(mipmap_gray8_srgb, canvas, 260, 230) {
+ sk_sp<SkImage> limg = make_g8_gradient(nullptr);
+ sk_sp<SkImage> simg = make_g8_gradient(SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named));
+
+ canvas->translate(10, 10);
+ show_mips_only(canvas, limg.get());
+ canvas->translate(0, limg->height() + 10.0f);
+ show_mips_only(canvas, simg.get());
+}