blob: f0759dc3c56451ac53d7150d408ea9c3f4732f48 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkDraw_DEFINED
11#define SkDraw_DEFINED
12
reed@android.com8a1c16f2008-12-17 15:59:43 +000013#include "SkCanvas.h"
14#include "SkMask.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkPaint.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000016
tomhudson@google.coma9e18242013-04-03 10:18:17 +000017class SkBitmap;
reed@android.com8a1c16f2008-12-17 15:59:43 +000018class SkBounder;
reed@google.com7d7ca792011-02-23 22:39:18 +000019class SkClipStack;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000020class SkBaseDevice;
tomhudson@google.coma9e18242013-04-03 10:18:17 +000021class SkMatrix;
reed@android.com8a1c16f2008-12-17 15:59:43 +000022class SkPath;
23class SkRegion;
reed@google.com045e62d2011-10-24 12:19:46 +000024class SkRasterClip;
reed@android.com8a1c16f2008-12-17 15:59:43 +000025struct SkDrawProcs;
tomhudson@google.coma9e18242013-04-03 10:18:17 +000026struct SkRect;
scroggo@google.coma8e33a92013-11-08 18:02:53 +000027class SkRRect;
reed@android.com8a1c16f2008-12-17 15:59:43 +000028
29class SkDraw {
30public:
reed@android.comf2b98d62010-12-20 18:26:13 +000031 SkDraw();
reed@android.com8a1c16f2008-12-17 15:59:43 +000032 SkDraw(const SkDraw& src);
33
34 void drawPaint(const SkPaint&) const;
35 void drawPoints(SkCanvas::PointMode, size_t count, const SkPoint[],
reed@android.comf2b98d62010-12-20 18:26:13 +000036 const SkPaint&, bool forceUseDevice = false) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +000037 void drawRect(const SkRect&, const SkPaint&) const;
scroggo@google.coma8e33a92013-11-08 18:02:53 +000038 void drawRRect(const SkRRect&, const SkPaint&) const;
reed@google.com7ff8d812011-03-25 15:08:16 +000039 /**
40 * To save on mallocs, we allow a flag that tells us that srcPath is
41 * mutable, so that we don't have to make copies of it as we transform it.
42 *
43 * If prePathMatrix is not null, it should logically be applied before any
44 * stroking or other effects. If there are no effects on the paint that
45 * affect the geometry/rasterization, then the pre matrix can just be
46 * pre-concated with the current matrix.
47 */
reed@google.com126f7f52013-11-07 16:06:53 +000048 void drawPath(const SkPath& path, const SkPaint& paint,
49 const SkMatrix* prePathMatrix, bool pathIsMutable) const {
50 this->drawPath(path, paint, prePathMatrix, pathIsMutable, false);
51 }
52
53 void drawPath(const SkPath& path, const SkPaint& paint) const {
54 this->drawPath(path, paint, NULL, false, false);
55 }
56
reed@android.com8a1c16f2008-12-17 15:59:43 +000057 void drawBitmap(const SkBitmap&, const SkMatrix&, const SkPaint&) const;
58 void drawSprite(const SkBitmap&, int x, int y, const SkPaint&) const;
59 void drawText(const char text[], size_t byteLength, SkScalar x,
60 SkScalar y, const SkPaint& paint) const;
61 void drawPosText(const char text[], size_t byteLength,
62 const SkScalar pos[], SkScalar constY,
63 int scalarsPerPosition, const SkPaint& paint) const;
64 void drawTextOnPath(const char text[], size_t byteLength,
65 const SkPath&, const SkMatrix*, const SkPaint&) const;
66 void drawVertices(SkCanvas::VertexMode mode, int count,
67 const SkPoint vertices[], const SkPoint textures[],
68 const SkColor colors[], SkXfermode* xmode,
69 const uint16_t indices[], int ptCount,
70 const SkPaint& paint) const;
reed@google.com7d7ca792011-02-23 22:39:18 +000071
reed@google.com126f7f52013-11-07 16:06:53 +000072 /**
73 * Overwrite the target with the path's coverage (i.e. its mask).
74 * Will overwrite the entire device, so it need not be zero'd first.
75 *
76 * Only device A8 is supported right now.
77 */
78 void drawPathCoverage(const SkPath& src, const SkPaint& paint) const {
79 this->drawPath(src, paint, NULL, false, true);
reed@android.com8a1c16f2008-12-17 15:59:43 +000080 }
81
82 /** Helper function that creates a mask from a path and an optional maskfilter.
83 Note however, that the resulting mask will not have been actually filtered,
84 that must be done afterwards (by calling filterMask). The maskfilter is provided
85 solely to assist in computing the mask's bounds (if the mode requests that).
86 */
87 static bool DrawToMask(const SkPath& devPath, const SkIRect* clipBounds,
reed@google.com30711b72012-12-18 19:18:39 +000088 const SkMaskFilter*, const SkMatrix* filterMatrix,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +000089 SkMask* mask, SkMask::CreateMode mode,
90 SkPaint::Style style);
reed@android.com8a1c16f2008-12-17 15:59:43 +000091
reed@google.com62ab7ad2011-04-05 14:08:25 +000092 enum RectType {
93 kHair_RectType,
94 kFill_RectType,
95 kStroke_RectType,
96 kPath_RectType
97 };
98
99 /**
100 * Based on the paint's style, strokeWidth, and the matrix, classify how
101 * to draw the rect. If no special-case is available, returns
102 * kPath_RectType.
103 *
104 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
105 * width and height of the stroke.
106 */
107 static RectType ComputeRectType(const SkPaint&, const SkMatrix&,
108 SkPoint* strokeSize);
109
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +0000110 static bool ShouldDrawTextAsPaths(const SkPaint&, const SkMatrix&);
111 void drawText_asPaths(const char text[], size_t byteLength,
112 SkScalar x, SkScalar y, const SkPaint&) const;
113 void drawPosText_asPaths(const char text[], size_t byteLength,
114 const SkScalar pos[], SkScalar constY,
115 int scalarsPerPosition, const SkPaint&) const;
skia.committer@gmail.com8f6ef402013-06-05 07:01:06 +0000116
commit-bot@chromium.org5e009892013-10-14 13:42:12 +0000117private:
118 void drawDevMask(const SkMask& mask, const SkPaint&) const;
119 void drawBitmapAsMask(const SkBitmap&, const SkPaint&) const;
120
reed@google.com126f7f52013-11-07 16:06:53 +0000121 void drawPath(const SkPath&, const SkPaint&, const SkMatrix* preMatrix,
122 bool pathIsMutable, bool drawCoverage) const;
123
reed@google.com4bbdeac2013-01-24 21:03:11 +0000124 /**
125 * Return the current clip bounds, in local coordinates, with slop to account
126 * for antialiasing or hairlines (i.e. device-bounds outset by 1, and then
127 * run through the inverse of the matrix).
128 *
129 * If the matrix cannot be inverted, or the current clip is empty, return
130 * false and ignore bounds parameter.
131 */
132 bool SK_WARN_UNUSED_RESULT
133 computeConservativeLocalClipBounds(SkRect* bounds) const;
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000134
reed@android.com8a1c16f2008-12-17 15:59:43 +0000135public:
136 const SkBitmap* fBitmap; // required
137 const SkMatrix* fMatrix; // required
reed@google.com045e62d2011-10-24 12:19:46 +0000138 const SkRegion* fClip; // DEPRECATED
139 const SkRasterClip* fRC; // required
reed@android.comf2b98d62010-12-20 18:26:13 +0000140
reed@google.com7d7ca792011-02-23 22:39:18 +0000141 const SkClipStack* fClipStack; // optional
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000142 SkBaseDevice* fDevice; // optional
reed@android.com8a1c16f2008-12-17 15:59:43 +0000143 SkBounder* fBounder; // optional
144 SkDrawProcs* fProcs; // optional
145
146#ifdef SK_DEBUG
reed@android.comf2b98d62010-12-20 18:26:13 +0000147 void validate() const;
148#else
149 void validate() const {}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000150#endif
151};
152
reed@android.com8a1c16f2008-12-17 15:59:43 +0000153#endif