blob: cba39f021d187daa8b6ad9bea09bfe4d1ff83267 [file] [log] [blame]
mtklein9a5c47f2016-07-22 11:05:04 -07001/*
2 * Copyright 2016 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 */
7
Herb Derbyac04fef2017-01-13 17:34:33 -05008#include "SkArenaAlloc.h"
mtklein9a5c47f2016-07-22 11:05:04 -07009#include "SkBlitter.h"
Mike Kleine902f8d2016-10-26 15:32:26 -040010#include "SkBlendModePriv.h"
mtklein9a5c47f2016-07-22 11:05:04 -070011#include "SkColor.h"
12#include "SkColorFilter.h"
Mike Klein3b840e92017-05-23 15:06:17 -040013#include "SkColorSpaceXformer.h"
Mike Kleinbaaf8ad2016-09-29 09:04:15 -040014#include "SkOpts.h"
mtklein9a5c47f2016-07-22 11:05:04 -070015#include "SkPM4f.h"
Mike Klein744908e2016-11-11 12:51:36 -050016#include "SkPM4fPriv.h"
mtklein9a5c47f2016-07-22 11:05:04 -070017#include "SkRasterPipeline.h"
18#include "SkShader.h"
Florin Malita4aed1382017-05-25 10:38:07 -040019#include "SkShaderBase.h"
Mike Klein14c8f822016-11-30 19:39:43 -050020#include "SkUtils.h"
Mike Klein581e6982017-05-03 13:05:13 -040021#include "../jumper/SkJumper.h"
mtklein9a5c47f2016-07-22 11:05:04 -070022
Mike Klein4e3bc862017-05-22 20:15:17 +000023class SkRasterPipelineBlitter final : public SkBlitter {
mtklein9a5c47f2016-07-22 11:05:04 -070024public:
Mike Klein3b840e92017-05-23 15:06:17 -040025 // This is our common entrypoint for creating the blitter once we've sorted out shaders.
Mike Kleinb35cb312017-05-19 12:01:01 -040026 static SkBlitter* Create(const SkPixmap&, const SkPaint&, SkArenaAlloc*,
Florin Malita4aed1382017-05-25 10:38:07 -040027 const SkRasterPipeline& shaderPipeline,
Mike Kleinb35cb312017-05-19 12:01:01 -040028 bool is_opaque, bool is_constant, bool wants_dither);
29
Mike Klein3b840e92017-05-23 15:06:17 -040030 SkRasterPipelineBlitter(SkPixmap dst,
31 SkBlendMode blend,
Mike Reed6867eee2017-06-02 13:25:15 -040032 SkArenaAlloc* alloc)
mtklein9a5c47f2016-07-22 11:05:04 -070033 : fDst(dst)
Mike Kleine902f8d2016-10-26 15:32:26 -040034 , fBlend(blend)
Mike Klein0a76b412017-05-22 12:01:59 -040035 , fAlloc(alloc)
Mike Kleinb24704d2017-05-24 07:53:00 -040036 , fColorPipeline(alloc)
mtklein9a5c47f2016-07-22 11:05:04 -070037 {}
38
Mike Klein34d10d72017-06-05 07:10:01 -040039 void blitH (int x, int y, int w) override;
40 void blitAntiH (int x, int y, const SkAlpha[], const int16_t[]) override;
41 void blitAntiH2(int x, int y, U8CPU a0, U8CPU a1) override;
42 void blitMask (const SkMask&, const SkIRect& clip) override;
mtklein9a5c47f2016-07-22 11:05:04 -070043
44 // TODO: The default implementations of the other blits look fine,
45 // but some of them like blitV could probably benefit from custom
46 // blits using something like a SkRasterPipeline::runFew() method.
47
48private:
Mike Klein14c8f822016-11-30 19:39:43 -050049 void append_load_d(SkRasterPipeline*) const;
50 void append_blend (SkRasterPipeline*) const;
51 void maybe_clamp (SkRasterPipeline*) const;
52 void append_store (SkRasterPipeline*) const;
mtklein8e4373f2016-07-22 14:20:27 -070053
Florin Malita4aed1382017-05-25 10:38:07 -040054 SkPixmap fDst;
55 SkBlendMode fBlend;
56 SkArenaAlloc* fAlloc;
Florin Malita4aed1382017-05-25 10:38:07 -040057 SkRasterPipeline fColorPipeline;
mtklein9a5c47f2016-07-22 11:05:04 -070058
Mike Klein8729e5b2017-02-16 06:51:48 -050059 // We may be able to specialize blitH() into a memset.
60 bool fCanMemsetInBlitH = false;
61 uint64_t fMemsetColor = 0; // Big enough for largest dst format, F16.
Mike Kleinbd3fe472016-10-25 15:43:46 -040062
Mike Klein8729e5b2017-02-16 06:51:48 -050063 // Built lazily on first use.
Mike Klein761d27c2017-06-01 12:37:08 -040064 std::function<void(size_t, size_t, size_t)> fBlitH,
65 fBlitAntiH,
66 fBlitMaskA8,
67 fBlitMaskLCD16;
Mike Klein8729e5b2017-02-16 06:51:48 -050068
69 // These values are pointed to by the blit pipelines above,
70 // which allows us to adjust them from call to call.
Mike Kleindb711c92017-05-03 17:57:48 -040071 void* fDstPtr = nullptr;
72 const void* fMaskPtr = nullptr;
73 float fCurrentCoverage = 0.0f;
Mike Klein9b10f8f2017-06-01 13:11:16 -040074 float fDitherRate = 0.0f;
Mike Kleinbd3fe472016-10-25 15:43:46 -040075
mtklein9a5c47f2016-07-22 11:05:04 -070076 typedef SkBlitter INHERITED;
77};
78
79SkBlitter* SkCreateRasterPipelineBlitter(const SkPixmap& dst,
80 const SkPaint& paint,
Mike Kleinfb191da2016-11-15 13:20:33 -050081 const SkMatrix& ctm,
Matt Sarett25834ff2017-02-15 15:54:35 -050082 SkArenaAlloc* alloc) {
Mike Klein3b840e92017-05-23 15:06:17 -040083 SkColorSpace* dstCS = dst.colorSpace();
84 auto paintColor = alloc->make<SkPM4f>(SkPM4f_from_SkColor(paint.getColor(), dstCS));
Florin Malita4aed1382017-05-25 10:38:07 -040085 auto shader = as_SB(paint.getShader());
Mike Reed98b7a6a2017-05-26 09:32:22 -040086 bool wants_dither = paint.isDither();
87
88#ifdef SK_SUPPORT_LEGACY_RASTERPIPELINE
89 wants_dither = shader && shader->asAGradient(nullptr) >= SkShader::kLinear_GradientType;
90#endif
Mike Klein3b840e92017-05-23 15:06:17 -040091
92 SkRasterPipeline_<256> shaderPipeline;
93 if (!shader) {
94 // Having no shader makes things nice and easy... just use the paint color.
95 shaderPipeline.append(SkRasterPipeline::constant_color, paintColor);
96 bool is_opaque = paintColor->a() == 1.0f,
Mike Reed98b7a6a2017-05-26 09:32:22 -040097 is_constant = true;
Mike Klein3b840e92017-05-23 15:06:17 -040098 return SkRasterPipelineBlitter::Create(dst, paint, alloc,
Mike Reed6867eee2017-06-02 13:25:15 -040099 shaderPipeline,
Mike Klein3b840e92017-05-23 15:06:17 -0400100 is_opaque, is_constant, wants_dither);
101 }
102
103 bool is_opaque = shader->isOpaque() && paintColor->a() == 1.0f;
104 bool is_constant = shader->isConstant();
Mike Klein3b840e92017-05-23 15:06:17 -0400105 if (shader->appendStages(&shaderPipeline, dstCS, alloc, ctm, paint)) {
106 if (paintColor->a() != 1.0f) {
107 shaderPipeline.append(SkRasterPipeline::scale_1_float, &paintColor->fVec[SkPM4f::A]);
108 }
Mike Reed6867eee2017-06-02 13:25:15 -0400109 return SkRasterPipelineBlitter::Create(dst, paint, alloc, shaderPipeline,
Mike Klein3b840e92017-05-23 15:06:17 -0400110 is_opaque, is_constant, wants_dither);
111 }
112
Mike Reed6867eee2017-06-02 13:25:15 -0400113 return alloc->make<SkNullBlitter>();
Mike Reed02640952017-05-19 15:32:13 -0400114}
115
116SkBlitter* SkCreateRasterPipelineBlitter(const SkPixmap& dst,
117 const SkPaint& paint,
Mike Reed02640952017-05-19 15:32:13 -0400118 const SkRasterPipeline& shaderPipeline,
Mike Kleinb35cb312017-05-19 12:01:01 -0400119 bool is_opaque,
120 bool wants_dither,
Mike Reed02640952017-05-19 15:32:13 -0400121 SkArenaAlloc* alloc) {
Mike Kleinb35cb312017-05-19 12:01:01 -0400122 bool is_constant = false; // If this were the case, it'd be better to just set a paint color.
Mike Reed6867eee2017-06-02 13:25:15 -0400123 return SkRasterPipelineBlitter::Create(dst, paint, alloc, shaderPipeline,
Mike Klein3b840e92017-05-23 15:06:17 -0400124 is_opaque, is_constant, wants_dither);
Mike Reed02640952017-05-19 15:32:13 -0400125}
126
Mike Kleinb35cb312017-05-19 12:01:01 -0400127SkBlitter* SkRasterPipelineBlitter::Create(const SkPixmap& dst,
128 const SkPaint& paint,
129 SkArenaAlloc* alloc,
130 const SkRasterPipeline& shaderPipeline,
131 bool is_opaque,
132 bool is_constant,
133 bool wants_dither) {
Mike Klein3b840e92017-05-23 15:06:17 -0400134 auto blitter = alloc->make<SkRasterPipelineBlitter>(dst,
135 paint.getBlendMode(),
Mike Reed6867eee2017-06-02 13:25:15 -0400136 alloc);
Mike Reed02640952017-05-19 15:32:13 -0400137
Mike Kleinb35cb312017-05-19 12:01:01 -0400138 // Our job in this factory is to fill out the blitter's color pipeline.
139 // This is the common front of the full blit pipelines, each constructed lazily on first use.
140 // The full blit pipelines handle reading and writing the dst, blending, coverage, dithering.
141 auto colorPipeline = &blitter->fColorPipeline;
142
Mike Klein3b840e92017-05-23 15:06:17 -0400143 // Let's get the shader in first.
Mike Reed6867eee2017-06-02 13:25:15 -0400144 colorPipeline->extend(shaderPipeline);
Mike Reed02640952017-05-19 15:32:13 -0400145
Mike Kleinb35cb312017-05-19 12:01:01 -0400146 // If there's a color filter it comes next.
147 if (auto colorFilter = paint.getColorFilter()) {
148 colorFilter->appendStages(colorPipeline, dst.colorSpace(), alloc, is_opaque);
mtkleina4a44882016-11-04 13:20:07 -0700149 is_opaque = is_opaque && (colorFilter->getFlags() & SkColorFilter::kAlphaUnchanged_Flag);
mtklein9a5c47f2016-07-22 11:05:04 -0700150 }
151
Mike Kleinb35cb312017-05-19 12:01:01 -0400152 // We'll dither if the shader wants to, or if we're drawing 565 and the paint wants to.
153 // Not all formats make sense to dither (think, F16). We set their dither rate to zero.
154 // We need to decide if we're going to dither now to keep is_constant accurate.
155 if (wants_dither ||
156 (paint.isDither() && dst.info().colorType() == kRGB_565_SkColorType)) {
157 switch (dst.info().colorType()) {
Mike Klein9b10f8f2017-06-01 13:11:16 -0400158 default: blitter->fDitherRate = 0.0f; break;
159 case kRGB_565_SkColorType: blitter->fDitherRate = 1/63.0f; break;
Mike Kleinb35cb312017-05-19 12:01:01 -0400160 case kRGBA_8888_SkColorType:
Mike Klein9b10f8f2017-06-01 13:11:16 -0400161 case kBGRA_8888_SkColorType: blitter->fDitherRate = 1/255.0f; break;
Mike Kleinb35cb312017-05-19 12:01:01 -0400162 }
163 }
Mike Klein9b10f8f2017-06-01 13:11:16 -0400164 is_constant = is_constant && (blitter->fDitherRate == 0.0f);
Mike Kleinb35cb312017-05-19 12:01:01 -0400165
166 // We're logically done here. The code between here and return blitter is all optimization.
167
168 // A pipeline that's still constant here can collapse back into a constant color.
Mike Klein14c8f822016-11-30 19:39:43 -0500169 if (is_constant) {
Mike Kleinb35cb312017-05-19 12:01:01 -0400170 auto constantColor = alloc->make<SkPM4f>();
171 colorPipeline->append(SkRasterPipeline::store_f32, &constantColor);
Mike Klein761d27c2017-06-01 12:37:08 -0400172 colorPipeline->run(0,0,1);
Mike Kleinb24704d2017-05-24 07:53:00 -0400173 colorPipeline->reset();
Mike Kleinb35cb312017-05-19 12:01:01 -0400174 colorPipeline->append(SkRasterPipeline::constant_color, constantColor);
mtkleina4a44882016-11-04 13:20:07 -0700175
Mike Kleinb35cb312017-05-19 12:01:01 -0400176 is_opaque = constantColor->a() == 1.0f;
Mike Klein66866172016-11-03 12:22:01 -0400177 }
mtklein8e4373f2016-07-22 14:20:27 -0700178
Mike Kleinb35cb312017-05-19 12:01:01 -0400179 // We can strength-reduce SrcOver into Src when opaque.
180 if (is_opaque && blitter->fBlend == SkBlendMode::kSrcOver) {
181 blitter->fBlend = SkBlendMode::kSrc;
mtklein8e4373f2016-07-22 14:20:27 -0700182 }
183
Mike Kleinb35cb312017-05-19 12:01:01 -0400184 // When we're drawing a constant color in Src mode, we can sometimes just memset.
185 // (The previous two optimizations help find more opportunities for this one.)
186 if (is_constant && blitter->fBlend == SkBlendMode::kSrc) {
187 // Run our color pipeline all the way through to produce what we'd memset when we can.
188 // Not all blits can memset, so we need to keep colorPipeline too.
Mike Kleinb24704d2017-05-24 07:53:00 -0400189 SkRasterPipeline_<256> p;
Mike Kleinb35cb312017-05-19 12:01:01 -0400190 p.extend(*colorPipeline);
191 blitter->fDstPtr = &blitter->fMemsetColor;
192 blitter->append_store(&p);
Mike Klein761d27c2017-06-01 12:37:08 -0400193 p.run(0,0,1);
Mike Klein14c8f822016-11-30 19:39:43 -0500194
Mike Kleinb35cb312017-05-19 12:01:01 -0400195 blitter->fCanMemsetInBlitH = true;
Mike Klein14c8f822016-11-30 19:39:43 -0500196 }
Mike Kleinb35cb312017-05-19 12:01:01 -0400197
198 return blitter;
mtklein9a5c47f2016-07-22 11:05:04 -0700199}
200
Mike Kleine902f8d2016-10-26 15:32:26 -0400201void SkRasterPipelineBlitter::append_load_d(SkRasterPipeline* p) const {
Mike Klein8c8cb5b2017-01-06 10:21:56 -0500202 p->append(SkRasterPipeline::move_src_dst);
mtklein8e4373f2016-07-22 14:20:27 -0700203 switch (fDst.info().colorType()) {
Mike Kleine71b1672017-01-13 07:59:23 -0500204 case kAlpha_8_SkColorType: p->append(SkRasterPipeline::load_a8, &fDstPtr); break;
Mike Klein8c8cb5b2017-01-06 10:21:56 -0500205 case kRGB_565_SkColorType: p->append(SkRasterPipeline::load_565, &fDstPtr); break;
Mike Kleine03339a2016-11-28 13:24:27 -0500206 case kBGRA_8888_SkColorType:
Mike Klein8c8cb5b2017-01-06 10:21:56 -0500207 case kRGBA_8888_SkColorType: p->append(SkRasterPipeline::load_8888, &fDstPtr); break;
208 case kRGBA_F16_SkColorType: p->append(SkRasterPipeline::load_f16, &fDstPtr); break;
mtklein8e4373f2016-07-22 14:20:27 -0700209 default: break;
210 }
Mike Kleine03339a2016-11-28 13:24:27 -0500211 if (fDst.info().colorType() == kBGRA_8888_SkColorType) {
Mike Klein8c8cb5b2017-01-06 10:21:56 -0500212 p->append(SkRasterPipeline::swap_rb);
Mike Kleine03339a2016-11-28 13:24:27 -0500213 }
214 if (fDst.info().gammaCloseToSRGB()) {
Mike Klein8c8cb5b2017-01-06 10:21:56 -0500215 p->append_from_srgb(fDst.info().alphaType());
Mike Kleine03339a2016-11-28 13:24:27 -0500216 }
Mike Klein8c8cb5b2017-01-06 10:21:56 -0500217 p->append(SkRasterPipeline::swap);
mtklein8e4373f2016-07-22 14:20:27 -0700218}
219
Mike Klein14c8f822016-11-30 19:39:43 -0500220void SkRasterPipelineBlitter::append_store(SkRasterPipeline* p) const {
Matt Sarettf3880932017-03-24 10:06:03 -0400221 if (fDst.info().gammaCloseToSRGB()) {
Mike Kleine03339a2016-11-28 13:24:27 -0500222 p->append(SkRasterPipeline::to_srgb);
223 }
Mike Klein9b10f8f2017-06-01 13:11:16 -0400224 if (fDitherRate > 0.0f) {
Mike Kleindb711c92017-05-03 17:57:48 -0400225 // We dither after any sRGB transfer function to make sure our 1/255.0f is sensible
226 // over the whole range. If we did it before, 1/255.0f is too big a rate near zero.
Mike Klein9b10f8f2017-06-01 13:11:16 -0400227 p->append(SkRasterPipeline::dither, &fDitherRate);
Mike Kleindb711c92017-05-03 17:57:48 -0400228 }
229
Mike Kleine03339a2016-11-28 13:24:27 -0500230 if (fDst.info().colorType() == kBGRA_8888_SkColorType) {
231 p->append(SkRasterPipeline::swap_rb);
232 }
mtklein8e4373f2016-07-22 14:20:27 -0700233 switch (fDst.info().colorType()) {
Mike Kleine71b1672017-01-13 07:59:23 -0500234 case kAlpha_8_SkColorType: p->append(SkRasterPipeline::store_a8, &fDstPtr); break;
Mike Kleine03339a2016-11-28 13:24:27 -0500235 case kRGB_565_SkColorType: p->append(SkRasterPipeline::store_565, &fDstPtr); break;
236 case kBGRA_8888_SkColorType:
237 case kRGBA_8888_SkColorType: p->append(SkRasterPipeline::store_8888, &fDstPtr); break;
238 case kRGBA_F16_SkColorType: p->append(SkRasterPipeline::store_f16, &fDstPtr); break;
mtklein8e4373f2016-07-22 14:20:27 -0700239 default: break;
240 }
241}
242
Mike Kleine902f8d2016-10-26 15:32:26 -0400243void SkRasterPipelineBlitter::append_blend(SkRasterPipeline* p) const {
Mike Kleinbb338332017-05-04 12:42:52 -0400244 SkBlendMode_AppendStages(fBlend, p);
Mike Kleine902f8d2016-10-26 15:32:26 -0400245}
Mike Kleine9f74b82016-10-25 13:31:21 -0400246
Mike Klein130863e2016-10-27 11:29:36 -0400247void SkRasterPipelineBlitter::maybe_clamp(SkRasterPipeline* p) const {
Mike Kleine03339a2016-11-28 13:24:27 -0500248 if (SkBlendMode_CanOverflow(fBlend)) {
249 p->append(SkRasterPipeline::clamp_a);
250 }
Mike Klein130863e2016-10-27 11:29:36 -0400251}
252
mtklein9a5c47f2016-07-22 11:05:04 -0700253void SkRasterPipelineBlitter::blitH(int x, int y, int w) {
Mike Klein8729e5b2017-02-16 06:51:48 -0500254 fDstPtr = fDst.writable_addr(0,y);
Mike Klein8729e5b2017-02-16 06:51:48 -0500255
256 if (fCanMemsetInBlitH) {
257 switch (fDst.shiftPerPixel()) {
Mike Klein86125482017-02-17 16:10:46 +0000258 case 0: memset ((uint8_t *)fDstPtr + x, fMemsetColor, w); return;
259 case 1: sk_memset16((uint16_t*)fDstPtr + x, fMemsetColor, w); return;
260 case 2: sk_memset32((uint32_t*)fDstPtr + x, fMemsetColor, w); return;
261 case 3: sk_memset64((uint64_t*)fDstPtr + x, fMemsetColor, w); return;
Mike Klein8729e5b2017-02-16 06:51:48 -0500262 default: break;
263 }
264 }
265
Mike Klein0a76b412017-05-22 12:01:59 -0400266 if (!fBlitH) {
Mike Kleinb24704d2017-05-24 07:53:00 -0400267 SkRasterPipeline p(fAlloc);
Mike Kleinb35cb312017-05-19 12:01:01 -0400268 p.extend(fColorPipeline);
Mike Klein50626262017-05-25 13:06:57 -0400269 if (fBlend == SkBlendMode::kSrcOver
270 && fDst.info().colorType() == kRGBA_8888_SkColorType
271 && !fDst.colorSpace()
Mike Klein9b10f8f2017-06-01 13:11:16 -0400272 && fDitherRate == 0.0f) {
Mike Klein50626262017-05-25 13:06:57 -0400273 p.append(SkRasterPipeline::srcover_rgba_8888, &fDstPtr);
274 } else {
275 if (fBlend != SkBlendMode::kSrc) {
276 this->append_load_d(&p);
277 this->append_blend(&p);
278 this->maybe_clamp(&p);
279 }
280 this->append_store(&p);
Mike Klein66866172016-11-03 12:22:01 -0400281 }
Mike Kleinb24704d2017-05-24 07:53:00 -0400282 fBlitH = p.compile();
Mike Kleinbd3fe472016-10-25 15:43:46 -0400283 }
Mike Klein761d27c2017-06-01 12:37:08 -0400284 fBlitH(x,y,w);
mtklein9a5c47f2016-07-22 11:05:04 -0700285}
286
287void SkRasterPipelineBlitter::blitAntiH(int x, int y, const SkAlpha aa[], const int16_t runs[]) {
Mike Klein0a76b412017-05-22 12:01:59 -0400288 if (!fBlitAntiH) {
Mike Kleinb24704d2017-05-24 07:53:00 -0400289 SkRasterPipeline p(fAlloc);
Mike Kleinb35cb312017-05-19 12:01:01 -0400290 p.extend(fColorPipeline);
Mike Klein66866172016-11-03 12:22:01 -0400291 if (fBlend == SkBlendMode::kSrcOver) {
Mike Kleinbabd93e2016-11-30 16:05:10 -0500292 p.append(SkRasterPipeline::scale_1_float, &fCurrentCoverage);
Mike Klein66866172016-11-03 12:22:01 -0400293 this->append_load_d(&p);
294 this->append_blend(&p);
295 } else {
296 this->append_load_d(&p);
297 this->append_blend(&p);
Mike Kleinbabd93e2016-11-30 16:05:10 -0500298 p.append(SkRasterPipeline::lerp_1_float, &fCurrentCoverage);
Mike Klein66866172016-11-03 12:22:01 -0400299 }
Mike Klein130863e2016-10-27 11:29:36 -0400300 this->maybe_clamp(&p);
Mike Kleine902f8d2016-10-26 15:32:26 -0400301 this->append_store(&p);
Mike Kleinb24704d2017-05-24 07:53:00 -0400302 fBlitAntiH = p.compile();
Mike Kleinbd3fe472016-10-25 15:43:46 -0400303 }
mtklein9a5c47f2016-07-22 11:05:04 -0700304
Mike Kleinbd3fe472016-10-25 15:43:46 -0400305 fDstPtr = fDst.writable_addr(0,y);
mtklein9a5c47f2016-07-22 11:05:04 -0700306 for (int16_t run = *runs; run > 0; run = *runs) {
Mike Kleinaeb79592016-11-07 09:29:07 -0500307 switch (*aa) {
308 case 0x00: break;
309 case 0xff: this->blitH(x,y,run); break;
310 default:
Mike Kleinbabd93e2016-11-30 16:05:10 -0500311 fCurrentCoverage = *aa * (1/255.0f);
Mike Klein761d27c2017-06-01 12:37:08 -0400312 fBlitAntiH(x,y,run);
Mike Kleinaeb79592016-11-07 09:29:07 -0500313 }
mtklein9a5c47f2016-07-22 11:05:04 -0700314 x += run;
315 runs += run;
316 aa += run;
317 }
318}
319
Mike Klein34d10d72017-06-05 07:10:01 -0400320void SkRasterPipelineBlitter::blitAntiH2(int x, int y, U8CPU a0, U8CPU a1) {
321 SkIRect clip = {x,y, x+2,y+1};
322 uint8_t coverage[] = { (uint8_t)a0, (uint8_t)a1 };
323
324 SkMask mask;
325 mask.fImage = coverage;
326 mask.fBounds = clip;
327 mask.fRowBytes = 2;
328 mask.fFormat = SkMask::kA8_Format;
329
330 this->blitMask(mask, clip);
331}
332
mtklein9a5c47f2016-07-22 11:05:04 -0700333void SkRasterPipelineBlitter::blitMask(const SkMask& mask, const SkIRect& clip) {
334 if (mask.fFormat == SkMask::kBW_Format) {
335 // TODO: native BW masks?
336 return INHERITED::blitMask(mask, clip);
337 }
338
Mike Klein0a76b412017-05-22 12:01:59 -0400339 if (mask.fFormat == SkMask::kA8_Format && !fBlitMaskA8) {
Mike Kleinb24704d2017-05-24 07:53:00 -0400340 SkRasterPipeline p(fAlloc);
Mike Kleinb35cb312017-05-19 12:01:01 -0400341 p.extend(fColorPipeline);
Mike Klein66866172016-11-03 12:22:01 -0400342 if (fBlend == SkBlendMode::kSrcOver) {
343 p.append(SkRasterPipeline::scale_u8, &fMaskPtr);
344 this->append_load_d(&p);
345 this->append_blend(&p);
346 } else {
347 this->append_load_d(&p);
348 this->append_blend(&p);
349 p.append(SkRasterPipeline::lerp_u8, &fMaskPtr);
350 }
Mike Klein130863e2016-10-27 11:29:36 -0400351 this->maybe_clamp(&p);
Mike Kleine902f8d2016-10-26 15:32:26 -0400352 this->append_store(&p);
Mike Kleinb24704d2017-05-24 07:53:00 -0400353 fBlitMaskA8 = p.compile();
Mike Kleinbd3fe472016-10-25 15:43:46 -0400354 }
355
Mike Klein0a76b412017-05-22 12:01:59 -0400356 if (mask.fFormat == SkMask::kLCD16_Format && !fBlitMaskLCD16) {
Mike Kleinb24704d2017-05-24 07:53:00 -0400357 SkRasterPipeline p(fAlloc);
Mike Kleinb35cb312017-05-19 12:01:01 -0400358 p.extend(fColorPipeline);
Mike Kleine902f8d2016-10-26 15:32:26 -0400359 this->append_load_d(&p);
360 this->append_blend(&p);
Mike Kleinbd3fe472016-10-25 15:43:46 -0400361 p.append(SkRasterPipeline::lerp_565, &fMaskPtr);
Mike Klein130863e2016-10-27 11:29:36 -0400362 this->maybe_clamp(&p);
Mike Kleine902f8d2016-10-26 15:32:26 -0400363 this->append_store(&p);
Mike Kleinb24704d2017-05-24 07:53:00 -0400364 fBlitMaskLCD16 = p.compile();
Mike Kleinbd3fe472016-10-25 15:43:46 -0400365 }
366
367 int x = clip.left();
368 for (int y = clip.top(); y < clip.bottom(); y++) {
369 fDstPtr = fDst.writable_addr(0,y);
370
mtklein9a5c47f2016-07-22 11:05:04 -0700371 switch (mask.fFormat) {
372 case SkMask::kA8_Format:
Mike Kleinbd3fe472016-10-25 15:43:46 -0400373 fMaskPtr = mask.getAddr8(x,y)-x;
Mike Klein761d27c2017-06-01 12:37:08 -0400374 fBlitMaskA8(x,y,clip.width());
mtklein9a5c47f2016-07-22 11:05:04 -0700375 break;
376 case SkMask::kLCD16_Format:
Mike Kleinbd3fe472016-10-25 15:43:46 -0400377 fMaskPtr = mask.getAddrLCD16(x,y)-x;
Mike Klein761d27c2017-06-01 12:37:08 -0400378 fBlitMaskLCD16(x,y,clip.width());
mtklein9a5c47f2016-07-22 11:05:04 -0700379 break;
Mike Kleinbd3fe472016-10-25 15:43:46 -0400380 default:
381 // TODO
382 break;
mtklein9a5c47f2016-07-22 11:05:04 -0700383 }
mtklein9a5c47f2016-07-22 11:05:04 -0700384 }
385}