1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 #include "PathHelpers.h"
12 #include "DrawTargetCapture.h"
14 #include "BufferEdgePad.h"
15 #include "BufferUnrotate.h"
18 # include "mozilla/arm.h"
19 # include "LuminanceNEON.h"
26 * Byte offsets of channels in a native packed gfxColor or cairo image surface.
29 # define GFX_ARGB32_OFFSET_A 0
30 # define GFX_ARGB32_OFFSET_R 1
31 # define GFX_ARGB32_OFFSET_G 2
32 # define GFX_ARGB32_OFFSET_B 3
34 # define GFX_ARGB32_OFFSET_A 3
35 # define GFX_ARGB32_OFFSET_R 2
36 # define GFX_ARGB32_OFFSET_G 1
37 # define GFX_ARGB32_OFFSET_B 0
41 // c <= 0.04045 ? c / 12.92 : pow((c + 0.055) / 1.055, 2.4)) * 255 + 0.5
42 static const uint8_t gsRGBToLinearRGBMap
[256] = {
43 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1,
44 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
45 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6,
46 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 10, 10, 10, 11, 11,
47 12, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 17,
48 18, 18, 19, 19, 20, 20, 21, 22, 22, 23, 23, 24, 24, 25, 25,
49 26, 27, 27, 28, 29, 29, 30, 30, 31, 32, 32, 33, 34, 35, 35,
50 36, 37, 37, 38, 39, 40, 41, 41, 42, 43, 44, 45, 45, 46, 47,
51 48, 49, 50, 51, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
52 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77,
53 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 90, 91, 92, 93, 95,
54 96, 97, 99, 100, 101, 103, 104, 105, 107, 108, 109, 111, 112, 114, 115,
55 116, 118, 119, 121, 122, 124, 125, 127, 128, 130, 131, 133, 134, 136, 138,
56 139, 141, 142, 144, 146, 147, 149, 151, 152, 154, 156, 157, 159, 161, 163,
57 164, 166, 168, 170, 171, 173, 175, 177, 179, 181, 183, 184, 186, 188, 190,
58 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220,
59 222, 224, 226, 229, 231, 233, 235, 237, 239, 242, 244, 246, 248, 250, 253,
62 static void ComputesRGBLuminanceMask(const uint8_t* aSourceData
,
63 int32_t aSourceStride
, uint8_t* aDestData
,
64 int32_t aDestStride
, const IntSize
& aSize
,
67 if (mozilla::supports_neon()) {
68 ComputesRGBLuminanceMask_NEON(aSourceData
, aSourceStride
, aDestData
,
69 aDestStride
, aSize
, aOpacity
);
74 int32_t redFactor
= 55 * aOpacity
; // 255 * 0.2125 * opacity
75 int32_t greenFactor
= 183 * aOpacity
; // 255 * 0.7154 * opacity
76 int32_t blueFactor
= 18 * aOpacity
; // 255 * 0.0721
77 int32_t sourceOffset
= aSourceStride
- 4 * aSize
.width
;
78 const uint8_t* sourcePixel
= aSourceData
;
79 int32_t destOffset
= aDestStride
- aSize
.width
;
80 uint8_t* destPixel
= aDestData
;
82 for (int32_t y
= 0; y
< aSize
.height
; y
++) {
83 for (int32_t x
= 0; x
< aSize
.width
; x
++) {
84 uint8_t a
= sourcePixel
[GFX_ARGB32_OFFSET_A
];
87 *destPixel
= (redFactor
* sourcePixel
[GFX_ARGB32_OFFSET_R
] +
88 greenFactor
* sourcePixel
[GFX_ARGB32_OFFSET_G
] +
89 blueFactor
* sourcePixel
[GFX_ARGB32_OFFSET_B
]) >>
97 sourcePixel
+= sourceOffset
;
98 destPixel
+= destOffset
;
102 static void ComputeLinearRGBLuminanceMask(
103 const uint8_t* aSourceData
, int32_t aSourceStride
, uint8_t* aDestData
,
104 int32_t aDestStride
, const IntSize
& aSize
, float aOpacity
) {
105 int32_t redFactor
= 55 * aOpacity
; // 255 * 0.2125 * opacity
106 int32_t greenFactor
= 183 * aOpacity
; // 255 * 0.7154 * opacity
107 int32_t blueFactor
= 18 * aOpacity
; // 255 * 0.0721
108 int32_t sourceOffset
= aSourceStride
- 4 * aSize
.width
;
109 const uint8_t* sourcePixel
= aSourceData
;
110 int32_t destOffset
= aDestStride
- aSize
.width
;
111 uint8_t* destPixel
= aDestData
;
113 for (int32_t y
= 0; y
< aSize
.height
; y
++) {
114 for (int32_t x
= 0; x
< aSize
.width
; x
++) {
115 uint8_t a
= sourcePixel
[GFX_ARGB32_OFFSET_A
];
120 /* sRGB -> linearRGB -> intensity */
121 *destPixel
= static_cast<uint8_t>(
122 (gsRGBToLinearRGBMap
[sourcePixel
[GFX_ARGB32_OFFSET_R
]] *
124 gsRGBToLinearRGBMap
[sourcePixel
[GFX_ARGB32_OFFSET_G
]] *
126 gsRGBToLinearRGBMap
[sourcePixel
[GFX_ARGB32_OFFSET_B
]] *
130 uint8_t tempPixel
[4];
131 tempPixel
[GFX_ARGB32_OFFSET_B
] =
132 (255 * sourcePixel
[GFX_ARGB32_OFFSET_B
]) / a
;
133 tempPixel
[GFX_ARGB32_OFFSET_G
] =
134 (255 * sourcePixel
[GFX_ARGB32_OFFSET_G
]) / a
;
135 tempPixel
[GFX_ARGB32_OFFSET_R
] =
136 (255 * sourcePixel
[GFX_ARGB32_OFFSET_R
]) / a
;
138 /* sRGB -> linearRGB -> intensity */
139 *destPixel
= static_cast<uint8_t>(
140 ((gsRGBToLinearRGBMap
[tempPixel
[GFX_ARGB32_OFFSET_R
]] *
142 gsRGBToLinearRGBMap
[tempPixel
[GFX_ARGB32_OFFSET_G
]] *
144 gsRGBToLinearRGBMap
[tempPixel
[GFX_ARGB32_OFFSET_B
]] *
155 sourcePixel
+= sourceOffset
;
156 destPixel
+= destOffset
;
160 void DrawTarget::DrawCapturedDT(DrawTargetCapture
* aCaptureDT
,
161 const Matrix
& aTransform
) {
162 if (aTransform
.HasNonIntegerTranslation()) {
163 gfxWarning() << "Non integer translations are not supported for "
164 "DrawCaptureDT at this time!";
167 static_cast<DrawTargetCaptureImpl
*>(aCaptureDT
)
168 ->ReplayToDrawTarget(this, aTransform
);
171 void DrawTarget::PushDeviceSpaceClipRects(const IntRect
* aRects
,
173 Matrix oldTransform
= GetTransform();
174 SetTransform(Matrix());
176 RefPtr
<PathBuilder
> pathBuilder
= CreatePathBuilder();
177 for (uint32_t i
= 0; i
< aCount
; i
++) {
178 AppendRectToPath(pathBuilder
, Rect(aRects
[i
]));
180 RefPtr
<Path
> path
= pathBuilder
->Finish();
183 SetTransform(oldTransform
);
186 void DrawTarget::FillRoundedRect(const RoundedRect
& aRect
,
187 const Pattern
& aPattern
,
188 const DrawOptions
& aOptions
) {
189 RefPtr
<Path
> path
= MakePathForRoundedRect(*this, aRect
.rect
, aRect
.corners
);
190 Fill(path
, aPattern
, aOptions
);
193 void DrawTarget::StrokeGlyphs(ScaledFont
* aFont
, const GlyphBuffer
& aBuffer
,
194 const Pattern
& aPattern
,
195 const StrokeOptions
& aStrokeOptions
,
196 const DrawOptions
& aOptions
) {
197 RefPtr
<Path
> path
= aFont
->GetPathForGlyphs(aBuffer
, this);
198 Stroke(path
, aPattern
, aStrokeOptions
, aOptions
);
201 already_AddRefed
<SourceSurface
> DrawTarget::IntoLuminanceSource(
202 LuminanceType aMaskType
, float aOpacity
) {
203 RefPtr
<SourceSurface
> surface
= Snapshot();
208 IntSize size
= surface
->GetSize();
210 RefPtr
<DataSourceSurface
> maskSurface
= surface
->GetDataSurface();
215 DataSourceSurface::MappedSurface map
;
216 if (!maskSurface
->Map(DataSourceSurface::MapType::READ
, &map
)) {
220 // Create alpha channel mask for output
221 RefPtr
<DataSourceSurface
> destMaskSurface
=
222 Factory::CreateDataSourceSurface(size
, SurfaceFormat::A8
);
223 if (!destMaskSurface
) {
226 DataSourceSurface::MappedSurface destMap
;
227 if (!destMaskSurface
->Map(DataSourceSurface::MapType::WRITE
, &destMap
)) {
232 case LuminanceType::LUMINANCE
: {
233 ComputesRGBLuminanceMask(map
.mData
, map
.mStride
, destMap
.mData
,
234 destMap
.mStride
, size
, aOpacity
);
237 case LuminanceType::LINEARRGB
: {
238 ComputeLinearRGBLuminanceMask(map
.mData
, map
.mStride
, destMap
.mData
,
239 destMap
.mStride
, size
, aOpacity
);
244 maskSurface
->Unmap();
245 destMaskSurface
->Unmap();
247 return destMaskSurface
.forget();
250 void DrawTarget::Blur(const AlphaBoxBlur
& aBlur
) {
254 SurfaceFormat format
;
255 if (!LockBits(&data
, &size
, &stride
, &format
)) {
256 gfxWarning() << "Cannot perform in-place blur on non-data DrawTarget";
260 // Sanity check that the blur size matches the draw target.
261 MOZ_ASSERT(size
== aBlur
.GetSize());
262 MOZ_ASSERT(stride
== aBlur
.GetStride());
268 void DrawTarget::PadEdges(const IntRegion
& aRegion
) {
269 PadDrawTargetOutFromRegion(this, aRegion
);
272 bool DrawTarget::Unrotate(IntPoint aRotation
) {
276 SurfaceFormat format
;
278 if (LockBits(&data
, &size
, &stride
, &format
)) {
279 uint8_t bytesPerPixel
= BytesPerPixel(format
);
280 BufferUnrotate(data
, size
.width
* bytesPerPixel
, size
.height
, stride
,
281 aRotation
.x
* bytesPerPixel
, aRotation
.y
);
289 } // namespace mozilla