mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 1 | /* |
| 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 Derby | ac04fef | 2017-01-13 17:34:33 -0500 | [diff] [blame] | 8 | #include "SkArenaAlloc.h" |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 9 | #include "SkBlitter.h" |
Mike Klein | e902f8d | 2016-10-26 15:32:26 -0400 | [diff] [blame] | 10 | #include "SkBlendModePriv.h" |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 11 | #include "SkColor.h" |
| 12 | #include "SkColorFilter.h" |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 13 | #include "SkColorSpaceXformer.h" |
Mike Klein | baaf8ad | 2016-09-29 09:04:15 -0400 | [diff] [blame] | 14 | #include "SkOpts.h" |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 15 | #include "SkPM4f.h" |
Mike Klein | 744908e | 2016-11-11 12:51:36 -0500 | [diff] [blame] | 16 | #include "SkPM4fPriv.h" |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 17 | #include "SkRasterPipeline.h" |
| 18 | #include "SkShader.h" |
Florin Malita | 4aed138 | 2017-05-25 10:38:07 -0400 | [diff] [blame] | 19 | #include "SkShaderBase.h" |
Mike Klein | 14c8f82 | 2016-11-30 19:39:43 -0500 | [diff] [blame] | 20 | #include "SkUtils.h" |
Mike Klein | 581e698 | 2017-05-03 13:05:13 -0400 | [diff] [blame] | 21 | #include "../jumper/SkJumper.h" |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 22 | |
Mike Klein | 4e3bc86 | 2017-05-22 20:15:17 +0000 | [diff] [blame] | 23 | class SkRasterPipelineBlitter final : public SkBlitter { |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 24 | public: |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 25 | // This is our common entrypoint for creating the blitter once we've sorted out shaders. |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 26 | static SkBlitter* Create(const SkPixmap&, const SkPaint&, SkArenaAlloc*, |
Florin Malita | 4aed138 | 2017-05-25 10:38:07 -0400 | [diff] [blame] | 27 | const SkRasterPipeline& shaderPipeline, |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 28 | SkShaderBase::Context*, |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 29 | bool is_opaque, bool is_constant); |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 30 | |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 31 | SkRasterPipelineBlitter(SkPixmap dst, |
| 32 | SkBlendMode blend, |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 33 | SkArenaAlloc* alloc, |
| 34 | SkShaderBase::Context* burstCtx) |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 35 | : fDst(dst) |
Mike Klein | e902f8d | 2016-10-26 15:32:26 -0400 | [diff] [blame] | 36 | , fBlend(blend) |
Mike Klein | 0a76b41 | 2017-05-22 12:01:59 -0400 | [diff] [blame] | 37 | , fAlloc(alloc) |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 38 | , fBurstCtx(burstCtx) |
Mike Klein | b24704d | 2017-05-24 07:53:00 -0400 | [diff] [blame] | 39 | , fColorPipeline(alloc) |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 40 | {} |
| 41 | |
Mike Klein | 34d10d7 | 2017-06-05 07:10:01 -0400 | [diff] [blame] | 42 | void blitH (int x, int y, int w) override; |
| 43 | void blitAntiH (int x, int y, const SkAlpha[], const int16_t[]) override; |
| 44 | void blitAntiH2(int x, int y, U8CPU a0, U8CPU a1) override; |
| 45 | void blitMask (const SkMask&, const SkIRect& clip) override; |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 46 | void blitRect (int x, int y, int width, int height) override; |
Mike Reed | e6befa5 | 2017-08-28 11:30:48 -0400 | [diff] [blame] | 47 | void blitV (int x, int y, int height, SkAlpha alpha) override; |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 48 | |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 49 | private: |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 50 | void append_load_dst(SkRasterPipeline*) const; |
| 51 | void append_store (SkRasterPipeline*) const; |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 52 | |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 53 | // If we have an burst context, use it to fill our shader buffer. |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 54 | void burst_shade(int x, int y, int w); |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 55 | |
Florin Malita | 4aed138 | 2017-05-25 10:38:07 -0400 | [diff] [blame] | 56 | SkPixmap fDst; |
| 57 | SkBlendMode fBlend; |
| 58 | SkArenaAlloc* fAlloc; |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 59 | SkShaderBase::Context* fBurstCtx; |
Florin Malita | 4aed138 | 2017-05-25 10:38:07 -0400 | [diff] [blame] | 60 | SkRasterPipeline fColorPipeline; |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 61 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 62 | SkJumper_MemoryCtx fShaderOutput = {nullptr,0}, // Possibly updated each call to burst_shade(). |
| 63 | fDstPtr = {nullptr,0}, // Always points to the top-left of fDst. |
| 64 | fMaskPtr = {nullptr,0}; // Updated each call to blitMask(). |
| 65 | |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 66 | // We may be able to specialize blitH() or blitRect() into a memset. |
| 67 | bool fCanMemsetInBlitRect = false; |
Mike Klein | 8729e5b | 2017-02-16 06:51:48 -0500 | [diff] [blame] | 68 | uint64_t fMemsetColor = 0; // Big enough for largest dst format, F16. |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 69 | |
Mike Klein | 8729e5b | 2017-02-16 06:51:48 -0500 | [diff] [blame] | 70 | // Built lazily on first use. |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 71 | std::function<void(size_t, size_t, size_t, size_t)> fBlitRect, |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 72 | fBlitAntiH, |
| 73 | fBlitMaskA8, |
| 74 | fBlitMaskLCD16; |
Mike Klein | 8729e5b | 2017-02-16 06:51:48 -0500 | [diff] [blame] | 75 | |
| 76 | // These values are pointed to by the blit pipelines above, |
| 77 | // which allows us to adjust them from call to call. |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 78 | float fCurrentCoverage = 0.0f; |
| 79 | float fDitherRate = 0.0f; |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 80 | |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 81 | std::vector<SkPM4f> fShaderBuffer; |
| 82 | |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 83 | typedef SkBlitter INHERITED; |
| 84 | }; |
| 85 | |
| 86 | SkBlitter* SkCreateRasterPipelineBlitter(const SkPixmap& dst, |
| 87 | const SkPaint& paint, |
Mike Klein | fb191da | 2016-11-15 13:20:33 -0500 | [diff] [blame] | 88 | const SkMatrix& ctm, |
Matt Sarett | 25834ff | 2017-02-15 15:54:35 -0500 | [diff] [blame] | 89 | SkArenaAlloc* alloc) { |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 90 | SkColorSpace* dstCS = dst.colorSpace(); |
Mike Reed | c91e387 | 2017-07-05 14:12:37 -0400 | [diff] [blame] | 91 | SkPM4f paintColor = SkPM4f_from_SkColor(paint.getColor(), dstCS); |
Florin Malita | 4aed138 | 2017-05-25 10:38:07 -0400 | [diff] [blame] | 92 | auto shader = as_SB(paint.getShader()); |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 93 | |
| 94 | SkRasterPipeline_<256> shaderPipeline; |
| 95 | if (!shader) { |
| 96 | // Having no shader makes things nice and easy... just use the paint color. |
Mike Klein | 073073e | 2017-08-03 09:42:53 -0400 | [diff] [blame] | 97 | shaderPipeline.append_constant_color(alloc, paintColor); |
Mike Reed | c91e387 | 2017-07-05 14:12:37 -0400 | [diff] [blame] | 98 | bool is_opaque = paintColor.a() == 1.0f, |
Mike Reed | 98b7a6a | 2017-05-26 09:32:22 -0400 | [diff] [blame] | 99 | is_constant = true; |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 100 | return SkRasterPipelineBlitter::Create(dst, paint, alloc, |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 101 | shaderPipeline, nullptr, |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 102 | is_opaque, is_constant); |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 103 | } |
| 104 | |
Mike Reed | c91e387 | 2017-07-05 14:12:37 -0400 | [diff] [blame] | 105 | bool is_opaque = shader->isOpaque() && paintColor.a() == 1.0f; |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 106 | bool is_constant = shader->isConstant(); |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 107 | |
| 108 | // Check whether the shader prefers to run in burst mode. |
| 109 | if (auto* burstCtx = shader->makeBurstPipelineContext( |
| 110 | SkShaderBase::ContextRec(paint, ctm, nullptr, SkShaderBase::ContextRec::kPM4f_DstType, |
| 111 | dstCS), alloc)) { |
| 112 | return SkRasterPipelineBlitter::Create(dst, paint, alloc, |
| 113 | shaderPipeline, burstCtx, |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 114 | is_opaque, is_constant); |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 115 | } |
| 116 | |
Mike Reed | 1d8c42e | 2017-08-29 14:58:19 -0400 | [diff] [blame] | 117 | if (shader->appendStages({&shaderPipeline, alloc, dstCS, paint, nullptr, ctm})) { |
Mike Reed | c91e387 | 2017-07-05 14:12:37 -0400 | [diff] [blame] | 118 | if (paintColor.a() != 1.0f) { |
| 119 | shaderPipeline.append(SkRasterPipeline::scale_1_float, |
| 120 | alloc->make<float>(paintColor.a())); |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 121 | } |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 122 | return SkRasterPipelineBlitter::Create(dst, paint, alloc, shaderPipeline, nullptr, |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 123 | is_opaque, is_constant); |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 124 | } |
| 125 | |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 126 | // The shader has opted out of drawing anything. |
Mike Reed | 6867eee | 2017-06-02 13:25:15 -0400 | [diff] [blame] | 127 | return alloc->make<SkNullBlitter>(); |
Mike Reed | 0264095 | 2017-05-19 15:32:13 -0400 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | SkBlitter* SkCreateRasterPipelineBlitter(const SkPixmap& dst, |
| 131 | const SkPaint& paint, |
Mike Reed | 0264095 | 2017-05-19 15:32:13 -0400 | [diff] [blame] | 132 | const SkRasterPipeline& shaderPipeline, |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 133 | bool is_opaque, |
Mike Reed | 0264095 | 2017-05-19 15:32:13 -0400 | [diff] [blame] | 134 | SkArenaAlloc* alloc) { |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 135 | bool is_constant = false; // If this were the case, it'd be better to just set a paint color. |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 136 | return SkRasterPipelineBlitter::Create(dst, paint, alloc, shaderPipeline, nullptr, |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 137 | is_opaque, is_constant); |
Mike Reed | 0264095 | 2017-05-19 15:32:13 -0400 | [diff] [blame] | 138 | } |
| 139 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 140 | SkBlitter* SkRasterPipelineBlitter::Create(const SkPixmap& dst, |
| 141 | const SkPaint& paint, |
| 142 | SkArenaAlloc* alloc, |
| 143 | const SkRasterPipeline& shaderPipeline, |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 144 | SkShaderBase::Context* burstCtx, |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 145 | bool is_opaque, |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 146 | bool is_constant) { |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 147 | auto blitter = alloc->make<SkRasterPipelineBlitter>(dst, |
| 148 | paint.getBlendMode(), |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 149 | alloc, |
| 150 | burstCtx); |
Mike Reed | 0264095 | 2017-05-19 15:32:13 -0400 | [diff] [blame] | 151 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 152 | // Our job in this factory is to fill out the blitter's color pipeline. |
| 153 | // This is the common front of the full blit pipelines, each constructed lazily on first use. |
| 154 | // The full blit pipelines handle reading and writing the dst, blending, coverage, dithering. |
| 155 | auto colorPipeline = &blitter->fColorPipeline; |
| 156 | |
Mike Klein | 3b840e9 | 2017-05-23 15:06:17 -0400 | [diff] [blame] | 157 | // Let's get the shader in first. |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 158 | if (burstCtx) { |
| 159 | colorPipeline->append(SkRasterPipeline::load_f32, &blitter->fShaderOutput); |
| 160 | } else { |
| 161 | colorPipeline->extend(shaderPipeline); |
| 162 | } |
Mike Reed | 0264095 | 2017-05-19 15:32:13 -0400 | [diff] [blame] | 163 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 164 | // If there's a color filter it comes next. |
| 165 | if (auto colorFilter = paint.getColorFilter()) { |
| 166 | colorFilter->appendStages(colorPipeline, dst.colorSpace(), alloc, is_opaque); |
mtklein | a4a4488 | 2016-11-04 13:20:07 -0700 | [diff] [blame] | 167 | is_opaque = is_opaque && (colorFilter->getFlags() & SkColorFilter::kAlphaUnchanged_Flag); |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 170 | // Not all formats make sense to dither (think, F16). We set their dither rate to zero. |
| 171 | // We need to decide if we're going to dither now to keep is_constant accurate. |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 172 | if (paint.isDither()) { |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 173 | switch (dst.info().colorType()) { |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 174 | default: blitter->fDitherRate = 0.0f; break; |
Mike Klein | 95d19f3 | 2017-06-15 07:40:24 -0700 | [diff] [blame] | 175 | case kARGB_4444_SkColorType: blitter->fDitherRate = 1/15.0f; break; |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 176 | case kRGB_565_SkColorType: blitter->fDitherRate = 1/63.0f; break; |
Mike Klein | 95d19f3 | 2017-06-15 07:40:24 -0700 | [diff] [blame] | 177 | case kGray_8_SkColorType: |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 178 | case kRGBA_8888_SkColorType: |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 179 | case kBGRA_8888_SkColorType: blitter->fDitherRate = 1/255.0f; break; |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 180 | } |
Mike Reed | eb7dc79 | 2017-06-12 12:48:45 -0400 | [diff] [blame] | 181 | // TODO: for constant colors, we could try to measure the effect of dithering, and if |
| 182 | // it has no value (i.e. all variations result in the same 32bit color, then we |
| 183 | // could disable it (for speed, by not adding the stage). |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 184 | } |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 185 | is_constant = is_constant && (blitter->fDitherRate == 0.0f); |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 186 | |
| 187 | // We're logically done here. The code between here and return blitter is all optimization. |
| 188 | |
| 189 | // A pipeline that's still constant here can collapse back into a constant color. |
Mike Klein | 14c8f82 | 2016-11-30 19:39:43 -0500 | [diff] [blame] | 190 | if (is_constant) { |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 191 | SkPM4f constantColor; |
| 192 | SkJumper_MemoryCtx constantColorPtr = { &constantColor, 0 }; |
| 193 | colorPipeline->append(SkRasterPipeline::store_f32, &constantColorPtr); |
| 194 | colorPipeline->run(0,0,1,1); |
Mike Klein | b24704d | 2017-05-24 07:53:00 -0400 | [diff] [blame] | 195 | colorPipeline->reset(); |
Mike Klein | 073073e | 2017-08-03 09:42:53 -0400 | [diff] [blame] | 196 | colorPipeline->append_constant_color(alloc, constantColor); |
mtklein | a4a4488 | 2016-11-04 13:20:07 -0700 | [diff] [blame] | 197 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 198 | is_opaque = constantColor.a() == 1.0f; |
Mike Klein | 6686617 | 2016-11-03 12:22:01 -0400 | [diff] [blame] | 199 | } |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 200 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 201 | // We can strength-reduce SrcOver into Src when opaque. |
| 202 | if (is_opaque && blitter->fBlend == SkBlendMode::kSrcOver) { |
| 203 | blitter->fBlend = SkBlendMode::kSrc; |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 206 | // When we're drawing a constant color in Src mode, we can sometimes just memset. |
| 207 | // (The previous two optimizations help find more opportunities for this one.) |
| 208 | if (is_constant && blitter->fBlend == SkBlendMode::kSrc) { |
| 209 | // Run our color pipeline all the way through to produce what we'd memset when we can. |
| 210 | // Not all blits can memset, so we need to keep colorPipeline too. |
Mike Klein | b24704d | 2017-05-24 07:53:00 -0400 | [diff] [blame] | 211 | SkRasterPipeline_<256> p; |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 212 | p.extend(*colorPipeline); |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 213 | blitter->fDstPtr = SkJumper_MemoryCtx{&blitter->fMemsetColor, 0}; |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 214 | blitter->append_store(&p); |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 215 | p.run(0,0,1,1); |
Mike Klein | 14c8f82 | 2016-11-30 19:39:43 -0500 | [diff] [blame] | 216 | |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 217 | blitter->fCanMemsetInBlitRect = true; |
Mike Klein | 14c8f82 | 2016-11-30 19:39:43 -0500 | [diff] [blame] | 218 | } |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 219 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 220 | blitter->fDstPtr = SkJumper_MemoryCtx{ |
| 221 | blitter->fDst.writable_addr(), |
| 222 | blitter->fDst.rowBytesAsPixels(), |
| 223 | }; |
| 224 | |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 225 | return blitter; |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 228 | void SkRasterPipelineBlitter::append_load_dst(SkRasterPipeline* p) const { |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 229 | switch (fDst.info().colorType()) { |
Mike Reed | 279091e | 2017-06-27 16:58:00 -0400 | [diff] [blame] | 230 | case kGray_8_SkColorType: p->append(SkRasterPipeline::load_g8_dst, &fDstPtr); break; |
| 231 | case kAlpha_8_SkColorType: p->append(SkRasterPipeline::load_a8_dst, &fDstPtr); break; |
| 232 | case kRGB_565_SkColorType: p->append(SkRasterPipeline::load_565_dst, &fDstPtr); break; |
| 233 | case kARGB_4444_SkColorType: p->append(SkRasterPipeline::load_4444_dst, &fDstPtr); break; |
Mike Klein | 111f8a9 | 2017-06-27 15:56:32 -0400 | [diff] [blame] | 234 | case kBGRA_8888_SkColorType: p->append(SkRasterPipeline::load_bgra_dst, &fDstPtr); break; |
Mike Reed | 279091e | 2017-06-27 16:58:00 -0400 | [diff] [blame] | 235 | case kRGBA_8888_SkColorType: p->append(SkRasterPipeline::load_8888_dst, &fDstPtr); break; |
| 236 | case kRGBA_F16_SkColorType: p->append(SkRasterPipeline::load_f16_dst, &fDstPtr); break; |
Mike Klein | 111f8a9 | 2017-06-27 15:56:32 -0400 | [diff] [blame] | 237 | default: break; |
Mike Klein | e03339a | 2016-11-28 13:24:27 -0500 | [diff] [blame] | 238 | } |
| 239 | if (fDst.info().gammaCloseToSRGB()) { |
Mike Reed | 279091e | 2017-06-27 16:58:00 -0400 | [diff] [blame] | 240 | p->append_from_srgb_dst(fDst.info().alphaType()); |
Mike Klein | e03339a | 2016-11-28 13:24:27 -0500 | [diff] [blame] | 241 | } |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 242 | if (fDst.info().alphaType() == kUnpremul_SkAlphaType) { |
| 243 | p->append(SkRasterPipeline::premul_dst); |
| 244 | } |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Mike Klein | 14c8f82 | 2016-11-30 19:39:43 -0500 | [diff] [blame] | 247 | void SkRasterPipelineBlitter::append_store(SkRasterPipeline* p) const { |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 248 | if (fDst.info().alphaType() == kUnpremul_SkAlphaType) { |
| 249 | p->append(SkRasterPipeline::unpremul); |
| 250 | } |
Matt Sarett | f388093 | 2017-03-24 10:06:03 -0400 | [diff] [blame] | 251 | if (fDst.info().gammaCloseToSRGB()) { |
Mike Klein | e03339a | 2016-11-28 13:24:27 -0500 | [diff] [blame] | 252 | p->append(SkRasterPipeline::to_srgb); |
| 253 | } |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 254 | if (fDitherRate > 0.0f) { |
Mike Klein | db711c9 | 2017-05-03 17:57:48 -0400 | [diff] [blame] | 255 | // We dither after any sRGB transfer function to make sure our 1/255.0f is sensible |
| 256 | // over the whole range. If we did it before, 1/255.0f is too big a rate near zero. |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 257 | p->append(SkRasterPipeline::dither, &fDitherRate); |
Mike Klein | db711c9 | 2017-05-03 17:57:48 -0400 | [diff] [blame] | 258 | } |
| 259 | |
Mike Klein | 159db0a | 2017-07-25 12:02:13 -0400 | [diff] [blame] | 260 | if (fDst.info().colorType() != kRGBA_F16_SkColorType) { |
| 261 | p->clamp_if_unclamped(kPremul_SkAlphaType); |
| 262 | } |
| 263 | |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 264 | switch (fDst.info().colorType()) { |
Mike Klein | 95d19f3 | 2017-06-15 07:40:24 -0700 | [diff] [blame] | 265 | case kGray_8_SkColorType: p->append(SkRasterPipeline::luminance_to_alpha); // fallthru |
Mike Klein | e71b167 | 2017-01-13 07:59:23 -0500 | [diff] [blame] | 266 | case kAlpha_8_SkColorType: p->append(SkRasterPipeline::store_a8, &fDstPtr); break; |
Mike Klein | e03339a | 2016-11-28 13:24:27 -0500 | [diff] [blame] | 267 | case kRGB_565_SkColorType: p->append(SkRasterPipeline::store_565, &fDstPtr); break; |
Mike Klein | 95d19f3 | 2017-06-15 07:40:24 -0700 | [diff] [blame] | 268 | case kARGB_4444_SkColorType: p->append(SkRasterPipeline::store_4444, &fDstPtr); break; |
Mike Klein | 111f8a9 | 2017-06-27 15:56:32 -0400 | [diff] [blame] | 269 | case kBGRA_8888_SkColorType: p->append(SkRasterPipeline::store_bgra, &fDstPtr); break; |
Mike Klein | e03339a | 2016-11-28 13:24:27 -0500 | [diff] [blame] | 270 | case kRGBA_8888_SkColorType: p->append(SkRasterPipeline::store_8888, &fDstPtr); break; |
| 271 | case kRGBA_F16_SkColorType: p->append(SkRasterPipeline::store_f16, &fDstPtr); break; |
mtklein | 8e4373f | 2016-07-22 14:20:27 -0700 | [diff] [blame] | 272 | default: break; |
| 273 | } |
| 274 | } |
| 275 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 276 | void SkRasterPipelineBlitter::burst_shade(int x, int y, int w) { |
| 277 | SkASSERT(fBurstCtx); |
| 278 | if (w > SkToInt(fShaderBuffer.size())) { |
| 279 | fShaderBuffer.resize(w); |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 280 | } |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 281 | fBurstCtx->shadeSpan4f(x,y, fShaderBuffer.data(), w); |
| 282 | // We'll be reading from fShaderOutput.pixels + x, so back up by x. |
| 283 | fShaderOutput = SkJumper_MemoryCtx{ fShaderBuffer.data() - x, 0 }; |
Florin Malita | 47e55a5 | 2017-06-06 12:26:54 -0400 | [diff] [blame] | 284 | } |
| 285 | |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 286 | void SkRasterPipelineBlitter::blitH(int x, int y, int w) { |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 287 | this->blitRect(x,y,w,1); |
| 288 | } |
| 289 | |
| 290 | void SkRasterPipelineBlitter::blitRect(int x, int y, int w, int h) { |
| 291 | if (fCanMemsetInBlitRect) { |
| 292 | for (int ylimit = y+h; y < ylimit; y++) { |
| 293 | switch (fDst.shiftPerPixel()) { |
| 294 | case 0: memset (fDst.writable_addr8 (x,y), fMemsetColor, w); break; |
| 295 | case 1: sk_memset16(fDst.writable_addr16(x,y), fMemsetColor, w); break; |
| 296 | case 2: sk_memset32(fDst.writable_addr32(x,y), fMemsetColor, w); break; |
| 297 | case 3: sk_memset64(fDst.writable_addr64(x,y), fMemsetColor, w); break; |
| 298 | default: break; |
| 299 | } |
Mike Klein | 8729e5b | 2017-02-16 06:51:48 -0500 | [diff] [blame] | 300 | } |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 301 | return; |
Mike Klein | 8729e5b | 2017-02-16 06:51:48 -0500 | [diff] [blame] | 302 | } |
| 303 | |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 304 | if (!fBlitRect) { |
Mike Klein | b24704d | 2017-05-24 07:53:00 -0400 | [diff] [blame] | 305 | SkRasterPipeline p(fAlloc); |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 306 | p.extend(fColorPipeline); |
Mike Klein | 5062626 | 2017-05-25 13:06:57 -0400 | [diff] [blame] | 307 | if (fBlend == SkBlendMode::kSrcOver |
| 308 | && fDst.info().colorType() == kRGBA_8888_SkColorType |
| 309 | && !fDst.colorSpace() |
Mike Reed | 883c9bc | 2017-07-19 10:57:53 -0400 | [diff] [blame] | 310 | && fDst.info().alphaType() != kUnpremul_SkAlphaType |
Mike Klein | 9b10f8f | 2017-06-01 13:11:16 -0400 | [diff] [blame] | 311 | && fDitherRate == 0.0f) { |
Mike Klein | 159db0a | 2017-07-25 12:02:13 -0400 | [diff] [blame] | 312 | p.clamp_if_unclamped(kPremul_SkAlphaType); |
Mike Klein | 5062626 | 2017-05-25 13:06:57 -0400 | [diff] [blame] | 313 | p.append(SkRasterPipeline::srcover_rgba_8888, &fDstPtr); |
| 314 | } else { |
| 315 | if (fBlend != SkBlendMode::kSrc) { |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 316 | this->append_load_dst(&p); |
| 317 | SkBlendMode_AppendStages(fBlend, &p); |
Mike Klein | 5062626 | 2017-05-25 13:06:57 -0400 | [diff] [blame] | 318 | } |
| 319 | this->append_store(&p); |
Mike Klein | 6686617 | 2016-11-03 12:22:01 -0400 | [diff] [blame] | 320 | } |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 321 | fBlitRect = p.compile(); |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 322 | } |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 323 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 324 | if (fBurstCtx) { |
Mike Klein | 3b59af5 | 2017-07-20 16:02:12 -0400 | [diff] [blame] | 325 | // We can only burst shade one row at a time. |
| 326 | for (int ylimit = y+h; y < ylimit; y++) { |
| 327 | this->burst_shade(x,y,w); |
| 328 | fBlitRect(x,y, w,1); |
| 329 | } |
| 330 | } else { |
| 331 | // If not bursting we can blit the entire rect at once. |
| 332 | fBlitRect(x,y,w,h); |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 333 | } |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | void SkRasterPipelineBlitter::blitAntiH(int x, int y, const SkAlpha aa[], const int16_t runs[]) { |
Mike Klein | 0a76b41 | 2017-05-22 12:01:59 -0400 | [diff] [blame] | 337 | if (!fBlitAntiH) { |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 338 | SkRasterPipeline p(fAlloc); |
| 339 | p.extend(fColorPipeline); |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 340 | if (SkBlendMode_ShouldPreScaleCoverage(fBlend, /*rgb_coverage=*/false)) { |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 341 | p.append(SkRasterPipeline::scale_1_float, &fCurrentCoverage); |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 342 | this->append_load_dst(&p); |
| 343 | SkBlendMode_AppendStages(fBlend, &p); |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 344 | } else { |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 345 | this->append_load_dst(&p); |
| 346 | SkBlendMode_AppendStages(fBlend, &p); |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 347 | p.append(SkRasterPipeline::lerp_1_float, &fCurrentCoverage); |
| 348 | } |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 349 | |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 350 | this->append_store(&p); |
| 351 | fBlitAntiH = p.compile(); |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 352 | } |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 353 | |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 354 | for (int16_t run = *runs; run > 0; run = *runs) { |
Mike Klein | aeb7959 | 2016-11-07 09:29:07 -0500 | [diff] [blame] | 355 | switch (*aa) { |
| 356 | case 0x00: break; |
| 357 | case 0xff: this->blitH(x,y,run); break; |
| 358 | default: |
Mike Klein | babd93e | 2016-11-30 16:05:10 -0500 | [diff] [blame] | 359 | fCurrentCoverage = *aa * (1/255.0f); |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 360 | if (fBurstCtx) { |
| 361 | this->burst_shade(x,y,run); |
| 362 | } |
| 363 | fBlitAntiH(x,y,run,1); |
Mike Klein | aeb7959 | 2016-11-07 09:29:07 -0500 | [diff] [blame] | 364 | } |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 365 | x += run; |
| 366 | runs += run; |
| 367 | aa += run; |
| 368 | } |
| 369 | } |
| 370 | |
Mike Klein | 34d10d7 | 2017-06-05 07:10:01 -0400 | [diff] [blame] | 371 | void SkRasterPipelineBlitter::blitAntiH2(int x, int y, U8CPU a0, U8CPU a1) { |
| 372 | SkIRect clip = {x,y, x+2,y+1}; |
| 373 | uint8_t coverage[] = { (uint8_t)a0, (uint8_t)a1 }; |
| 374 | |
| 375 | SkMask mask; |
| 376 | mask.fImage = coverage; |
| 377 | mask.fBounds = clip; |
| 378 | mask.fRowBytes = 2; |
| 379 | mask.fFormat = SkMask::kA8_Format; |
| 380 | |
| 381 | this->blitMask(mask, clip); |
| 382 | } |
| 383 | |
Mike Reed | e6befa5 | 2017-08-28 11:30:48 -0400 | [diff] [blame] | 384 | void SkRasterPipelineBlitter::blitV(int x, int y, int height, SkAlpha alpha) { |
| 385 | SkIRect clip = {x,y, x+1,y+height}; |
| 386 | |
| 387 | SkMask mask; |
| 388 | mask.fImage = α |
| 389 | mask.fBounds = clip; |
| 390 | mask.fRowBytes = 0; // so we reuse the 1 "row" for all of height |
| 391 | mask.fFormat = SkMask::kA8_Format; |
| 392 | |
| 393 | this->blitMask(mask, clip); |
| 394 | } |
| 395 | |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 396 | void SkRasterPipelineBlitter::blitMask(const SkMask& mask, const SkIRect& clip) { |
| 397 | if (mask.fFormat == SkMask::kBW_Format) { |
| 398 | // TODO: native BW masks? |
| 399 | return INHERITED::blitMask(mask, clip); |
| 400 | } |
| 401 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 402 | // Lazily build whichever pipeline we need, specialized for each mask format. |
Mike Klein | 0a76b41 | 2017-05-22 12:01:59 -0400 | [diff] [blame] | 403 | if (mask.fFormat == SkMask::kA8_Format && !fBlitMaskA8) { |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 404 | SkRasterPipeline p(fAlloc); |
| 405 | p.extend(fColorPipeline); |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 406 | if (SkBlendMode_ShouldPreScaleCoverage(fBlend, /*rgb_coverage=*/false)) { |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 407 | p.append(SkRasterPipeline::scale_u8, &fMaskPtr); |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 408 | this->append_load_dst(&p); |
| 409 | SkBlendMode_AppendStages(fBlend, &p); |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 410 | } else { |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 411 | this->append_load_dst(&p); |
| 412 | SkBlendMode_AppendStages(fBlend, &p); |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 413 | p.append(SkRasterPipeline::lerp_u8, &fMaskPtr); |
| 414 | } |
Florin Malita | c3a863f | 2017-08-23 20:36:02 +0000 | [diff] [blame] | 415 | this->append_store(&p); |
| 416 | fBlitMaskA8 = p.compile(); |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 417 | } |
Mike Klein | 0a76b41 | 2017-05-22 12:01:59 -0400 | [diff] [blame] | 418 | if (mask.fFormat == SkMask::kLCD16_Format && !fBlitMaskLCD16) { |
Mike Klein | b24704d | 2017-05-24 07:53:00 -0400 | [diff] [blame] | 419 | SkRasterPipeline p(fAlloc); |
Mike Klein | b35cb31 | 2017-05-19 12:01:01 -0400 | [diff] [blame] | 420 | p.extend(fColorPipeline); |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 421 | if (SkBlendMode_ShouldPreScaleCoverage(fBlend, /*rgb_coverage=*/true)) { |
| 422 | // Somewhat unusually, scale_565 needs dst loaded first. |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 423 | this->append_load_dst(&p); |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 424 | p.append(SkRasterPipeline::scale_565, &fMaskPtr); |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 425 | SkBlendMode_AppendStages(fBlend, &p); |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 426 | } else { |
Mike Klein | b34b626 | 2017-09-04 12:17:54 -0400 | [diff] [blame^] | 427 | this->append_load_dst(&p); |
| 428 | SkBlendMode_AppendStages(fBlend, &p); |
Mike Klein | fb126fa | 2017-08-24 13:06:23 -0400 | [diff] [blame] | 429 | p.append(SkRasterPipeline::lerp_565, &fMaskPtr); |
| 430 | } |
Mike Klein | e902f8d | 2016-10-26 15:32:26 -0400 | [diff] [blame] | 431 | this->append_store(&p); |
Mike Klein | b24704d | 2017-05-24 07:53:00 -0400 | [diff] [blame] | 432 | fBlitMaskLCD16 = p.compile(); |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 433 | } |
| 434 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 435 | std::function<void(size_t,size_t,size_t,size_t)>* blitter = nullptr; |
| 436 | // Update fMaskPtr to point "into" this current mask, but lined up with fDstPtr at (0,0). |
| 437 | switch (mask.fFormat) { |
| 438 | case SkMask::kA8_Format: |
| 439 | fMaskPtr.stride = mask.fRowBytes; |
| 440 | fMaskPtr.pixels = (uint8_t*)mask.fImage - mask.fBounds.left() |
| 441 | - mask.fBounds.top() * fMaskPtr.stride; |
| 442 | blitter = &fBlitMaskA8; |
| 443 | break; |
| 444 | case SkMask::kLCD16_Format: |
| 445 | fMaskPtr.stride = mask.fRowBytes / 2; |
| 446 | fMaskPtr.pixels = (uint16_t*)mask.fImage - mask.fBounds.left() |
| 447 | - mask.fBounds.top() * fMaskPtr.stride; |
| 448 | blitter = &fBlitMaskLCD16; |
| 449 | break; |
| 450 | default: |
| 451 | return; |
| 452 | } |
Mike Klein | bd3fe47 | 2016-10-25 15:43:46 -0400 | [diff] [blame] | 453 | |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 454 | SkASSERT(blitter); |
| 455 | if (fBurstCtx) { |
| 456 | // We can only burst shade one row at a time. |
| 457 | int x = clip.left(); |
| 458 | for (int y = clip.top(); y < clip.bottom(); y++) { |
| 459 | this->burst_shade(x,y,clip.width()); |
| 460 | (*blitter)(x,y, clip.width(),1); |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 461 | } |
Mike Klein | 45c16fa | 2017-07-18 18:15:13 -0400 | [diff] [blame] | 462 | } else { |
| 463 | // If not bursting we can blit the entire mask at once. |
| 464 | (*blitter)(clip.left(),clip.top(), clip.width(),clip.height()); |
mtklein | 9a5c47f | 2016-07-22 11:05:04 -0700 | [diff] [blame] | 465 | } |
| 466 | } |