c0bd9f9fe5
Current strategy: everything from the top Things to look at first are the manual changes: - added tools/rewrite_includes.py - removed -Idirectives from BUILD.gn - various compile.sh simplifications - tweak tools/embed_resources.py - update gn/find_headers.py to write paths from the top - update gn/gn_to_bp.py SkUserConfig.h layout so that #include "include/config/SkUserConfig.h" always gets the header we want. No-Presubmit: true Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Hal Canary <halcanary@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org>
69 lines
1.8 KiB
C++
69 lines
1.8 KiB
C++
/*
|
|
* Copyright 2018 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm/gm.h"
|
|
#include "include/core/SkColor.h"
|
|
|
|
DEF_SIMPLE_GM(unpremul, canvas, 200, 200) {
|
|
const SkColor color = 0xbf400000;
|
|
|
|
auto grade = [&](int x, int y){
|
|
SkBitmap bm;
|
|
bm.allocPixels(SkImageInfo::Make(1,1,
|
|
kBGRA_8888_SkColorType,
|
|
kUnpremul_SkAlphaType,
|
|
SkColorSpace::MakeSRGB()));
|
|
if (!canvas->readPixels(bm, x,y)) {
|
|
// Picture-backed canvases, that sort of thing. Just assume they're good.
|
|
MarkGMGood(canvas, 140,40);
|
|
return;
|
|
}
|
|
|
|
SkColor pixel;
|
|
memcpy(&pixel, bm.getAddr(0,0), sizeof(pixel));
|
|
|
|
auto close = [](int x, int y) {
|
|
return x-y < 2
|
|
&& y-x < 2;
|
|
};
|
|
|
|
if (close(SkColorGetR(pixel), SkColorGetR(color)) &&
|
|
close(SkColorGetG(pixel), SkColorGetG(color)) &&
|
|
close(SkColorGetB(pixel), SkColorGetB(color)) &&
|
|
close(SkColorGetA(pixel), SkColorGetA(color))) {
|
|
|
|
MarkGMGood(canvas, 140,40);
|
|
} else {
|
|
MarkGMBad(canvas, 140,40);
|
|
}
|
|
};
|
|
|
|
{
|
|
SkPaint paint;
|
|
paint.setBlendMode(SkBlendMode::kSrc);
|
|
paint.setColor(color);
|
|
|
|
canvas->drawRect({0,0,100,100}, paint);
|
|
grade(50,50);
|
|
}
|
|
|
|
canvas->translate(0,100);
|
|
|
|
{
|
|
SkPaint paint;
|
|
paint.setBlendMode(SkBlendMode::kSrc);
|
|
|
|
SkBitmap bm;
|
|
bm.allocPixels(SkImageInfo::Make(100,100, kRGBA_8888_SkColorType, kUnpremul_SkAlphaType));
|
|
bm.eraseColor(color);
|
|
|
|
canvas->drawBitmap(bm, 0,0, &paint);
|
|
grade(50,150);
|
|
}
|
|
|
|
}
|