2016-02-24 13:49:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkBlendMode.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/core/SkFontTypes.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTextBlob.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkTypeface.h"
|
|
|
|
#include "tools/ToolUtils.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
2016-02-24 13:49:55 +00:00
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
class TextBlobBlockReordering : public GM {
|
|
|
|
public:
|
|
|
|
// This gm tests that textblobs translate properly when their draw order is different from their
|
|
|
|
// flush order
|
|
|
|
TextBlobBlockReordering() { }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void onOnceBeforeDraw() override {
|
|
|
|
SkTextBlobBuilder builder;
|
|
|
|
|
|
|
|
// make textblob
|
|
|
|
// Large text is used to trigger atlas eviction
|
2019-03-20 16:12:10 +00:00
|
|
|
SkFont font(ToolUtils::create_portable_typeface(), 56);
|
2018-12-23 03:29:45 +00:00
|
|
|
font.setEdging(SkFont::Edging::kAlias);
|
2016-02-24 13:49:55 +00:00
|
|
|
const char* text = "AB";
|
|
|
|
|
|
|
|
SkRect bounds;
|
2019-05-07 19:38:46 +00:00
|
|
|
font.measureText(text, strlen(text), SkTextEncoding::kUTF8, &bounds);
|
2016-02-24 13:49:55 +00:00
|
|
|
|
|
|
|
SkScalar yOffset = bounds.height();
|
2019-03-20 16:12:10 +00:00
|
|
|
ToolUtils::add_to_text_blob(&builder, text, font, 0, yOffset - 30);
|
2016-02-24 13:49:55 +00:00
|
|
|
|
|
|
|
// build
|
2016-09-13 17:00:23 +00:00
|
|
|
fBlob = builder.make();
|
2016-02-24 13:49:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SkString onShortName() override {
|
|
|
|
return SkString("textblobblockreordering");
|
|
|
|
}
|
|
|
|
|
|
|
|
SkISize onISize() override {
|
|
|
|
return SkISize::Make(kWidth, kHeight);
|
|
|
|
}
|
|
|
|
|
2016-12-21 16:14:46 +00:00
|
|
|
// This draws the same text blob 3 times. The second draw used a different xfer mode so its
|
|
|
|
// GrDrawOp doesn't get combined with the first and third. Ultimately, they will be flushed in
|
|
|
|
// the order first, third, and then second.
|
2016-02-24 13:49:55 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2018-08-16 14:17:03 +00:00
|
|
|
canvas->drawColor(SK_ColorGRAY);
|
2016-02-24 13:49:55 +00:00
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
canvas->translate(10, 40);
|
|
|
|
|
|
|
|
SkRect bounds = fBlob->bounds();
|
|
|
|
const int yDelta = SkScalarFloorToInt(bounds.height()) + 20;
|
|
|
|
const int xDelta = SkScalarFloorToInt(bounds.width());
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2016-02-24 13:49:55 +00:00
|
|
|
canvas->drawTextBlob(fBlob, 0, 0, paint);
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2016-02-24 13:49:55 +00:00
|
|
|
canvas->translate(SkIntToScalar(xDelta), SkIntToScalar(yDelta));
|
|
|
|
|
2016-12-21 16:14:46 +00:00
|
|
|
// Draw a rect where the text should be, and then twiddle the xfermode so we don't combine.
|
2016-02-24 13:49:55 +00:00
|
|
|
SkPaint redPaint;
|
|
|
|
redPaint.setColor(SK_ColorRED);
|
|
|
|
canvas->drawRect(bounds, redPaint);
|
|
|
|
SkPaint srcInPaint(paint);
|
2016-10-06 00:33:02 +00:00
|
|
|
srcInPaint.setBlendMode(SkBlendMode::kSrcIn);
|
2016-02-24 13:49:55 +00:00
|
|
|
canvas->drawTextBlob(fBlob, 0, 0, srcInPaint);
|
|
|
|
|
|
|
|
canvas->translate(SkIntToScalar(xDelta), SkIntToScalar(yDelta));
|
|
|
|
canvas->drawTextBlob(fBlob, 0, 0, paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-09-13 17:00:23 +00:00
|
|
|
sk_sp<SkTextBlob> fBlob;
|
2016-02-24 13:49:55 +00:00
|
|
|
|
2021-10-08 22:48:26 +00:00
|
|
|
inline static constexpr int kWidth = 275;
|
|
|
|
inline static constexpr int kHeight = 200;
|
2016-02-24 13:49:55 +00:00
|
|
|
|
2020-09-03 02:42:33 +00:00
|
|
|
using INHERITED = GM;
|
2016-02-24 13:49:55 +00:00
|
|
|
};
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2016-02-24 13:49:55 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DEF_GM(return new TextBlobBlockReordering;)
|
2020-08-06 18:11:56 +00:00
|
|
|
} // namespace skiagm
|