2014-10-31 13:55:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2018-03-14 19:07:43 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
|
|
|
#include "include/core/SkBitmap.h"
|
|
|
|
#include "include/core/SkBlendMode.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkColor.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkFont.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkFontStyle.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkFontTypes.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkMatrix.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkShader.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkTileMode.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypeface.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
#include "include/effects/SkGradientShader.h"
|
|
|
|
#include "include/utils/SkTextUtils.h"
|
|
|
|
#include "src/utils/SkUTF.h"
|
|
|
|
#include "tools/ToolUtils.h"
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2019-05-01 21:28:53 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-07-18 15:51:19 +00:00
|
|
|
namespace {
|
2014-10-31 13:55:45 +00:00
|
|
|
|
|
|
|
static uint16_t gData[] = { 0xFFFF, 0xCCCF, 0xCCCF, 0xFFFF };
|
|
|
|
|
2019-07-18 15:51:19 +00:00
|
|
|
class ColorEmojiBlendModesGM : public skiagm::GM {
|
2014-10-31 13:55:45 +00:00
|
|
|
public:
|
|
|
|
const static int W = 64;
|
|
|
|
const static int H = 64;
|
2017-04-25 15:09:16 +00:00
|
|
|
ColorEmojiBlendModesGM() {}
|
2015-05-21 13:15:28 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void onOnceBeforeDraw() override {
|
2014-10-31 13:55:45 +00:00
|
|
|
const SkColor colors[] = {
|
|
|
|
SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE,
|
|
|
|
SK_ColorMAGENTA, SK_ColorCYAN, SK_ColorYELLOW
|
|
|
|
};
|
|
|
|
SkMatrix local;
|
|
|
|
local.setRotate(180);
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2016-03-09 17:50:50 +00:00
|
|
|
paint.setShader(SkGradientShader::MakeSweep(0, 0, colors, nullptr, SK_ARRAY_COUNT(colors),
|
|
|
|
0, &local));
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2019-03-20 16:12:10 +00:00
|
|
|
sk_sp<SkTypeface> orig(ToolUtils::create_portable_typeface("serif", SkFontStyle::Bold()));
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == orig) {
|
2016-05-12 17:09:30 +00:00
|
|
|
orig = SkTypeface::MakeDefault();
|
2014-10-31 13:55:45 +00:00
|
|
|
}
|
2019-03-20 16:12:10 +00:00
|
|
|
fColorType = ToolUtils::emoji_typeface();
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2015-05-21 13:15:28 +00:00
|
|
|
fBG.installPixels(SkImageInfo::Make(2, 2, kARGB_4444_SkColorType,
|
|
|
|
kOpaque_SkAlphaType), gData, 4);
|
2014-10-31 13:55:45 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 15:51:19 +00:00
|
|
|
SkString onShortName() override {
|
2019-03-08 17:11:55 +00:00
|
|
|
return SkString("coloremoji_blendmodes");
|
2014-10-31 13:55:45 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 15:51:19 +00:00
|
|
|
SkISize onISize() override {
|
|
|
|
return {400, 640};
|
2014-10-31 13:55:45 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 15:51:19 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2014-10-31 13:55:45 +00:00
|
|
|
canvas->translate(SkIntToScalar(10), SkIntToScalar(20));
|
|
|
|
|
2017-03-15 16:19:37 +00:00
|
|
|
const SkBlendMode gModes[] = {
|
|
|
|
SkBlendMode::kClear,
|
|
|
|
SkBlendMode::kSrc,
|
|
|
|
SkBlendMode::kDst,
|
|
|
|
SkBlendMode::kSrcOver,
|
|
|
|
SkBlendMode::kDstOver,
|
|
|
|
SkBlendMode::kSrcIn,
|
|
|
|
SkBlendMode::kDstIn,
|
|
|
|
SkBlendMode::kSrcOut,
|
|
|
|
SkBlendMode::kDstOut,
|
|
|
|
SkBlendMode::kSrcATop,
|
|
|
|
SkBlendMode::kDstATop,
|
|
|
|
|
|
|
|
SkBlendMode::kXor,
|
|
|
|
SkBlendMode::kPlus,
|
|
|
|
SkBlendMode::kModulate,
|
|
|
|
SkBlendMode::kScreen,
|
|
|
|
SkBlendMode::kOverlay,
|
|
|
|
SkBlendMode::kDarken,
|
|
|
|
SkBlendMode::kLighten,
|
|
|
|
SkBlendMode::kColorDodge,
|
|
|
|
SkBlendMode::kColorBurn,
|
|
|
|
SkBlendMode::kHardLight,
|
|
|
|
SkBlendMode::kSoftLight,
|
|
|
|
SkBlendMode::kDifference,
|
|
|
|
SkBlendMode::kExclusion,
|
|
|
|
SkBlendMode::kMultiply,
|
|
|
|
SkBlendMode::kHue,
|
|
|
|
SkBlendMode::kSaturation,
|
|
|
|
SkBlendMode::kColor,
|
|
|
|
SkBlendMode::kLuminosity,
|
2014-10-31 13:55:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const SkScalar w = SkIntToScalar(W);
|
|
|
|
const SkScalar h = SkIntToScalar(H);
|
|
|
|
SkMatrix m;
|
|
|
|
m.setScale(SkIntToScalar(6), SkIntToScalar(6));
|
2020-12-12 14:51:11 +00:00
|
|
|
auto s = fBG.makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat, SkSamplingOptions(), m);
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2019-03-20 16:12:10 +00:00
|
|
|
SkFont labelFont(ToolUtils::create_portable_typeface());
|
2014-10-31 13:55:45 +00:00
|
|
|
|
|
|
|
SkPaint textP;
|
|
|
|
textP.setAntiAlias(true);
|
2019-01-03 20:45:53 +00:00
|
|
|
SkFont textFont(fColorType, 70);
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2021-08-02 17:26:38 +00:00
|
|
|
const int kWrap = 5;
|
2014-10-31 13:55:45 +00:00
|
|
|
|
|
|
|
SkScalar x0 = 0;
|
|
|
|
SkScalar y0 = 0;
|
|
|
|
SkScalar x = x0, y = y0;
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(gModes); i++) {
|
|
|
|
SkRect r;
|
2019-08-24 23:39:13 +00:00
|
|
|
r.setLTRB(x, y, x+w, y+h);
|
2014-10-31 13:55:45 +00:00
|
|
|
|
|
|
|
SkPaint p;
|
|
|
|
p.setStyle(SkPaint::kFill_Style);
|
|
|
|
p.setShader(s);
|
|
|
|
canvas->drawRect(r, p);
|
|
|
|
|
|
|
|
r.inset(-SK_ScalarHalf, -SK_ScalarHalf);
|
|
|
|
p.setStyle(SkPaint::kStroke_Style);
|
2015-08-27 14:41:13 +00:00
|
|
|
p.setShader(nullptr);
|
2014-10-31 13:55:45 +00:00
|
|
|
canvas->drawRect(r, p);
|
|
|
|
|
2017-04-25 15:09:16 +00:00
|
|
|
{
|
|
|
|
SkAutoCanvasRestore arc(canvas, true);
|
|
|
|
canvas->clipRect(r);
|
|
|
|
textP.setBlendMode(gModes[i]);
|
2019-03-20 16:12:10 +00:00
|
|
|
const char* text = ToolUtils::emoji_sample_text();
|
2018-07-25 20:52:48 +00:00
|
|
|
SkUnichar unichar = SkUTF::NextUTF8(&text, text + strlen(text));
|
|
|
|
SkASSERT(unichar >= 0);
|
2019-05-07 19:38:46 +00:00
|
|
|
canvas->drawSimpleText(&unichar, 4, SkTextEncoding::kUTF32,
|
|
|
|
x+ w/10.f, y + 7.f*h/8.f, textFont, textP);
|
2017-04-25 15:09:16 +00:00
|
|
|
}
|
2014-10-31 13:55:45 +00:00
|
|
|
#if 1
|
2017-03-15 16:19:37 +00:00
|
|
|
const char* label = SkBlendMode_Name(gModes[i]);
|
2019-05-07 19:38:46 +00:00
|
|
|
SkTextUtils::DrawString(canvas, label, x + w/2, y - labelFont.getSize()/2,
|
|
|
|
labelFont, SkPaint(), SkTextUtils::kCenter_Align);
|
2014-10-31 13:55:45 +00:00
|
|
|
#endif
|
|
|
|
x += w + SkIntToScalar(10);
|
2021-08-02 17:26:38 +00:00
|
|
|
if ((i % kWrap) == kWrap - 1) {
|
2014-10-31 13:55:45 +00:00
|
|
|
x = x0;
|
|
|
|
y += h + SkIntToScalar(30);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-05-12 17:09:30 +00:00
|
|
|
SkBitmap fBG;
|
|
|
|
sk_sp<SkTypeface> fColorType;
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2020-09-03 02:42:33 +00:00
|
|
|
using INHERITED = GM;
|
2014-10-31 13:55:45 +00:00
|
|
|
};
|
2019-07-18 15:51:19 +00:00
|
|
|
} // namespace
|
2014-10-31 13:55:45 +00:00
|
|
|
|
2019-01-23 15:22:01 +00:00
|
|
|
DEF_GM( return new ColorEmojiBlendModesGM; )
|