8ffe4bc8cb
Bug: b/238755762 Change-Id: I033fe66dd37d84dd747f9c8608d887798dfccd76 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/557900 Reviewed-by: Michael Ludwig <michaelludwig@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
311 lines
10 KiB
C++
311 lines
10 KiB
C++
/*
|
|
* Copyright 2021 Google LLC
|
|
*
|
|
* 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/SkBitmap.h"
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkColorFilter.h"
|
|
#include "include/core/SkColorSpace.h"
|
|
#include "include/core/SkImage.h"
|
|
#include "include/core/SkPaint.h"
|
|
#include "include/core/SkRRect.h"
|
|
#include "include/effects/SkColorMatrixFilter.h"
|
|
#include "include/effects/SkGradientShader.h"
|
|
#include "include/effects/SkTableColorFilter.h"
|
|
#include "include/gpu/GrRecordingContext.h"
|
|
#include "tools/Resources.h"
|
|
#include "tools/ToolUtils.h"
|
|
|
|
namespace {
|
|
|
|
sk_sp<SkShader> create_gradient_shader(SkRect r,
|
|
const std::array<SkColor, 3>& colors,
|
|
const std::array<float, 3>& offsets) {
|
|
SkPoint pts[2] = { {r.fLeft, r.fTop}, {r.fRight, r.fTop} };
|
|
|
|
return SkGradientShader::MakeLinear(pts, colors.data(), offsets.data(), std::size(colors),
|
|
SkTileMode::kClamp);
|
|
}
|
|
|
|
sk_sp<SkShader> create_image_shader(SkCanvas* destCanvas, SkTileMode tmX, SkTileMode tmY) {
|
|
SkBitmap bitmap;
|
|
|
|
{
|
|
SkImageInfo ii = SkImageInfo::Make(64, 64, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
|
|
bitmap.allocPixels(ii);
|
|
bitmap.eraseColor(SK_ColorWHITE);
|
|
|
|
SkCanvas tmpCanvas(bitmap);
|
|
|
|
SkColor colors[3][3] = {
|
|
{ SK_ColorRED, SK_ColorDKGRAY, SK_ColorBLUE },
|
|
{ SK_ColorLTGRAY, SK_ColorCYAN, SK_ColorYELLOW },
|
|
{ SK_ColorGREEN, SK_ColorWHITE, SK_ColorMAGENTA }
|
|
};
|
|
|
|
for (int y = 0; y < 3; ++y) {
|
|
for (int x = 0; x < 3; ++x) {
|
|
SkPaint paint;
|
|
paint.setColor(colors[y][x]);
|
|
tmpCanvas.drawRect(SkRect::MakeXYWH(x*21, y*21, 22, 22), paint);
|
|
}
|
|
}
|
|
|
|
bitmap.setAlphaType(kOpaque_SkAlphaType);
|
|
bitmap.setImmutable();
|
|
}
|
|
|
|
sk_sp<SkImage> img = SkImage::MakeFromBitmap(bitmap);
|
|
img = ToolUtils::MakeTextureImage(destCanvas, std::move(img));
|
|
|
|
return img->makeShader(tmX, tmY, SkSamplingOptions());
|
|
}
|
|
|
|
sk_sp<SkShader> create_blend_shader(SkCanvas* destCanvas, SkBlendMode bm) {
|
|
constexpr SkColor4f kTransYellow = {1.0f, 1.0f, 0.0f, 0.5f};
|
|
|
|
sk_sp<SkShader> dst = SkShaders::Color(kTransYellow, nullptr);
|
|
return SkShaders::Blend(bm,
|
|
std::move(dst),
|
|
create_image_shader(destCanvas,
|
|
SkTileMode::kRepeat, SkTileMode::kRepeat));
|
|
}
|
|
|
|
void draw_image_shader_tile(SkCanvas* canvas, SkRect clipRect) {
|
|
SkPaint p;
|
|
p.setShader(create_image_shader(canvas, SkTileMode::kClamp, SkTileMode::kRepeat));
|
|
|
|
SkPath path;
|
|
path.moveTo(1, 1);
|
|
path.lineTo(32, 127);
|
|
path.lineTo(96, 127);
|
|
path.lineTo(127, 1);
|
|
path.lineTo(63, 32);
|
|
path.close();
|
|
|
|
canvas->save();
|
|
canvas->clipRect(clipRect);
|
|
canvas->scale(0.5f, 0.5f);
|
|
canvas->drawPath(path, p);
|
|
|
|
canvas->save();
|
|
canvas->concat(SkMatrix::RotateDeg(90, {64, 64}));
|
|
canvas->translate(128, 0);
|
|
canvas->drawPath(path, p);
|
|
canvas->restore();
|
|
canvas->restore();
|
|
}
|
|
|
|
void draw_gradient_tile(SkCanvas* canvas, SkRect clipRect) {
|
|
SkRect r{1, 1, 127, 127};
|
|
SkPaint p;
|
|
p.setShader(create_gradient_shader(r,
|
|
{ SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE },
|
|
{ 0.0f, 0.75f, 1.0f }));
|
|
|
|
canvas->save();
|
|
canvas->clipRect(clipRect);
|
|
canvas->translate(128, 0);
|
|
canvas->scale(0.5f, 0.5f);
|
|
canvas->drawRect(r, p);
|
|
|
|
canvas->save();
|
|
canvas->concat(SkMatrix::RotateDeg(90, {64, 64}));
|
|
canvas->translate(128, 0);
|
|
canvas->drawRect(r, p);
|
|
canvas->restore();
|
|
canvas->restore();
|
|
}
|
|
|
|
void draw_colorfilter_swatches(SkCanvas* canvas, SkRect clipRect) {
|
|
SkSize tileSize = { clipRect.width() / 2.0f, clipRect.height() / 2.0f };
|
|
|
|
// Quantize to four colors
|
|
uint8_t table1[256];
|
|
for (int i = 0; i < 256; ++i) {
|
|
table1[i] = (i/64) * 85;
|
|
}
|
|
|
|
// table2 is a band-pass filter for 85-170.
|
|
// table3 re-expands that range to 0..255
|
|
uint8_t table2[256], table3[256];
|
|
for (int i = 0; i < 256; ++i) {
|
|
if (i >= 85 && i <= 170) {
|
|
table2[i] = i;
|
|
table3[i] = ((i - 85) / 85.0f) * 255.0f;
|
|
} else {
|
|
table2[i] = 0;
|
|
table3[i] = 0;
|
|
}
|
|
}
|
|
|
|
sk_sp<SkColorFilter> colorFilters[4];
|
|
|
|
colorFilters[0] = SkColorMatrixFilter::MakeLightingFilter(SK_ColorLTGRAY, 0xFF440000);
|
|
colorFilters[1] = SkTableColorFilter::Make(table1);
|
|
colorFilters[2] = SkColorFilters::Compose(SkTableColorFilter::MakeARGB(nullptr, table3,
|
|
table3, table3),
|
|
SkTableColorFilter::MakeARGB(nullptr, table2,
|
|
table2, table2));
|
|
colorFilters[3] = SkColorFilters::Blend(SK_ColorGREEN, SkBlendMode::kMultiply);
|
|
|
|
SkPaint p;
|
|
|
|
canvas->save();
|
|
canvas->clipRect(clipRect);
|
|
canvas->translate(clipRect.fLeft, clipRect.fTop);
|
|
|
|
for (int y = 0; y < 2; ++y) {
|
|
for (int x = 0; x < 2; ++x) {
|
|
SkRect r = SkRect::MakeXYWH(x * tileSize.width(), y * tileSize.height(),
|
|
tileSize.width(), tileSize.height()).makeInset(1.0f,
|
|
1.0f);
|
|
p.setShader(create_gradient_shader(r,
|
|
{ SK_ColorBLACK, SK_ColorGRAY, SK_ColorWHITE },
|
|
{ 0.0f, 0.5f, 1.0f }));
|
|
p.setColorFilter(colorFilters[x*2+y]);
|
|
canvas->drawRect(r, p);
|
|
}
|
|
}
|
|
|
|
canvas->restore();
|
|
}
|
|
|
|
void draw_blend_mode_swatches(SkCanvas* canvas, SkRect clipRect) {
|
|
static const int kTileHeight = 16;
|
|
static const int kTileWidth = 16;
|
|
static const SkColor4f kOpaqueWhite { 1.0f, 1.0f, 1.0f, 1.0f };
|
|
static const SkColor4f kTransBluish { 0.0f, 0.5f, 1.0f, 0.5f };
|
|
static const SkColor4f kTransWhite { 1.0f, 1.0f, 1.0f, 0.75f };
|
|
|
|
SkPaint dstPaint;
|
|
dstPaint.setColor(kOpaqueWhite);
|
|
dstPaint.setBlendMode(SkBlendMode::kSrc);
|
|
dstPaint.setAntiAlias(false);
|
|
|
|
SkPaint srcPaint;
|
|
srcPaint.setColor(kTransBluish);
|
|
srcPaint.setAntiAlias(false);
|
|
|
|
SkRect r = SkRect::MakeXYWH(clipRect.fLeft, clipRect.fTop, kTileWidth, kTileHeight);
|
|
|
|
// For the first pass we draw: transparent bluish on top of opaque white
|
|
// For the second pass we draw: transparent white on top of transparent bluish
|
|
for (int passes = 0; passes < 2; ++passes) {
|
|
for (int i = 0; i <= (int)SkBlendMode::kLastCoeffMode; ++i) {
|
|
if (r.fLeft+kTileWidth > clipRect.fRight) {
|
|
r.offsetTo(clipRect.fLeft, r.fTop+kTileHeight);
|
|
}
|
|
|
|
canvas->drawRect(r.makeInset(1.0f, 1.0f), dstPaint);
|
|
srcPaint.setBlendMode(static_cast<SkBlendMode>(i));
|
|
canvas->drawRect(r.makeInset(2.0f, 2.0f), srcPaint);
|
|
|
|
r.offset(kTileWidth, 0.0f);
|
|
}
|
|
|
|
r.offsetTo(clipRect.fLeft, r.fTop+kTileHeight);
|
|
srcPaint.setColor(kTransWhite);
|
|
dstPaint.setColor(kTransBluish);
|
|
}
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
namespace skiagm {
|
|
|
|
// This is just for bootstrapping Graphite.
|
|
class GraphiteStartGM : public GM {
|
|
public:
|
|
GraphiteStartGM() {
|
|
this->setBGColor(SK_ColorBLACK);
|
|
GetResourceAsBitmap("images/color_wheel.gif", &fBitmap);
|
|
}
|
|
|
|
protected:
|
|
static constexpr int kTileWidth = 128;
|
|
static constexpr int kTileHeight = 128;
|
|
static constexpr int kWidth = 3 * kTileWidth;
|
|
static constexpr int kHeight = 3 * kTileHeight;
|
|
static constexpr int kClipInset = 16;
|
|
|
|
SkString onShortName() override {
|
|
return SkString("graphitestart");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(kWidth, kHeight);
|
|
}
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
|
|
const SkRect clipRect = SkRect::MakeWH(kWidth, kHeight).makeInset(kClipInset, kClipInset);
|
|
|
|
canvas->save();
|
|
canvas->clipRRect(SkRRect::MakeRectXY(clipRect, 32.f, 32.f), true);
|
|
|
|
// Upper-left corner
|
|
draw_image_shader_tile(canvas, SkRect::MakeXYWH(0, 0, kTileWidth, kTileHeight));
|
|
|
|
// Upper-middle tile
|
|
draw_gradient_tile(canvas, SkRect::MakeXYWH(kTileWidth, 0, kTileWidth, kTileHeight));
|
|
|
|
// Upper-right corner
|
|
draw_colorfilter_swatches(canvas, SkRect::MakeXYWH(2*kTileWidth, 0,
|
|
kTileWidth, kTileWidth));
|
|
|
|
// Middle-left tile
|
|
{
|
|
SkPaint p;
|
|
p.setColor(SK_ColorRED);
|
|
|
|
SkRect r = SkRect::MakeXYWH(0, kTileHeight, kTileWidth, kTileHeight);
|
|
canvas->drawRect(r.makeInset(1.0f, 1.0f), p);
|
|
}
|
|
|
|
// Middle-middle tile
|
|
{
|
|
SkPaint p;
|
|
p.setShader(create_blend_shader(canvas, SkBlendMode::kModulate));
|
|
|
|
SkRect r = SkRect::MakeXYWH(kTileWidth, kTileHeight, kTileWidth, kTileHeight);
|
|
canvas->drawRect(r.makeInset(1.0f, 1.0f), p);
|
|
}
|
|
|
|
// Middle-right tile
|
|
{
|
|
// <add tile here>
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
// Bottom-left corner
|
|
#ifdef SK_GRAPHITE_ENABLED
|
|
// TODO: failing serialize test on Linux, not sure what's going on
|
|
canvas->writePixels(fBitmap, 0, 2*kTileHeight);
|
|
#endif
|
|
|
|
// Bottom-middle tile
|
|
draw_blend_mode_swatches(canvas, SkRect::MakeXYWH(kTileWidth, 2*kTileHeight,
|
|
kTileWidth, kTileHeight));
|
|
|
|
// Bottom-right corner
|
|
{
|
|
// <add tile here>
|
|
}
|
|
}
|
|
|
|
private:
|
|
SkBitmap fBitmap;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_GM(return new GraphiteStartGM;)
|
|
|
|
} // namespace skiagm
|