blob: 3a96c4ff2d8cb3621c952ccac24ca0a2495e17c2 [file] [log] [blame]
bsalomon@google.com607d08b2012-08-20 13:55:09 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
bsalomon@google.com607d08b2012-08-20 13:55:09 +00007
bsalomon@google.com607d08b2012-08-20 13:55:09 +00008#include "SkBitmap.h"
9#include "SkCanvas.h"
10#include "SkColor.h"
11#include "SkPaint.h"
12#include "SkPoint.h"
13#include "SkRect.h"
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000014#include "SkTypes.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000015#include "Test.h"
bsalomon@google.com607d08b2012-08-20 13:55:09 +000016
17static const SkColor bgColor = SK_ColorWHITE;
18
commit-bot@chromium.org8ef51b92014-03-05 13:43:15 +000019static void create(SkBitmap* bm, SkIRect bound) {
20 bm->allocN32Pixels(bound.width(), bound.height());
bsalomon@google.com607d08b2012-08-20 13:55:09 +000021}
22
23static void drawBG(SkCanvas* canvas) {
24 canvas->drawColor(bgColor);
25}
26
27/** Assumes that the ref draw was completely inside ref canvas --
28 implies that everything outside is "bgColor".
29 Checks that all overlap is the same and that all non-overlap on the
30 ref is "bgColor".
31 */
32static bool compare(const SkBitmap& ref, const SkIRect& iref,
33 const SkBitmap& test, const SkIRect& itest)
34{
35 const int xOff = itest.fLeft - iref.fLeft;
36 const int yOff = itest.fTop - iref.fTop;
37
38 SkAutoLockPixels alpRef(ref);
39 SkAutoLockPixels alpTest(test);
40
41 for (int y = 0; y < test.height(); ++y) {
42 for (int x = 0; x < test.width(); ++x) {
43 SkColor testColor = test.getColor(x, y);
44 int refX = x + xOff;
45 int refY = y + yOff;
46 SkColor refColor;
47 if (refX >= 0 && refX < ref.width() &&
48 refY >= 0 && refY < ref.height())
49 {
50 refColor = ref.getColor(refX, refY);
51 } else {
52 refColor = bgColor;
53 }
54 if (refColor != testColor) {
55 return false;
56 }
57 }
58 }
59 return true;
60}
61
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000062DEF_TEST(DrawText, reporter) {
bsalomon@google.com607d08b2012-08-20 13:55:09 +000063 SkPaint paint;
64 paint.setColor(SK_ColorGRAY);
65 paint.setTextSize(SkIntToScalar(20));
rmistry@google.comd6176b02012-08-23 18:14:13 +000066
bsalomon@google.com607d08b2012-08-20 13:55:09 +000067 SkIRect drawTextRect = SkIRect::MakeWH(64, 64);
68 SkBitmap drawTextBitmap;
commit-bot@chromium.org8ef51b92014-03-05 13:43:15 +000069 create(&drawTextBitmap, drawTextRect);
bsalomon@google.com607d08b2012-08-20 13:55:09 +000070 SkCanvas drawTextCanvas(drawTextBitmap);
71
72 SkIRect drawPosTextRect = SkIRect::MakeWH(64, 64);
73 SkBitmap drawPosTextBitmap;
commit-bot@chromium.org8ef51b92014-03-05 13:43:15 +000074 create(&drawPosTextBitmap, drawPosTextRect);
bsalomon@google.com607d08b2012-08-20 13:55:09 +000075 SkCanvas drawPosTextCanvas(drawPosTextBitmap);
76
77 for (float offsetY = 0.0f; offsetY < 1.0f; offsetY += (1.0f / 16.0f)) {
78 for (float offsetX = 0.0f; offsetX < 1.0f; offsetX += (1.0f / 16.0f)) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000079 SkPoint point = SkPoint::Make(25.0f + offsetX,
80 25.0f + offsetY);
bsalomon@google.com607d08b2012-08-20 13:55:09 +000081
82 for (int align = 0; align < SkPaint::kAlignCount; ++align) {
83 paint.setTextAlign(static_cast<SkPaint::Align>(align));
84
85 for (unsigned int flags = 0; flags < (1 << 3); ++flags) {
86 static const unsigned int antiAliasFlag = 1;
87 static const unsigned int subpixelFlag = 1 << 1;
88 static const unsigned int lcdFlag = 1 << 2;
89
90 paint.setAntiAlias(SkToBool(flags & antiAliasFlag));
91 paint.setSubpixelText(SkToBool(flags & subpixelFlag));
92 paint.setLCDRenderText(SkToBool(flags & lcdFlag));
93
94 // Test: drawText and drawPosText draw the same.
95 drawBG(&drawTextCanvas);
96 drawTextCanvas.drawText("A", 1, point.fX, point.fY, paint);
97
98 drawBG(&drawPosTextCanvas);
99 drawPosTextCanvas.drawPosText("A", 1, &point, paint);
100
101 REPORTER_ASSERT(reporter,
102 compare(drawTextBitmap, drawTextRect,
103 drawPosTextBitmap, drawPosTextRect));
104 }
105 }
106 }
107 }
108}