skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 7 | |
| 8 | #include "SkGpuDevice.h" |
| 9 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 10 | #include "effects/GrBicubicEffect.h" |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 11 | #include "effects/GrDashingEffect.h" |
commit-bot@chromium.org | 907fbd5 | 2013-12-09 17:03:02 +0000 | [diff] [blame] | 12 | #include "effects/GrTextureDomain.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 13 | #include "effects/GrSimpleTextureEffect.h" |
| 14 | |
| 15 | #include "GrContext.h" |
| 16 | #include "GrBitmapTextContext.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 17 | #include "GrDistanceFieldTextContext.h" |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 18 | #include "GrLayerCache.h" |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 19 | #include "GrPictureUtils.h" |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 20 | #include "GrStrokeInfo.h" |
egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 21 | #include "GrTracing.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 22 | |
| 23 | #include "SkGrTexturePixelRef.h" |
| 24 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 25 | #include "SkDeviceImageFilterProxy.h" |
| 26 | #include "SkDrawProcs.h" |
| 27 | #include "SkGlyphCache.h" |
| 28 | #include "SkImageFilter.h" |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 29 | #include "SkMaskFilter.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 30 | #include "SkPathEffect.h" |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 31 | #include "SkPicture.h" |
robertphillips | db53990 | 2014-07-01 08:47:04 -0700 | [diff] [blame] | 32 | #include "SkPictureData.h" |
robertphillips | 1ad00e4 | 2014-07-08 08:28:08 -0700 | [diff] [blame] | 33 | #include "SkPictureRangePlayback.h" |
robertphillips | c26d991 | 2014-07-10 07:21:27 -0700 | [diff] [blame] | 34 | #include "SkPictureReplacementPlayback.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 35 | #include "SkRRect.h" |
| 36 | #include "SkStroke.h" |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 37 | #include "SkSurface.h" |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 38 | #include "SkTLazy.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 39 | #include "SkUtils.h" |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 40 | #include "SkVertState.h" |
robertphillips | 320c923 | 2014-07-29 06:07:19 -0700 | [diff] [blame] | 41 | #include "SkXfermode.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 42 | #include "SkErrorInternals.h" |
| 43 | |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 44 | enum { kDefaultImageFilterCacheSize = 32 * 1024 * 1024 }; |
| 45 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 46 | #define CACHE_COMPATIBLE_DEVICE_TEXTURES 1 |
| 47 | |
| 48 | #if 0 |
| 49 | extern bool (*gShouldDrawProc)(); |
| 50 | #define CHECK_SHOULD_DRAW(draw, forceI) \ |
| 51 | do { \ |
| 52 | if (gShouldDrawProc && !gShouldDrawProc()) return; \ |
| 53 | this->prepareDraw(draw, forceI); \ |
| 54 | } while (0) |
| 55 | #else |
| 56 | #define CHECK_SHOULD_DRAW(draw, forceI) this->prepareDraw(draw, forceI) |
| 57 | #endif |
| 58 | |
| 59 | // This constant represents the screen alignment criterion in texels for |
| 60 | // requiring texture domain clamping to prevent color bleeding when drawing |
| 61 | // a sub region of a larger source image. |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 62 | #define COLOR_BLEED_TOLERANCE 0.001f |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 63 | |
| 64 | #define DO_DEFERRED_CLEAR() \ |
| 65 | do { \ |
| 66 | if (fNeedClear) { \ |
| 67 | this->clear(SK_ColorTRANSPARENT); \ |
| 68 | } \ |
| 69 | } while (false) \ |
| 70 | |
| 71 | /////////////////////////////////////////////////////////////////////////////// |
| 72 | |
| 73 | #define CHECK_FOR_ANNOTATION(paint) \ |
| 74 | do { if (paint.getAnnotation()) { return; } } while (0) |
| 75 | |
| 76 | /////////////////////////////////////////////////////////////////////////////// |
| 77 | |
| 78 | |
| 79 | class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable { |
| 80 | public: |
| 81 | SkAutoCachedTexture() |
| 82 | : fDevice(NULL) |
| 83 | , fTexture(NULL) { |
| 84 | } |
| 85 | |
| 86 | SkAutoCachedTexture(SkGpuDevice* device, |
| 87 | const SkBitmap& bitmap, |
| 88 | const GrTextureParams* params, |
| 89 | GrTexture** texture) |
| 90 | : fDevice(NULL) |
| 91 | , fTexture(NULL) { |
| 92 | SkASSERT(NULL != texture); |
| 93 | *texture = this->set(device, bitmap, params); |
| 94 | } |
| 95 | |
| 96 | ~SkAutoCachedTexture() { |
| 97 | if (NULL != fTexture) { |
| 98 | GrUnlockAndUnrefCachedBitmapTexture(fTexture); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | GrTexture* set(SkGpuDevice* device, |
| 103 | const SkBitmap& bitmap, |
| 104 | const GrTextureParams* params) { |
| 105 | if (NULL != fTexture) { |
| 106 | GrUnlockAndUnrefCachedBitmapTexture(fTexture); |
| 107 | fTexture = NULL; |
| 108 | } |
| 109 | fDevice = device; |
| 110 | GrTexture* result = (GrTexture*)bitmap.getTexture(); |
| 111 | if (NULL == result) { |
| 112 | // Cannot return the native texture so look it up in our cache |
| 113 | fTexture = GrLockAndRefCachedBitmapTexture(device->context(), bitmap, params); |
| 114 | result = fTexture; |
| 115 | } |
| 116 | return result; |
| 117 | } |
| 118 | |
| 119 | private: |
| 120 | SkGpuDevice* fDevice; |
| 121 | GrTexture* fTexture; |
| 122 | }; |
| 123 | |
| 124 | /////////////////////////////////////////////////////////////////////////////// |
| 125 | |
| 126 | struct GrSkDrawProcs : public SkDrawProcs { |
| 127 | public: |
| 128 | GrContext* fContext; |
| 129 | GrTextContext* fTextContext; |
| 130 | GrFontScaler* fFontScaler; // cached in the skia glyphcache |
| 131 | }; |
| 132 | |
| 133 | /////////////////////////////////////////////////////////////////////////////// |
| 134 | |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 135 | SkGpuDevice* SkGpuDevice::Create(GrSurface* surface, unsigned flags) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 136 | SkASSERT(NULL != surface); |
| 137 | if (NULL == surface->asRenderTarget() || NULL == surface->getContext()) { |
| 138 | return NULL; |
| 139 | } |
| 140 | if (surface->asTexture()) { |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 141 | return SkNEW_ARGS(SkGpuDevice, (surface->getContext(), surface->asTexture(), flags)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 142 | } else { |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 143 | return SkNEW_ARGS(SkGpuDevice, (surface->getContext(), surface->asRenderTarget(), flags)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 144 | } |
| 145 | } |
| 146 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 147 | SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture, unsigned flags) { |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 148 | this->initFromRenderTarget(context, texture->asRenderTarget(), flags); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 149 | } |
| 150 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 151 | SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget, unsigned flags) { |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 152 | this->initFromRenderTarget(context, renderTarget, flags); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | void SkGpuDevice::initFromRenderTarget(GrContext* context, |
| 156 | GrRenderTarget* renderTarget, |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 157 | unsigned flags) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 158 | fDrawProcs = NULL; |
| 159 | |
| 160 | fContext = context; |
| 161 | fContext->ref(); |
| 162 | |
| 163 | fRenderTarget = NULL; |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 164 | fNeedClear = flags & kNeedClear_Flag; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 165 | |
| 166 | SkASSERT(NULL != renderTarget); |
| 167 | fRenderTarget = renderTarget; |
| 168 | fRenderTarget->ref(); |
| 169 | |
| 170 | // Hold onto to the texture in the pixel ref (if there is one) because the texture holds a ref |
| 171 | // on the RT but not vice-versa. |
| 172 | // TODO: Remove this trickery once we figure out how to make SkGrPixelRef do this without |
| 173 | // busting chrome (for a currently unknown reason). |
| 174 | GrSurface* surface = fRenderTarget->asTexture(); |
| 175 | if (NULL == surface) { |
| 176 | surface = fRenderTarget; |
| 177 | } |
reed@google.com | bf79023 | 2013-12-13 19:45:58 +0000 | [diff] [blame] | 178 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 179 | SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, |
| 180 | (surface->info(), surface, SkToBool(flags & kCached_Flag))); |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 181 | fLegacyBitmap.setInfo(surface->info()); |
| 182 | fLegacyBitmap.setPixelRef(pr)->unref(); |
kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 183 | |
| 184 | bool useDFFonts = !!(flags & kDFFonts_Flag); |
| 185 | fMainTextContext = fContext->createTextContext(fRenderTarget, fLeakyProperties, useDFFonts); |
| 186 | fFallbackTextContext = SkNEW_ARGS(GrBitmapTextContext, (fContext, fLeakyProperties)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 187 | } |
| 188 | |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 189 | SkGpuDevice* SkGpuDevice::Create(GrContext* context, const SkImageInfo& origInfo, |
| 190 | int sampleCount) { |
| 191 | if (kUnknown_SkColorType == origInfo.colorType() || |
| 192 | origInfo.width() < 0 || origInfo.height() < 0) { |
| 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | SkImageInfo info = origInfo; |
| 197 | // TODO: perhas we can loosen this check now that colortype is more detailed |
| 198 | // e.g. can we support both RGBA and BGRA here? |
| 199 | if (kRGB_565_SkColorType == info.colorType()) { |
| 200 | info.fAlphaType = kOpaque_SkAlphaType; // force this setting |
| 201 | } else { |
commit-bot@chromium.org | 28fcae2 | 2014-04-11 17:15:40 +0000 | [diff] [blame] | 202 | info.fColorType = kN32_SkColorType; |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 203 | if (kOpaque_SkAlphaType != info.alphaType()) { |
| 204 | info.fAlphaType = kPremul_SkAlphaType; // force this setting |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | GrTextureDesc desc; |
| 209 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 210 | desc.fWidth = info.width(); |
| 211 | desc.fHeight = info.height(); |
commit-bot@chromium.org | 3adcc34 | 2014-04-23 19:18:09 +0000 | [diff] [blame] | 212 | desc.fConfig = SkImageInfo2GrPixelConfig(info); |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 213 | desc.fSampleCnt = sampleCount; |
| 214 | |
| 215 | SkAutoTUnref<GrTexture> texture(context->createUncachedTexture(desc, NULL, 0)); |
| 216 | if (!texture.get()) { |
| 217 | return NULL; |
| 218 | } |
skia.committer@gmail.com | 969588f | 2014-02-16 03:01:56 +0000 | [diff] [blame] | 219 | |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 220 | return SkNEW_ARGS(SkGpuDevice, (context, texture.get())); |
| 221 | } |
| 222 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 223 | SkGpuDevice::~SkGpuDevice() { |
| 224 | if (fDrawProcs) { |
| 225 | delete fDrawProcs; |
| 226 | } |
skia.committer@gmail.com | d2ac07b | 2014-01-25 07:01:49 +0000 | [diff] [blame] | 227 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 228 | delete fMainTextContext; |
| 229 | delete fFallbackTextContext; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 230 | |
| 231 | // The GrContext takes a ref on the target. We don't want to cause the render |
| 232 | // target to be unnecessarily kept alive. |
| 233 | if (fContext->getRenderTarget() == fRenderTarget) { |
| 234 | fContext->setRenderTarget(NULL); |
| 235 | } |
| 236 | |
| 237 | if (fContext->getClip() == &fClipData) { |
| 238 | fContext->setClip(NULL); |
| 239 | } |
| 240 | |
| 241 | SkSafeUnref(fRenderTarget); |
| 242 | fContext->unref(); |
| 243 | } |
| 244 | |
| 245 | /////////////////////////////////////////////////////////////////////////////// |
| 246 | |
| 247 | void SkGpuDevice::makeRenderTargetCurrent() { |
| 248 | DO_DEFERRED_CLEAR(); |
| 249 | fContext->setRenderTarget(fRenderTarget); |
| 250 | } |
| 251 | |
| 252 | /////////////////////////////////////////////////////////////////////////////// |
| 253 | |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 254 | bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, |
| 255 | int x, int y) { |
| 256 | DO_DEFERRED_CLEAR(); |
| 257 | |
| 258 | // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels |
commit-bot@chromium.org | 3adcc34 | 2014-04-23 19:18:09 +0000 | [diff] [blame] | 259 | GrPixelConfig config = SkImageInfo2GrPixelConfig(dstInfo); |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 260 | if (kUnknown_GrPixelConfig == config) { |
| 261 | return false; |
| 262 | } |
| 263 | |
| 264 | uint32_t flags = 0; |
| 265 | if (kUnpremul_SkAlphaType == dstInfo.alphaType()) { |
| 266 | flags = GrContext::kUnpremul_PixelOpsFlag; |
| 267 | } |
| 268 | return fContext->readRenderTargetPixels(fRenderTarget, x, y, dstInfo.width(), dstInfo.height(), |
| 269 | config, dstPixels, dstRowBytes, flags); |
| 270 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 271 | |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 272 | bool SkGpuDevice::onWritePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, |
| 273 | int x, int y) { |
| 274 | // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels |
commit-bot@chromium.org | 3adcc34 | 2014-04-23 19:18:09 +0000 | [diff] [blame] | 275 | GrPixelConfig config = SkImageInfo2GrPixelConfig(info); |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 276 | if (kUnknown_GrPixelConfig == config) { |
| 277 | return false; |
| 278 | } |
| 279 | uint32_t flags = 0; |
| 280 | if (kUnpremul_SkAlphaType == info.alphaType()) { |
| 281 | flags = GrContext::kUnpremul_PixelOpsFlag; |
| 282 | } |
| 283 | fRenderTarget->writePixels(x, y, info.width(), info.height(), config, pixels, rowBytes, flags); |
| 284 | |
| 285 | // need to bump our genID for compatibility with clients that "know" we have a bitmap |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 286 | fLegacyBitmap.notifyPixelsChanged(); |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 287 | |
| 288 | return true; |
| 289 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 290 | |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 291 | const SkBitmap& SkGpuDevice::onAccessBitmap() { |
| 292 | DO_DEFERRED_CLEAR(); |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 293 | return fLegacyBitmap; |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 294 | } |
| 295 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 296 | void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) { |
| 297 | INHERITED::onAttachToCanvas(canvas); |
| 298 | |
| 299 | // Canvas promises that this ptr is valid until onDetachFromCanvas is called |
| 300 | fClipData.fClipStack = canvas->getClipStack(); |
| 301 | } |
| 302 | |
| 303 | void SkGpuDevice::onDetachFromCanvas() { |
| 304 | INHERITED::onDetachFromCanvas(); |
| 305 | fClipData.fClipStack = NULL; |
| 306 | } |
| 307 | |
| 308 | // call this every draw call, to ensure that the context reflects our state, |
| 309 | // and not the state from some other canvas/device |
| 310 | void SkGpuDevice::prepareDraw(const SkDraw& draw, bool forceIdentity) { |
| 311 | SkASSERT(NULL != fClipData.fClipStack); |
| 312 | |
| 313 | fContext->setRenderTarget(fRenderTarget); |
| 314 | |
| 315 | SkASSERT(draw.fClipStack && draw.fClipStack == fClipData.fClipStack); |
| 316 | |
| 317 | if (forceIdentity) { |
| 318 | fContext->setIdentityMatrix(); |
| 319 | } else { |
| 320 | fContext->setMatrix(*draw.fMatrix); |
| 321 | } |
| 322 | fClipData.fOrigin = this->getOrigin(); |
| 323 | |
| 324 | fContext->setClip(&fClipData); |
| 325 | |
| 326 | DO_DEFERRED_CLEAR(); |
| 327 | } |
| 328 | |
| 329 | GrRenderTarget* SkGpuDevice::accessRenderTarget() { |
| 330 | DO_DEFERRED_CLEAR(); |
| 331 | return fRenderTarget; |
| 332 | } |
| 333 | |
| 334 | /////////////////////////////////////////////////////////////////////////////// |
| 335 | |
| 336 | SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch); |
| 337 | SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch); |
| 338 | SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch); |
| 339 | SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch); |
| 340 | SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4, |
| 341 | shader_type_mismatch); |
| 342 | SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5, |
| 343 | shader_type_mismatch); |
| 344 | SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch); |
| 345 | SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch); |
| 346 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 347 | /////////////////////////////////////////////////////////////////////////////// |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 348 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 349 | void SkGpuDevice::clear(SkColor color) { |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 350 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::clear", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 351 | SkIRect rect = SkIRect::MakeWH(this->width(), this->height()); |
| 352 | fContext->clear(&rect, SkColor2GrColor(color), true, fRenderTarget); |
| 353 | fNeedClear = false; |
| 354 | } |
| 355 | |
| 356 | void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) { |
| 357 | CHECK_SHOULD_DRAW(draw, false); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 358 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPaint", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 359 | |
| 360 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 361 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 362 | |
| 363 | fContext->drawPaint(grPaint); |
| 364 | } |
| 365 | |
| 366 | // must be in SkCanvas::PointMode order |
| 367 | static const GrPrimitiveType gPointMode2PrimtiveType[] = { |
| 368 | kPoints_GrPrimitiveType, |
| 369 | kLines_GrPrimitiveType, |
| 370 | kLineStrip_GrPrimitiveType |
| 371 | }; |
| 372 | |
| 373 | void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode, |
| 374 | size_t count, const SkPoint pts[], const SkPaint& paint) { |
| 375 | CHECK_FOR_ANNOTATION(paint); |
| 376 | CHECK_SHOULD_DRAW(draw, false); |
| 377 | |
| 378 | SkScalar width = paint.getStrokeWidth(); |
| 379 | if (width < 0) { |
| 380 | return; |
| 381 | } |
| 382 | |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 383 | if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) { |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 384 | GrStrokeInfo strokeInfo(paint, SkPaint::kStroke_Style); |
| 385 | GrPaint grPaint; |
| 386 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
| 387 | SkPath path; |
| 388 | path.moveTo(pts[0]); |
| 389 | path.lineTo(pts[1]); |
| 390 | fContext->drawPath(grPaint, path, strokeInfo); |
| 391 | return; |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 392 | } |
| 393 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 394 | // we only handle hairlines and paints without path effects or mask filters, |
| 395 | // else we let the SkDraw call our drawPath() |
| 396 | if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) { |
| 397 | draw.drawPoints(mode, count, pts, paint, true); |
| 398 | return; |
| 399 | } |
| 400 | |
| 401 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 402 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 403 | |
| 404 | fContext->drawVertices(grPaint, |
| 405 | gPointMode2PrimtiveType[mode], |
robertphillips@google.com | a466286 | 2013-11-21 14:24:16 +0000 | [diff] [blame] | 406 | SkToS32(count), |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 407 | (SkPoint*)pts, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 408 | NULL, |
| 409 | NULL, |
| 410 | NULL, |
| 411 | 0); |
| 412 | } |
| 413 | |
| 414 | /////////////////////////////////////////////////////////////////////////////// |
| 415 | |
| 416 | void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect, |
| 417 | const SkPaint& paint) { |
egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 418 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRect", fContext); |
| 419 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 420 | CHECK_FOR_ANNOTATION(paint); |
| 421 | CHECK_SHOULD_DRAW(draw, false); |
| 422 | |
| 423 | bool doStroke = paint.getStyle() != SkPaint::kFill_Style; |
| 424 | SkScalar width = paint.getStrokeWidth(); |
| 425 | |
| 426 | /* |
| 427 | We have special code for hairline strokes, miter-strokes, bevel-stroke |
| 428 | and fills. Anything else we just call our path code. |
| 429 | */ |
| 430 | bool usePath = doStroke && width > 0 && |
| 431 | (paint.getStrokeJoin() == SkPaint::kRound_Join || |
| 432 | (paint.getStrokeJoin() == SkPaint::kBevel_Join && rect.isEmpty())); |
| 433 | // another two reasons we might need to call drawPath... |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 434 | |
| 435 | if (paint.getMaskFilter()) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 436 | usePath = true; |
| 437 | } |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 438 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 439 | if (!usePath && paint.isAntiAlias() && !fContext->getMatrix().rectStaysRect()) { |
| 440 | #if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT) |
| 441 | if (doStroke) { |
| 442 | #endif |
| 443 | usePath = true; |
| 444 | #if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT) |
| 445 | } else { |
| 446 | usePath = !fContext->getMatrix().preservesRightAngles(); |
| 447 | } |
| 448 | #endif |
| 449 | } |
| 450 | // until we can both stroke and fill rectangles |
| 451 | if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) { |
| 452 | usePath = true; |
| 453 | } |
| 454 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 455 | GrStrokeInfo strokeInfo(paint); |
| 456 | |
| 457 | const SkPathEffect* pe = paint.getPathEffect(); |
| 458 | if (!usePath && NULL != pe && !strokeInfo.isDashed()) { |
| 459 | usePath = true; |
| 460 | } |
| 461 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 462 | if (usePath) { |
| 463 | SkPath path; |
| 464 | path.addRect(rect); |
| 465 | this->drawPath(draw, path, paint, NULL, true); |
| 466 | return; |
| 467 | } |
| 468 | |
| 469 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 470 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
Mike Klein | 744fb73 | 2014-06-23 15:13:26 -0400 | [diff] [blame] | 471 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 472 | fContext->drawRect(grPaint, rect, &strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | /////////////////////////////////////////////////////////////////////////////// |
| 476 | |
| 477 | void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect, |
| 478 | const SkPaint& paint) { |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 479 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRRect", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 480 | CHECK_FOR_ANNOTATION(paint); |
| 481 | CHECK_SHOULD_DRAW(draw, false); |
| 482 | |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 483 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 484 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
Mike Klein | 744fb73 | 2014-06-23 15:13:26 -0400 | [diff] [blame] | 485 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 486 | GrStrokeInfo strokeInfo(paint); |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 487 | if (paint.getMaskFilter()) { |
| 488 | // try to hit the fast path for drawing filtered round rects |
| 489 | |
| 490 | SkRRect devRRect; |
| 491 | if (rect.transform(fContext->getMatrix(), &devRRect)) { |
| 492 | if (devRRect.allCornersCircular()) { |
| 493 | SkRect maskRect; |
| 494 | if (paint.getMaskFilter()->canFilterMaskGPU(devRRect.rect(), |
| 495 | draw.fClip->getBounds(), |
| 496 | fContext->getMatrix(), |
| 497 | &maskRect)) { |
| 498 | SkIRect finalIRect; |
| 499 | maskRect.roundOut(&finalIRect); |
| 500 | if (draw.fClip->quickReject(finalIRect)) { |
| 501 | // clipped out |
| 502 | return; |
| 503 | } |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 504 | if (paint.getMaskFilter()->directFilterRRectMaskGPU(fContext, &grPaint, |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 505 | strokeInfo.getStrokeRec(), |
| 506 | devRRect)) { |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 507 | return; |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | } |
| 515 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 516 | bool usePath = false; |
| 517 | |
| 518 | if (paint.getMaskFilter()) { |
| 519 | usePath = true; |
| 520 | } else { |
| 521 | const SkPathEffect* pe = paint.getPathEffect(); |
| 522 | if (NULL != pe && !strokeInfo.isDashed()) { |
| 523 | usePath = true; |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | |
| 528 | if (usePath) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 529 | SkPath path; |
| 530 | path.addRRect(rect); |
| 531 | this->drawPath(draw, path, paint, NULL, true); |
| 532 | return; |
| 533 | } |
Mike Klein | 744fb73 | 2014-06-23 15:13:26 -0400 | [diff] [blame] | 534 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 535 | fContext->drawRRect(grPaint, rect, strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 536 | } |
| 537 | |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 538 | void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer, |
| 539 | const SkRRect& inner, const SkPaint& paint) { |
| 540 | SkStrokeRec stroke(paint); |
| 541 | if (stroke.isFillStyle()) { |
| 542 | |
| 543 | CHECK_FOR_ANNOTATION(paint); |
| 544 | CHECK_SHOULD_DRAW(draw, false); |
| 545 | |
| 546 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 547 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 548 | |
| 549 | if (NULL == paint.getMaskFilter() && NULL == paint.getPathEffect()) { |
| 550 | fContext->drawDRRect(grPaint, outer, inner); |
| 551 | return; |
| 552 | } |
| 553 | } |
| 554 | |
| 555 | SkPath path; |
| 556 | path.addRRect(outer); |
| 557 | path.addRRect(inner); |
| 558 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 559 | |
| 560 | this->drawPath(draw, path, paint, NULL, true); |
| 561 | } |
| 562 | |
| 563 | |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 564 | ///////////////////////////////////////////////////////////////////////////// |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 565 | |
| 566 | void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval, |
| 567 | const SkPaint& paint) { |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 568 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawOval", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 569 | CHECK_FOR_ANNOTATION(paint); |
| 570 | CHECK_SHOULD_DRAW(draw, false); |
| 571 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 572 | GrStrokeInfo strokeInfo(paint); |
| 573 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 574 | bool usePath = false; |
| 575 | // some basic reasons we might need to call drawPath... |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 576 | if (paint.getMaskFilter()) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 577 | usePath = true; |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 578 | } else { |
| 579 | const SkPathEffect* pe = paint.getPathEffect(); |
| 580 | if (NULL != pe && !strokeInfo.isDashed()) { |
| 581 | usePath = true; |
| 582 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | if (usePath) { |
| 586 | SkPath path; |
| 587 | path.addOval(oval); |
| 588 | this->drawPath(draw, path, paint, NULL, true); |
| 589 | return; |
| 590 | } |
| 591 | |
| 592 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 593 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 594 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 595 | fContext->drawOval(grPaint, oval, strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | #include "SkMaskFilter.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 599 | |
| 600 | /////////////////////////////////////////////////////////////////////////////// |
| 601 | |
| 602 | // helpers for applying mask filters |
| 603 | namespace { |
| 604 | |
| 605 | // Draw a mask using the supplied paint. Since the coverage/geometry |
| 606 | // is already burnt into the mask this boils down to a rect draw. |
| 607 | // Return true if the mask was successfully drawn. |
| 608 | bool draw_mask(GrContext* context, const SkRect& maskRect, |
| 609 | GrPaint* grp, GrTexture* mask) { |
| 610 | GrContext::AutoMatrix am; |
| 611 | if (!am.setIdentity(context, grp)) { |
| 612 | return false; |
| 613 | } |
| 614 | |
| 615 | SkMatrix matrix; |
| 616 | matrix.setTranslate(-maskRect.fLeft, -maskRect.fTop); |
| 617 | matrix.postIDiv(mask->width(), mask->height()); |
| 618 | |
| 619 | grp->addCoverageEffect(GrSimpleTextureEffect::Create(mask, matrix))->unref(); |
| 620 | context->drawRect(*grp, maskRect); |
| 621 | return true; |
| 622 | } |
| 623 | |
| 624 | bool draw_with_mask_filter(GrContext* context, const SkPath& devPath, |
reed | 868074b | 2014-06-03 10:53:59 -0700 | [diff] [blame] | 625 | SkMaskFilter* filter, const SkRegion& clip, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 626 | GrPaint* grp, SkPaint::Style style) { |
| 627 | SkMask srcM, dstM; |
| 628 | |
| 629 | if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), filter, &context->getMatrix(), &srcM, |
| 630 | SkMask::kComputeBoundsAndRenderImage_CreateMode, style)) { |
| 631 | return false; |
| 632 | } |
| 633 | SkAutoMaskFreeImage autoSrc(srcM.fImage); |
| 634 | |
| 635 | if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) { |
| 636 | return false; |
| 637 | } |
| 638 | // this will free-up dstM when we're done (allocated in filterMask()) |
| 639 | SkAutoMaskFreeImage autoDst(dstM.fImage); |
| 640 | |
| 641 | if (clip.quickReject(dstM.fBounds)) { |
| 642 | return false; |
| 643 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 644 | |
| 645 | // we now have a device-aligned 8bit mask in dstM, ready to be drawn using |
| 646 | // the current clip (and identity matrix) and GrPaint settings |
| 647 | GrTextureDesc desc; |
| 648 | desc.fWidth = dstM.fBounds.width(); |
| 649 | desc.fHeight = dstM.fBounds.height(); |
| 650 | desc.fConfig = kAlpha_8_GrPixelConfig; |
| 651 | |
| 652 | GrAutoScratchTexture ast(context, desc); |
| 653 | GrTexture* texture = ast.texture(); |
| 654 | |
| 655 | if (NULL == texture) { |
| 656 | return false; |
| 657 | } |
| 658 | texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig, |
| 659 | dstM.fImage, dstM.fRowBytes); |
| 660 | |
| 661 | SkRect maskRect = SkRect::Make(dstM.fBounds); |
| 662 | |
| 663 | return draw_mask(context, maskRect, grp, texture); |
| 664 | } |
| 665 | |
| 666 | // Create a mask of 'devPath' and place the result in 'mask'. Return true on |
| 667 | // success; false otherwise. |
| 668 | bool create_mask_GPU(GrContext* context, |
| 669 | const SkRect& maskRect, |
| 670 | const SkPath& devPath, |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 671 | const GrStrokeInfo& strokeInfo, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 672 | bool doAA, |
| 673 | GrAutoScratchTexture* mask) { |
| 674 | GrTextureDesc desc; |
| 675 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 676 | desc.fWidth = SkScalarCeilToInt(maskRect.width()); |
| 677 | desc.fHeight = SkScalarCeilToInt(maskRect.height()); |
| 678 | // We actually only need A8, but it often isn't supported as a |
| 679 | // render target so default to RGBA_8888 |
| 680 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
| 681 | if (context->isConfigRenderable(kAlpha_8_GrPixelConfig, false)) { |
| 682 | desc.fConfig = kAlpha_8_GrPixelConfig; |
| 683 | } |
| 684 | |
| 685 | mask->set(context, desc); |
| 686 | if (NULL == mask->texture()) { |
| 687 | return false; |
| 688 | } |
| 689 | |
| 690 | GrTexture* maskTexture = mask->texture(); |
| 691 | SkRect clipRect = SkRect::MakeWH(maskRect.width(), maskRect.height()); |
| 692 | |
| 693 | GrContext::AutoRenderTarget art(context, maskTexture->asRenderTarget()); |
| 694 | GrContext::AutoClip ac(context, clipRect); |
| 695 | |
| 696 | context->clear(NULL, 0x0, true); |
| 697 | |
| 698 | GrPaint tempPaint; |
| 699 | if (doAA) { |
| 700 | tempPaint.setAntiAlias(true); |
| 701 | // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst |
| 702 | // blend coeff of zero requires dual source blending support in order |
| 703 | // to properly blend partially covered pixels. This means the AA |
| 704 | // code path may not be taken. So we use a dst blend coeff of ISA. We |
| 705 | // could special case AA draws to a dst surface with known alpha=0 to |
| 706 | // use a zero dst coeff when dual source blending isn't available. |
| 707 | tempPaint.setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff); |
| 708 | } |
| 709 | |
| 710 | GrContext::AutoMatrix am; |
| 711 | |
| 712 | // Draw the mask into maskTexture with the path's top-left at the origin using tempPaint. |
| 713 | SkMatrix translate; |
| 714 | translate.setTranslate(-maskRect.fLeft, -maskRect.fTop); |
| 715 | am.set(context, translate); |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 716 | context->drawPath(tempPaint, devPath, strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 717 | return true; |
| 718 | } |
| 719 | |
| 720 | SkBitmap wrap_texture(GrTexture* texture) { |
| 721 | SkBitmap result; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 722 | result.setInfo(texture->info()); |
| 723 | result.setPixelRef(SkNEW_ARGS(SkGrPixelRef, (result.info(), texture)))->unref(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 724 | return result; |
| 725 | } |
| 726 | |
| 727 | }; |
| 728 | |
| 729 | void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath, |
| 730 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
| 731 | bool pathIsMutable) { |
| 732 | CHECK_FOR_ANNOTATION(paint); |
| 733 | CHECK_SHOULD_DRAW(draw, false); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 734 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPath", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 735 | |
| 736 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 737 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 738 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 739 | // If we have a prematrix, apply it to the path, optimizing for the case |
| 740 | // where the original path can in fact be modified in place (even though |
| 741 | // its parameter type is const). |
| 742 | SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath); |
commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 743 | SkTLazy<SkPath> tmpPath; |
| 744 | SkTLazy<SkPath> effectPath; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 745 | |
| 746 | if (prePathMatrix) { |
| 747 | SkPath* result = pathPtr; |
| 748 | |
| 749 | if (!pathIsMutable) { |
commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 750 | result = tmpPath.init(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 751 | pathIsMutable = true; |
| 752 | } |
| 753 | // should I push prePathMatrix on our MV stack temporarily, instead |
| 754 | // of applying it here? See SkDraw.cpp |
| 755 | pathPtr->transform(*prePathMatrix, result); |
| 756 | pathPtr = result; |
| 757 | } |
| 758 | // at this point we're done with prePathMatrix |
| 759 | SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;) |
| 760 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 761 | GrStrokeInfo strokeInfo(paint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 762 | SkPathEffect* pathEffect = paint.getPathEffect(); |
| 763 | const SkRect* cullRect = NULL; // TODO: what is our bounds? |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 764 | SkStrokeRec* strokePtr = strokeInfo.getStrokeRecPtr(); |
| 765 | if (pathEffect && pathEffect->filterPath(effectPath.init(), *pathPtr, strokePtr, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 766 | cullRect)) { |
commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 767 | pathPtr = effectPath.get(); |
| 768 | pathIsMutable = true; |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 769 | strokeInfo.removeDash(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 770 | } |
| 771 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 772 | const SkStrokeRec& stroke = strokeInfo.getStrokeRec(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 773 | if (paint.getMaskFilter()) { |
| 774 | if (!stroke.isHairlineStyle()) { |
commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 775 | SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init(); |
| 776 | if (stroke.applyToPath(strokedPath, *pathPtr)) { |
| 777 | pathPtr = strokedPath; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 778 | pathIsMutable = true; |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 779 | strokeInfo.setFillStyle(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | |
| 783 | // avoid possibly allocating a new path in transform if we can |
commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 784 | SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 785 | |
| 786 | // transform the path into device space |
| 787 | pathPtr->transform(fContext->getMatrix(), devPathPtr); |
skia.committer@gmail.com | 4c18e9f | 2014-01-31 03:01:59 +0000 | [diff] [blame] | 788 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 789 | SkRect maskRect; |
| 790 | if (paint.getMaskFilter()->canFilterMaskGPU(devPathPtr->getBounds(), |
| 791 | draw.fClip->getBounds(), |
| 792 | fContext->getMatrix(), |
| 793 | &maskRect)) { |
commit-bot@chromium.org | 439ff1b | 2014-01-13 16:39:39 +0000 | [diff] [blame] | 794 | // The context's matrix may change while creating the mask, so save the CTM here to |
| 795 | // pass to filterMaskGPU. |
| 796 | const SkMatrix ctm = fContext->getMatrix(); |
| 797 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 798 | SkIRect finalIRect; |
| 799 | maskRect.roundOut(&finalIRect); |
| 800 | if (draw.fClip->quickReject(finalIRect)) { |
| 801 | // clipped out |
| 802 | return; |
| 803 | } |
skia.committer@gmail.com | 4c18e9f | 2014-01-31 03:01:59 +0000 | [diff] [blame] | 804 | |
commit-bot@chromium.org | cf34bc0 | 2014-01-30 15:34:43 +0000 | [diff] [blame] | 805 | if (paint.getMaskFilter()->directFilterMaskGPU(fContext, &grPaint, |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 806 | stroke, *devPathPtr)) { |
commit-bot@chromium.org | cf34bc0 | 2014-01-30 15:34:43 +0000 | [diff] [blame] | 807 | // the mask filter was able to draw itself directly, so there's nothing |
| 808 | // left to do. |
| 809 | return; |
| 810 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 811 | |
| 812 | GrAutoScratchTexture mask; |
| 813 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 814 | if (create_mask_GPU(fContext, maskRect, *devPathPtr, strokeInfo, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 815 | grPaint.isAntiAlias(), &mask)) { |
| 816 | GrTexture* filtered; |
| 817 | |
commit-bot@chromium.org | 41bf930 | 2014-01-08 22:25:53 +0000 | [diff] [blame] | 818 | if (paint.getMaskFilter()->filterMaskGPU(mask.texture(), |
commit-bot@chromium.org | 439ff1b | 2014-01-13 16:39:39 +0000 | [diff] [blame] | 819 | ctm, maskRect, &filtered, true)) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 820 | // filterMaskGPU gives us ownership of a ref to the result |
| 821 | SkAutoTUnref<GrTexture> atu(filtered); |
| 822 | |
| 823 | // If the scratch texture that we used as the filter src also holds the filter |
| 824 | // result then we must detach so that this texture isn't recycled for a later |
| 825 | // draw. |
| 826 | if (filtered == mask.texture()) { |
| 827 | mask.detach(); |
| 828 | filtered->unref(); // detach transfers GrAutoScratchTexture's ref to us. |
| 829 | } |
| 830 | |
| 831 | if (draw_mask(fContext, maskRect, &grPaint, filtered)) { |
| 832 | // This path is completely drawn |
| 833 | return; |
| 834 | } |
| 835 | } |
| 836 | } |
| 837 | } |
| 838 | |
| 839 | // draw the mask on the CPU - this is a fallthrough path in case the |
| 840 | // GPU path fails |
| 841 | SkPaint::Style style = stroke.isHairlineStyle() ? SkPaint::kStroke_Style : |
| 842 | SkPaint::kFill_Style; |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 843 | draw_with_mask_filter(fContext, *devPathPtr, paint.getMaskFilter(), |
| 844 | *draw.fClip, &grPaint, style); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 845 | return; |
| 846 | } |
| 847 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 848 | fContext->drawPath(grPaint, *pathPtr, strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | static const int kBmpSmallTileSize = 1 << 10; |
| 852 | |
| 853 | static inline int get_tile_count(const SkIRect& srcRect, int tileSize) { |
| 854 | int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1; |
| 855 | int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1; |
| 856 | return tilesX * tilesY; |
| 857 | } |
| 858 | |
| 859 | static int determine_tile_size(const SkBitmap& bitmap, const SkIRect& src, int maxTileSize) { |
| 860 | if (maxTileSize <= kBmpSmallTileSize) { |
| 861 | return maxTileSize; |
| 862 | } |
| 863 | |
| 864 | size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize); |
| 865 | size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize); |
| 866 | |
| 867 | maxTileTotalTileSize *= maxTileSize * maxTileSize; |
| 868 | smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize; |
| 869 | |
| 870 | if (maxTileTotalTileSize > 2 * smallTotalTileSize) { |
| 871 | return kBmpSmallTileSize; |
| 872 | } else { |
| 873 | return maxTileSize; |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | // Given a bitmap, an optional src rect, and a context with a clip and matrix determine what |
| 878 | // pixels from the bitmap are necessary. |
| 879 | static void determine_clipped_src_rect(const GrContext* context, |
| 880 | const SkBitmap& bitmap, |
| 881 | const SkRect* srcRectPtr, |
| 882 | SkIRect* clippedSrcIRect) { |
| 883 | const GrClipData* clip = context->getClip(); |
| 884 | clip->getConservativeBounds(context->getRenderTarget(), clippedSrcIRect, NULL); |
| 885 | SkMatrix inv; |
| 886 | if (!context->getMatrix().invert(&inv)) { |
| 887 | clippedSrcIRect->setEmpty(); |
| 888 | return; |
| 889 | } |
| 890 | SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect); |
| 891 | inv.mapRect(&clippedSrcRect); |
| 892 | if (NULL != srcRectPtr) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 893 | // we've setup src space 0,0 to map to the top left of the src rect. |
| 894 | clippedSrcRect.offset(srcRectPtr->fLeft, srcRectPtr->fTop); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 895 | if (!clippedSrcRect.intersect(*srcRectPtr)) { |
| 896 | clippedSrcIRect->setEmpty(); |
| 897 | return; |
| 898 | } |
| 899 | } |
| 900 | clippedSrcRect.roundOut(clippedSrcIRect); |
| 901 | SkIRect bmpBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height()); |
| 902 | if (!clippedSrcIRect->intersect(bmpBounds)) { |
| 903 | clippedSrcIRect->setEmpty(); |
| 904 | } |
| 905 | } |
| 906 | |
| 907 | bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap, |
| 908 | const GrTextureParams& params, |
| 909 | const SkRect* srcRectPtr, |
| 910 | int maxTileSize, |
| 911 | int* tileSize, |
| 912 | SkIRect* clippedSrcRect) const { |
| 913 | // if bitmap is explictly texture backed then just use the texture |
| 914 | if (NULL != bitmap.getTexture()) { |
| 915 | return false; |
| 916 | } |
| 917 | |
| 918 | // if it's larger than the max tile size, then we have no choice but tiling. |
| 919 | if (bitmap.width() > maxTileSize || bitmap.height() > maxTileSize) { |
| 920 | determine_clipped_src_rect(fContext, bitmap, srcRectPtr, clippedSrcRect); |
| 921 | *tileSize = determine_tile_size(bitmap, *clippedSrcRect, maxTileSize); |
| 922 | return true; |
| 923 | } |
| 924 | |
| 925 | if (bitmap.width() * bitmap.height() < 4 * kBmpSmallTileSize * kBmpSmallTileSize) { |
| 926 | return false; |
| 927 | } |
| 928 | |
| 929 | // if the entire texture is already in our cache then no reason to tile it |
| 930 | if (GrIsBitmapInCache(fContext, bitmap, ¶ms)) { |
| 931 | return false; |
| 932 | } |
| 933 | |
| 934 | // At this point we know we could do the draw by uploading the entire bitmap |
| 935 | // as a texture. However, if the texture would be large compared to the |
| 936 | // cache size and we don't require most of it for this draw then tile to |
| 937 | // reduce the amount of upload and cache spill. |
| 938 | |
| 939 | // assumption here is that sw bitmap size is a good proxy for its size as |
| 940 | // a texture |
| 941 | size_t bmpSize = bitmap.getSize(); |
| 942 | size_t cacheSize; |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 943 | fContext->getResourceCacheLimits(NULL, &cacheSize); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 944 | if (bmpSize < cacheSize / 2) { |
| 945 | return false; |
| 946 | } |
| 947 | |
| 948 | // Figure out how much of the src we will need based on the src rect and clipping. |
| 949 | determine_clipped_src_rect(fContext, bitmap, srcRectPtr, clippedSrcRect); |
| 950 | *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile. |
| 951 | size_t usedTileBytes = get_tile_count(*clippedSrcRect, kBmpSmallTileSize) * |
| 952 | kBmpSmallTileSize * kBmpSmallTileSize; |
| 953 | |
| 954 | return usedTileBytes < 2 * bmpSize; |
| 955 | } |
| 956 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 957 | void SkGpuDevice::drawBitmap(const SkDraw& origDraw, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 958 | const SkBitmap& bitmap, |
| 959 | const SkMatrix& m, |
| 960 | const SkPaint& paint) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 961 | SkMatrix concat; |
| 962 | SkTCopyOnFirstWrite<SkDraw> draw(origDraw); |
| 963 | if (!m.isIdentity()) { |
| 964 | concat.setConcat(*draw->fMatrix, m); |
| 965 | draw.writable()->fMatrix = &concat; |
| 966 | } |
| 967 | this->drawBitmapCommon(*draw, bitmap, NULL, NULL, paint, SkCanvas::kNone_DrawBitmapRectFlag); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 968 | } |
| 969 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 970 | // This method outsets 'iRect' by 'outset' all around and then clamps its extents to |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 971 | // 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner |
| 972 | // of 'iRect' for all possible outsets/clamps. |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 973 | static inline void clamped_outset_with_offset(SkIRect* iRect, |
| 974 | int outset, |
| 975 | SkPoint* offset, |
| 976 | const SkIRect& clamp) { |
| 977 | iRect->outset(outset, outset); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 978 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 979 | int leftClampDelta = clamp.fLeft - iRect->fLeft; |
| 980 | if (leftClampDelta > 0) { |
| 981 | offset->fX -= outset - leftClampDelta; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 982 | iRect->fLeft = clamp.fLeft; |
| 983 | } else { |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 984 | offset->fX -= outset; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 985 | } |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 986 | |
| 987 | int topClampDelta = clamp.fTop - iRect->fTop; |
| 988 | if (topClampDelta > 0) { |
| 989 | offset->fY -= outset - topClampDelta; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 990 | iRect->fTop = clamp.fTop; |
| 991 | } else { |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 992 | offset->fY -= outset; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | if (iRect->fRight > clamp.fRight) { |
| 996 | iRect->fRight = clamp.fRight; |
| 997 | } |
| 998 | if (iRect->fBottom > clamp.fBottom) { |
| 999 | iRect->fBottom = clamp.fBottom; |
| 1000 | } |
| 1001 | } |
| 1002 | |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1003 | static bool has_aligned_samples(const SkRect& srcRect, |
| 1004 | const SkRect& transformedRect) { |
| 1005 | // detect pixel disalignment |
| 1006 | if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) - |
| 1007 | transformedRect.left()) < COLOR_BLEED_TOLERANCE && |
| 1008 | SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) - |
| 1009 | transformedRect.top()) < COLOR_BLEED_TOLERANCE && |
| 1010 | SkScalarAbs(transformedRect.width() - srcRect.width()) < |
| 1011 | COLOR_BLEED_TOLERANCE && |
| 1012 | SkScalarAbs(transformedRect.height() - srcRect.height()) < |
| 1013 | COLOR_BLEED_TOLERANCE) { |
| 1014 | return true; |
| 1015 | } |
| 1016 | return false; |
| 1017 | } |
| 1018 | |
| 1019 | static bool may_color_bleed(const SkRect& srcRect, |
| 1020 | const SkRect& transformedRect, |
| 1021 | const SkMatrix& m) { |
| 1022 | // Only gets called if has_aligned_samples returned false. |
| 1023 | // So we can assume that sampling is axis aligned but not texel aligned. |
| 1024 | SkASSERT(!has_aligned_samples(srcRect, transformedRect)); |
| 1025 | SkRect innerSrcRect(srcRect), innerTransformedRect, |
| 1026 | outerTransformedRect(transformedRect); |
| 1027 | innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf); |
| 1028 | m.mapRect(&innerTransformedRect, innerSrcRect); |
| 1029 | |
| 1030 | // The gap between outerTransformedRect and innerTransformedRect |
| 1031 | // represents the projection of the source border area, which is |
| 1032 | // problematic for color bleeding. We must check whether any |
| 1033 | // destination pixels sample the border area. |
| 1034 | outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE); |
| 1035 | innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE); |
| 1036 | SkIRect outer, inner; |
| 1037 | outerTransformedRect.round(&outer); |
| 1038 | innerTransformedRect.round(&inner); |
| 1039 | // If the inner and outer rects round to the same result, it means the |
| 1040 | // border does not overlap any pixel centers. Yay! |
| 1041 | return inner != outer; |
| 1042 | } |
| 1043 | |
| 1044 | static bool needs_texture_domain(const SkBitmap& bitmap, |
| 1045 | const SkRect& srcRect, |
| 1046 | GrTextureParams ¶ms, |
| 1047 | const SkMatrix& contextMatrix, |
| 1048 | bool bicubic) { |
| 1049 | bool needsTextureDomain = false; |
| 1050 | |
| 1051 | if (bicubic || params.filterMode() != GrTextureParams::kNone_FilterMode) { |
| 1052 | // Need texture domain if drawing a sub rect |
| 1053 | needsTextureDomain = srcRect.width() < bitmap.width() || |
| 1054 | srcRect.height() < bitmap.height(); |
| 1055 | if (!bicubic && needsTextureDomain && contextMatrix.rectStaysRect()) { |
| 1056 | // sampling is axis-aligned |
| 1057 | SkRect transformedRect; |
| 1058 | contextMatrix.mapRect(&transformedRect, srcRect); |
| 1059 | |
| 1060 | if (has_aligned_samples(srcRect, transformedRect)) { |
| 1061 | params.setFilterMode(GrTextureParams::kNone_FilterMode); |
| 1062 | needsTextureDomain = false; |
| 1063 | } else { |
| 1064 | needsTextureDomain = may_color_bleed(srcRect, transformedRect, contextMatrix); |
| 1065 | } |
| 1066 | } |
| 1067 | } |
| 1068 | return needsTextureDomain; |
| 1069 | } |
| 1070 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1071 | void SkGpuDevice::drawBitmapCommon(const SkDraw& draw, |
| 1072 | const SkBitmap& bitmap, |
| 1073 | const SkRect* srcRectPtr, |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1074 | const SkSize* dstSizePtr, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1075 | const SkPaint& paint, |
| 1076 | SkCanvas::DrawBitmapRectFlags flags) { |
| 1077 | CHECK_SHOULD_DRAW(draw, false); |
| 1078 | |
| 1079 | SkRect srcRect; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1080 | SkSize dstSize; |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1081 | // If there is no src rect, or the src rect contains the entire bitmap then we're effectively |
| 1082 | // in the (easier) bleed case, so update flags. |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1083 | if (NULL == srcRectPtr) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1084 | SkScalar w = SkIntToScalar(bitmap.width()); |
| 1085 | SkScalar h = SkIntToScalar(bitmap.height()); |
| 1086 | dstSize.fWidth = w; |
| 1087 | dstSize.fHeight = h; |
| 1088 | srcRect.set(0, 0, w, h); |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1089 | flags = (SkCanvas::DrawBitmapRectFlags) (flags | SkCanvas::kBleed_DrawBitmapRectFlag); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1090 | } else { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1091 | SkASSERT(NULL != dstSizePtr); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1092 | srcRect = *srcRectPtr; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1093 | dstSize = *dstSizePtr; |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1094 | if (srcRect.fLeft <= 0 && srcRect.fTop <= 0 && |
| 1095 | srcRect.fRight >= bitmap.width() && srcRect.fBottom >= bitmap.height()) { |
| 1096 | flags = (SkCanvas::DrawBitmapRectFlags) (flags | SkCanvas::kBleed_DrawBitmapRectFlag); |
| 1097 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | if (paint.getMaskFilter()){ |
| 1101 | // Convert the bitmap to a shader so that the rect can be drawn |
| 1102 | // through drawRect, which supports mask filters. |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1103 | SkBitmap tmp; // subset of bitmap, if necessary |
| 1104 | const SkBitmap* bitmapPtr = &bitmap; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1105 | SkMatrix localM; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1106 | if (NULL != srcRectPtr) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1107 | localM.setTranslate(-srcRectPtr->fLeft, -srcRectPtr->fTop); |
| 1108 | localM.postScale(dstSize.fWidth / srcRectPtr->width(), |
| 1109 | dstSize.fHeight / srcRectPtr->height()); |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1110 | // In bleed mode we position and trim the bitmap based on the src rect which is |
| 1111 | // already accounted for in 'm' and 'srcRect'. In clamp mode we need to chop out |
| 1112 | // the desired portion of the bitmap and then update 'm' and 'srcRect' to |
| 1113 | // compensate. |
| 1114 | if (!(SkCanvas::kBleed_DrawBitmapRectFlag & flags)) { |
| 1115 | SkIRect iSrc; |
| 1116 | srcRect.roundOut(&iSrc); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1117 | |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1118 | SkPoint offset = SkPoint::Make(SkIntToScalar(iSrc.fLeft), |
| 1119 | SkIntToScalar(iSrc.fTop)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1120 | |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1121 | if (!bitmap.extractSubset(&tmp, iSrc)) { |
| 1122 | return; // extraction failed |
| 1123 | } |
| 1124 | bitmapPtr = &tmp; |
| 1125 | srcRect.offset(-offset.fX, -offset.fY); |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1126 | |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1127 | // The source rect has changed so update the matrix |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1128 | localM.preTranslate(offset.fX, offset.fY); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1129 | } |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1130 | } else { |
| 1131 | localM.reset(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1134 | SkPaint paintWithShader(paint); |
| 1135 | paintWithShader.setShader(SkShader::CreateBitmapShader(*bitmapPtr, |
commit-bot@chromium.org | 9c9005a | 2014-04-28 14:55:39 +0000 | [diff] [blame] | 1136 | SkShader::kClamp_TileMode, SkShader::kClamp_TileMode, &localM))->unref(); |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1137 | SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight}; |
| 1138 | this->drawRect(draw, dstRect, paintWithShader); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1139 | |
| 1140 | return; |
| 1141 | } |
| 1142 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1143 | // If there is no mask filter than it is OK to handle the src rect -> dst rect scaling using |
| 1144 | // the view matrix rather than a local matrix. |
| 1145 | SkMatrix m; |
| 1146 | m.setScale(dstSize.fWidth / srcRect.width(), |
| 1147 | dstSize.fHeight / srcRect.height()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1148 | fContext->concatMatrix(m); |
| 1149 | |
| 1150 | GrTextureParams params; |
| 1151 | SkPaint::FilterLevel paintFilterLevel = paint.getFilterLevel(); |
| 1152 | GrTextureParams::FilterMode textureFilterMode; |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1153 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1154 | bool doBicubic = false; |
| 1155 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1156 | switch(paintFilterLevel) { |
| 1157 | case SkPaint::kNone_FilterLevel: |
| 1158 | textureFilterMode = GrTextureParams::kNone_FilterMode; |
| 1159 | break; |
| 1160 | case SkPaint::kLow_FilterLevel: |
| 1161 | textureFilterMode = GrTextureParams::kBilerp_FilterMode; |
| 1162 | break; |
| 1163 | case SkPaint::kMedium_FilterLevel: |
commit-bot@chromium.org | 1878651 | 2014-05-20 14:53:45 +0000 | [diff] [blame] | 1164 | if (fContext->getMatrix().getMinScale() < SK_Scalar1) { |
commit-bot@chromium.org | 79b7eee | 2013-12-16 21:02:29 +0000 | [diff] [blame] | 1165 | textureFilterMode = GrTextureParams::kMipMap_FilterMode; |
| 1166 | } else { |
| 1167 | // Don't trigger MIP level generation unnecessarily. |
| 1168 | textureFilterMode = GrTextureParams::kBilerp_FilterMode; |
| 1169 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1170 | break; |
commit-bot@chromium.org | 79b7eee | 2013-12-16 21:02:29 +0000 | [diff] [blame] | 1171 | case SkPaint::kHigh_FilterLevel: |
commit-bot@chromium.org | cea9abb | 2013-12-09 19:15:37 +0000 | [diff] [blame] | 1172 | // Minification can look bad with the bicubic effect. |
commit-bot@chromium.org | 9927bd3 | 2014-05-20 17:51:13 +0000 | [diff] [blame] | 1173 | doBicubic = |
| 1174 | GrBicubicEffect::ShouldUseBicubic(fContext->getMatrix(), &textureFilterMode); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1175 | break; |
| 1176 | default: |
| 1177 | SkErrorInternals::SetError( kInvalidPaint_SkError, |
| 1178 | "Sorry, I don't understand the filtering " |
| 1179 | "mode you asked for. Falling back to " |
| 1180 | "MIPMaps."); |
| 1181 | textureFilterMode = GrTextureParams::kMipMap_FilterMode; |
| 1182 | break; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1183 | } |
| 1184 | |
commit-bot@chromium.org | 9927bd3 | 2014-05-20 17:51:13 +0000 | [diff] [blame] | 1185 | int tileFilterPad; |
| 1186 | if (doBicubic) { |
| 1187 | tileFilterPad = GrBicubicEffect::kFilterTexelPad; |
| 1188 | } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) { |
| 1189 | tileFilterPad = 0; |
| 1190 | } else { |
| 1191 | tileFilterPad = 1; |
| 1192 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1193 | params.setFilterMode(textureFilterMode); |
| 1194 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1195 | int maxTileSize = fContext->getMaxTextureSize() - 2 * tileFilterPad; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1196 | int tileSize; |
| 1197 | |
| 1198 | SkIRect clippedSrcRect; |
| 1199 | if (this->shouldTileBitmap(bitmap, params, srcRectPtr, maxTileSize, &tileSize, |
| 1200 | &clippedSrcRect)) { |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1201 | this->drawTiledBitmap(bitmap, srcRect, clippedSrcRect, params, paint, flags, tileSize, |
| 1202 | doBicubic); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1203 | } else { |
| 1204 | // take the simple case |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1205 | bool needsTextureDomain = needs_texture_domain(bitmap, |
| 1206 | srcRect, |
| 1207 | params, |
| 1208 | fContext->getMatrix(), |
| 1209 | doBicubic); |
| 1210 | this->internalDrawBitmap(bitmap, |
| 1211 | srcRect, |
| 1212 | params, |
| 1213 | paint, |
| 1214 | flags, |
| 1215 | doBicubic, |
| 1216 | needsTextureDomain); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | // Break 'bitmap' into several tiles to draw it since it has already |
| 1221 | // been determined to be too large to fit in VRAM |
| 1222 | void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap, |
| 1223 | const SkRect& srcRect, |
| 1224 | const SkIRect& clippedSrcIRect, |
| 1225 | const GrTextureParams& params, |
| 1226 | const SkPaint& paint, |
| 1227 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1228 | int tileSize, |
| 1229 | bool bicubic) { |
commit-bot@chromium.org | 9d5e3f1 | 2014-05-01 21:23:19 +0000 | [diff] [blame] | 1230 | // The following pixel lock is technically redundant, but it is desirable |
| 1231 | // to lock outside of the tile loop to prevent redecoding the whole image |
| 1232 | // at each tile in cases where 'bitmap' holds an SkDiscardablePixelRef that |
| 1233 | // is larger than the limit of the discardable memory pool. |
| 1234 | SkAutoLockPixels alp(bitmap); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1235 | SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect); |
| 1236 | |
| 1237 | int nx = bitmap.width() / tileSize; |
| 1238 | int ny = bitmap.height() / tileSize; |
| 1239 | for (int x = 0; x <= nx; x++) { |
| 1240 | for (int y = 0; y <= ny; y++) { |
| 1241 | SkRect tileR; |
| 1242 | tileR.set(SkIntToScalar(x * tileSize), |
| 1243 | SkIntToScalar(y * tileSize), |
| 1244 | SkIntToScalar((x + 1) * tileSize), |
| 1245 | SkIntToScalar((y + 1) * tileSize)); |
| 1246 | |
| 1247 | if (!SkRect::Intersects(tileR, clippedSrcRect)) { |
| 1248 | continue; |
| 1249 | } |
| 1250 | |
| 1251 | if (!tileR.intersect(srcRect)) { |
| 1252 | continue; |
| 1253 | } |
| 1254 | |
| 1255 | SkBitmap tmpB; |
| 1256 | SkIRect iTileR; |
| 1257 | tileR.roundOut(&iTileR); |
| 1258 | SkPoint offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft), |
| 1259 | SkIntToScalar(iTileR.fTop)); |
| 1260 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1261 | // Adjust the context matrix to draw at the right x,y in device space |
| 1262 | SkMatrix tmpM; |
| 1263 | GrContext::AutoMatrix am; |
| 1264 | tmpM.setTranslate(offset.fX - srcRect.fLeft, offset.fY - srcRect.fTop); |
| 1265 | am.setPreConcat(fContext, tmpM); |
| 1266 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1267 | if (SkPaint::kNone_FilterLevel != paint.getFilterLevel() || bicubic) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1268 | SkIRect iClampRect; |
| 1269 | |
| 1270 | if (SkCanvas::kBleed_DrawBitmapRectFlag & flags) { |
| 1271 | // In bleed mode we want to always expand the tile on all edges |
| 1272 | // but stay within the bitmap bounds |
| 1273 | iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height()); |
| 1274 | } else { |
| 1275 | // In texture-domain/clamp mode we only want to expand the |
| 1276 | // tile on edges interior to "srcRect" (i.e., we want to |
| 1277 | // not bleed across the original clamped edges) |
| 1278 | srcRect.roundOut(&iClampRect); |
| 1279 | } |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1280 | int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1; |
| 1281 | clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
| 1284 | if (bitmap.extractSubset(&tmpB, iTileR)) { |
| 1285 | // now offset it to make it "local" to our tmp bitmap |
| 1286 | tileR.offset(-offset.fX, -offset.fY); |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1287 | GrTextureParams paramsTemp = params; |
| 1288 | bool needsTextureDomain = needs_texture_domain(bitmap, |
| 1289 | srcRect, |
| 1290 | paramsTemp, |
| 1291 | fContext->getMatrix(), |
| 1292 | bicubic); |
| 1293 | this->internalDrawBitmap(tmpB, |
| 1294 | tileR, |
| 1295 | paramsTemp, |
| 1296 | paint, |
| 1297 | flags, |
| 1298 | bicubic, |
| 1299 | needsTextureDomain); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1300 | } |
| 1301 | } |
| 1302 | } |
| 1303 | } |
| 1304 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1305 | |
| 1306 | /* |
| 1307 | * This is called by drawBitmap(), which has to handle images that may be too |
| 1308 | * large to be represented by a single texture. |
| 1309 | * |
| 1310 | * internalDrawBitmap assumes that the specified bitmap will fit in a texture |
| 1311 | * and that non-texture portion of the GrPaint has already been setup. |
| 1312 | */ |
| 1313 | void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap, |
| 1314 | const SkRect& srcRect, |
| 1315 | const GrTextureParams& params, |
| 1316 | const SkPaint& paint, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1317 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1318 | bool bicubic, |
| 1319 | bool needsTextureDomain) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1320 | SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() && |
| 1321 | bitmap.height() <= fContext->getMaxTextureSize()); |
| 1322 | |
| 1323 | GrTexture* texture; |
| 1324 | SkAutoCachedTexture act(this, bitmap, ¶ms, &texture); |
| 1325 | if (NULL == texture) { |
| 1326 | return; |
| 1327 | } |
| 1328 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1329 | SkRect dstRect = {0, 0, srcRect.width(), srcRect.height() }; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1330 | SkRect paintRect; |
| 1331 | SkScalar wInv = SkScalarInvert(SkIntToScalar(texture->width())); |
| 1332 | SkScalar hInv = SkScalarInvert(SkIntToScalar(texture->height())); |
| 1333 | paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv), |
| 1334 | SkScalarMul(srcRect.fTop, hInv), |
| 1335 | SkScalarMul(srcRect.fRight, wInv), |
| 1336 | SkScalarMul(srcRect.fBottom, hInv)); |
| 1337 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1338 | SkRect textureDomain = SkRect::MakeEmpty(); |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1339 | SkAutoTUnref<GrEffect> effect; |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1340 | if (needsTextureDomain && !(flags & SkCanvas::kBleed_DrawBitmapRectFlag)) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1341 | // Use a constrained texture domain to avoid color bleeding |
| 1342 | SkScalar left, top, right, bottom; |
| 1343 | if (srcRect.width() > SK_Scalar1) { |
| 1344 | SkScalar border = SK_ScalarHalf / texture->width(); |
| 1345 | left = paintRect.left() + border; |
| 1346 | right = paintRect.right() - border; |
| 1347 | } else { |
| 1348 | left = right = SkScalarHalf(paintRect.left() + paintRect.right()); |
| 1349 | } |
| 1350 | if (srcRect.height() > SK_Scalar1) { |
| 1351 | SkScalar border = SK_ScalarHalf / texture->height(); |
| 1352 | top = paintRect.top() + border; |
| 1353 | bottom = paintRect.bottom() - border; |
| 1354 | } else { |
| 1355 | top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom()); |
| 1356 | } |
| 1357 | textureDomain.setLTRB(left, top, right, bottom); |
commit-bot@chromium.org | 7d7f314 | 2013-12-16 15:18:11 +0000 | [diff] [blame] | 1358 | if (bicubic) { |
| 1359 | effect.reset(GrBicubicEffect::Create(texture, SkMatrix::I(), textureDomain)); |
| 1360 | } else { |
| 1361 | effect.reset(GrTextureDomainEffect::Create(texture, |
| 1362 | SkMatrix::I(), |
| 1363 | textureDomain, |
| 1364 | GrTextureDomain::kClamp_Mode, |
| 1365 | params.filterMode())); |
| 1366 | } |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1367 | } else if (bicubic) { |
commit-bot@chromium.org | bc91fd7 | 2013-12-10 12:53:39 +0000 | [diff] [blame] | 1368 | SkASSERT(GrTextureParams::kNone_FilterMode == params.filterMode()); |
| 1369 | SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() }; |
| 1370 | effect.reset(GrBicubicEffect::Create(texture, SkMatrix::I(), tileModes)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1371 | } else { |
| 1372 | effect.reset(GrSimpleTextureEffect::Create(texture, SkMatrix::I(), params)); |
| 1373 | } |
| 1374 | |
| 1375 | // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring |
| 1376 | // the rest from the SkPaint. |
| 1377 | GrPaint grPaint; |
| 1378 | grPaint.addColorEffect(effect); |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1379 | bool alphaOnly = !(kAlpha_8_SkColorType == bitmap.colorType()); |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1380 | GrColor paintColor = (alphaOnly) ? SkColor2GrColorJustAlpha(paint.getColor()) : |
| 1381 | SkColor2GrColor(paint.getColor()); |
| 1382 | SkPaint2GrPaintNoShader(this->context(), paint, paintColor, false, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1383 | |
bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 1384 | fContext->drawRectToRect(grPaint, dstRect, paintRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1385 | } |
| 1386 | |
| 1387 | static bool filter_texture(SkBaseDevice* device, GrContext* context, |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 1388 | GrTexture* texture, const SkImageFilter* filter, |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1389 | int w, int h, const SkImageFilter::Context& ctx, |
| 1390 | SkBitmap* result, SkIPoint* offset) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1391 | SkASSERT(filter); |
| 1392 | SkDeviceImageFilterProxy proxy(device); |
| 1393 | |
| 1394 | if (filter->canFilterImageGPU()) { |
| 1395 | // Save the render target and set it to NULL, so we don't accidentally draw to it in the |
| 1396 | // filter. Also set the clip wide open and the matrix to identity. |
| 1397 | GrContext::AutoWideOpenIdentityDraw awo(context, NULL); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1398 | return filter->filterImageGPU(&proxy, wrap_texture(texture), ctx, result, offset); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1399 | } else { |
| 1400 | return false; |
| 1401 | } |
| 1402 | } |
| 1403 | |
| 1404 | void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap, |
| 1405 | int left, int top, const SkPaint& paint) { |
| 1406 | // drawSprite is defined to be in device coords. |
| 1407 | CHECK_SHOULD_DRAW(draw, true); |
| 1408 | |
| 1409 | SkAutoLockPixels alp(bitmap, !bitmap.getTexture()); |
| 1410 | if (!bitmap.getTexture() && !bitmap.readyToDraw()) { |
| 1411 | return; |
| 1412 | } |
| 1413 | |
| 1414 | int w = bitmap.width(); |
| 1415 | int h = bitmap.height(); |
| 1416 | |
| 1417 | GrTexture* texture; |
| 1418 | // draw sprite uses the default texture params |
| 1419 | SkAutoCachedTexture act(this, bitmap, NULL, &texture); |
| 1420 | |
| 1421 | SkImageFilter* filter = paint.getImageFilter(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1422 | // This bitmap will own the filtered result as a texture. |
| 1423 | SkBitmap filteredBitmap; |
| 1424 | |
| 1425 | if (NULL != filter) { |
senorblanco@chromium.org | 6776b82 | 2014-01-03 21:48:22 +0000 | [diff] [blame] | 1426 | SkIPoint offset = SkIPoint::Make(0, 0); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1427 | SkMatrix matrix(*draw.fMatrix); |
| 1428 | matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top)); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1429 | SkIRect clipBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height()); |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 1430 | SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache()); |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 1431 | // This cache is transient, and is freed (along with all its contained |
| 1432 | // textures) when it goes out of scope. |
commit-bot@chromium.org | f7efa50 | 2014-04-11 18:57:00 +0000 | [diff] [blame] | 1433 | SkImageFilter::Context ctx(matrix, clipBounds, cache); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1434 | if (filter_texture(this, fContext, texture, filter, w, h, ctx, &filteredBitmap, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1435 | &offset)) { |
| 1436 | texture = (GrTexture*) filteredBitmap.getTexture(); |
| 1437 | w = filteredBitmap.width(); |
| 1438 | h = filteredBitmap.height(); |
senorblanco@chromium.org | 6776b82 | 2014-01-03 21:48:22 +0000 | [diff] [blame] | 1439 | left += offset.x(); |
| 1440 | top += offset.y(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1441 | } else { |
| 1442 | return; |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | GrPaint grPaint; |
| 1447 | grPaint.addColorTextureEffect(texture, SkMatrix::I()); |
| 1448 | |
dandov | 9de5b51 | 2014-06-10 14:38:28 -0700 | [diff] [blame] | 1449 | SkPaint2GrPaintNoShader(this->context(), paint, SkColor2GrColorJustAlpha(paint.getColor()), |
| 1450 | false, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1451 | |
| 1452 | fContext->drawRectToRect(grPaint, |
senorblanco@chromium.org | 6776b82 | 2014-01-03 21:48:22 +0000 | [diff] [blame] | 1453 | SkRect::MakeXYWH(SkIntToScalar(left), |
| 1454 | SkIntToScalar(top), |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1455 | SkIntToScalar(w), |
| 1456 | SkIntToScalar(h)), |
| 1457 | SkRect::MakeXYWH(0, |
| 1458 | 0, |
| 1459 | SK_Scalar1 * w / texture->width(), |
| 1460 | SK_Scalar1 * h / texture->height())); |
| 1461 | } |
| 1462 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1463 | void SkGpuDevice::drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1464 | const SkRect* src, const SkRect& dst, |
| 1465 | const SkPaint& paint, |
| 1466 | SkCanvas::DrawBitmapRectFlags flags) { |
| 1467 | SkMatrix matrix; |
| 1468 | SkRect bitmapBounds, tmpSrc; |
| 1469 | |
| 1470 | bitmapBounds.set(0, 0, |
| 1471 | SkIntToScalar(bitmap.width()), |
| 1472 | SkIntToScalar(bitmap.height())); |
| 1473 | |
| 1474 | // Compute matrix from the two rectangles |
| 1475 | if (NULL != src) { |
| 1476 | tmpSrc = *src; |
| 1477 | } else { |
| 1478 | tmpSrc = bitmapBounds; |
| 1479 | } |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1480 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1481 | matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit); |
| 1482 | |
| 1483 | // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null. |
| 1484 | if (NULL != src) { |
| 1485 | if (!bitmapBounds.contains(tmpSrc)) { |
| 1486 | if (!tmpSrc.intersect(bitmapBounds)) { |
| 1487 | return; // nothing to draw |
| 1488 | } |
| 1489 | } |
| 1490 | } |
| 1491 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1492 | SkRect tmpDst; |
| 1493 | matrix.mapRect(&tmpDst, tmpSrc); |
| 1494 | |
| 1495 | SkTCopyOnFirstWrite<SkDraw> draw(origDraw); |
| 1496 | if (0 != tmpDst.fLeft || 0 != tmpDst.fTop) { |
| 1497 | // Translate so that tempDst's top left is at the origin. |
| 1498 | matrix = *origDraw.fMatrix; |
| 1499 | matrix.preTranslate(tmpDst.fLeft, tmpDst.fTop); |
| 1500 | draw.writable()->fMatrix = &matrix; |
| 1501 | } |
| 1502 | SkSize dstSize; |
| 1503 | dstSize.fWidth = tmpDst.width(); |
| 1504 | dstSize.fHeight = tmpDst.height(); |
| 1505 | |
| 1506 | this->drawBitmapCommon(*draw, bitmap, &tmpSrc, &dstSize, paint, flags); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | void SkGpuDevice::drawDevice(const SkDraw& draw, SkBaseDevice* device, |
| 1510 | int x, int y, const SkPaint& paint) { |
| 1511 | // clear of the source device must occur before CHECK_SHOULD_DRAW |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 1512 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawDevice", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1513 | SkGpuDevice* dev = static_cast<SkGpuDevice*>(device); |
| 1514 | if (dev->fNeedClear) { |
| 1515 | // TODO: could check here whether we really need to draw at all |
| 1516 | dev->clear(0x0); |
| 1517 | } |
| 1518 | |
| 1519 | // drawDevice is defined to be in device coords. |
| 1520 | CHECK_SHOULD_DRAW(draw, true); |
| 1521 | |
| 1522 | GrRenderTarget* devRT = dev->accessRenderTarget(); |
| 1523 | GrTexture* devTex; |
| 1524 | if (NULL == (devTex = devRT->asTexture())) { |
| 1525 | return; |
| 1526 | } |
| 1527 | |
| 1528 | const SkBitmap& bm = dev->accessBitmap(false); |
| 1529 | int w = bm.width(); |
| 1530 | int h = bm.height(); |
| 1531 | |
| 1532 | SkImageFilter* filter = paint.getImageFilter(); |
| 1533 | // This bitmap will own the filtered result as a texture. |
| 1534 | SkBitmap filteredBitmap; |
| 1535 | |
| 1536 | if (NULL != filter) { |
| 1537 | SkIPoint offset = SkIPoint::Make(0, 0); |
| 1538 | SkMatrix matrix(*draw.fMatrix); |
| 1539 | matrix.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y)); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1540 | SkIRect clipBounds = SkIRect::MakeWH(devTex->width(), devTex->height()); |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 1541 | // This cache is transient, and is freed (along with all its contained |
| 1542 | // textures) when it goes out of scope. |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 1543 | SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache()); |
commit-bot@chromium.org | f7efa50 | 2014-04-11 18:57:00 +0000 | [diff] [blame] | 1544 | SkImageFilter::Context ctx(matrix, clipBounds, cache); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1545 | if (filter_texture(this, fContext, devTex, filter, w, h, ctx, &filteredBitmap, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1546 | &offset)) { |
| 1547 | devTex = filteredBitmap.getTexture(); |
| 1548 | w = filteredBitmap.width(); |
| 1549 | h = filteredBitmap.height(); |
| 1550 | x += offset.fX; |
| 1551 | y += offset.fY; |
| 1552 | } else { |
| 1553 | return; |
| 1554 | } |
| 1555 | } |
| 1556 | |
| 1557 | GrPaint grPaint; |
| 1558 | grPaint.addColorTextureEffect(devTex, SkMatrix::I()); |
| 1559 | |
dandov | 9de5b51 | 2014-06-10 14:38:28 -0700 | [diff] [blame] | 1560 | SkPaint2GrPaintNoShader(this->context(), paint, SkColor2GrColorJustAlpha(paint.getColor()), |
| 1561 | false, &grPaint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1562 | |
| 1563 | SkRect dstRect = SkRect::MakeXYWH(SkIntToScalar(x), |
| 1564 | SkIntToScalar(y), |
| 1565 | SkIntToScalar(w), |
| 1566 | SkIntToScalar(h)); |
| 1567 | |
| 1568 | // The device being drawn may not fill up its texture (e.g. saveLayer uses approximate |
| 1569 | // scratch texture). |
| 1570 | SkRect srcRect = SkRect::MakeWH(SK_Scalar1 * w / devTex->width(), |
| 1571 | SK_Scalar1 * h / devTex->height()); |
| 1572 | |
| 1573 | fContext->drawRectToRect(grPaint, dstRect, srcRect); |
| 1574 | } |
| 1575 | |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 1576 | bool SkGpuDevice::canHandleImageFilter(const SkImageFilter* filter) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1577 | return filter->canFilterImageGPU(); |
| 1578 | } |
| 1579 | |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 1580 | bool SkGpuDevice::filterImage(const SkImageFilter* filter, const SkBitmap& src, |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1581 | const SkImageFilter::Context& ctx, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1582 | SkBitmap* result, SkIPoint* offset) { |
| 1583 | // want explicitly our impl, so guard against a subclass of us overriding it |
| 1584 | if (!this->SkGpuDevice::canHandleImageFilter(filter)) { |
| 1585 | return false; |
| 1586 | } |
| 1587 | |
| 1588 | SkAutoLockPixels alp(src, !src.getTexture()); |
| 1589 | if (!src.getTexture() && !src.readyToDraw()) { |
| 1590 | return false; |
| 1591 | } |
| 1592 | |
| 1593 | GrTexture* texture; |
| 1594 | // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup |
| 1595 | // must be pushed upstack. |
| 1596 | SkAutoCachedTexture act(this, src, NULL, &texture); |
| 1597 | |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1598 | return filter_texture(this, fContext, texture, filter, src.width(), src.height(), ctx, |
| 1599 | result, offset); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | /////////////////////////////////////////////////////////////////////////////// |
| 1603 | |
| 1604 | // must be in SkCanvas::VertexMode order |
| 1605 | static const GrPrimitiveType gVertexMode2PrimitiveType[] = { |
| 1606 | kTriangles_GrPrimitiveType, |
| 1607 | kTriangleStrip_GrPrimitiveType, |
| 1608 | kTriangleFan_GrPrimitiveType, |
| 1609 | }; |
| 1610 | |
| 1611 | void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode, |
| 1612 | int vertexCount, const SkPoint vertices[], |
| 1613 | const SkPoint texs[], const SkColor colors[], |
| 1614 | SkXfermode* xmode, |
| 1615 | const uint16_t indices[], int indexCount, |
| 1616 | const SkPaint& paint) { |
| 1617 | CHECK_SHOULD_DRAW(draw, false); |
| 1618 | |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 1619 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawVertices", fContext); |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1620 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1621 | const uint16_t* outIndices; |
| 1622 | SkAutoTDeleteArray<uint16_t> outAlloc(NULL); |
| 1623 | GrPrimitiveType primType; |
| 1624 | GrPaint grPaint; |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1625 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1626 | // If both textures and vertex-colors are NULL, strokes hairlines with the paint's color. |
| 1627 | if ((NULL == texs || NULL == paint.getShader()) && NULL == colors) { |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1628 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1629 | texs = NULL; |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1630 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1631 | SkPaint copy(paint); |
| 1632 | copy.setStyle(SkPaint::kStroke_Style); |
| 1633 | copy.setStrokeWidth(0); |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1634 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1635 | // we ignore the shader if texs is null. |
| 1636 | SkPaint2GrPaintNoShader(this->context(), copy, SkColor2GrColor(copy.getColor()), |
| 1637 | NULL == colors, &grPaint); |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1638 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1639 | primType = kLines_GrPrimitiveType; |
| 1640 | int triangleCount = 0; |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1641 | int n = (NULL == indices) ? vertexCount : indexCount; |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1642 | switch (vmode) { |
| 1643 | case SkCanvas::kTriangles_VertexMode: |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1644 | triangleCount = n / 3; |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1645 | break; |
| 1646 | case SkCanvas::kTriangleStrip_VertexMode: |
| 1647 | case SkCanvas::kTriangleFan_VertexMode: |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1648 | triangleCount = n - 2; |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1649 | break; |
| 1650 | } |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1651 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1652 | VertState state(vertexCount, indices, indexCount); |
| 1653 | VertState::Proc vertProc = state.chooseProc(vmode); |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1654 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1655 | //number of indices for lines per triangle with kLines |
| 1656 | indexCount = triangleCount * 6; |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1657 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1658 | outAlloc.reset(SkNEW_ARRAY(uint16_t, indexCount)); |
| 1659 | outIndices = outAlloc.get(); |
| 1660 | uint16_t* auxIndices = outAlloc.get(); |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1661 | int i = 0; |
| 1662 | while (vertProc(&state)) { |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1663 | auxIndices[i] = state.f0; |
| 1664 | auxIndices[i + 1] = state.f1; |
| 1665 | auxIndices[i + 2] = state.f1; |
| 1666 | auxIndices[i + 3] = state.f2; |
| 1667 | auxIndices[i + 4] = state.f2; |
| 1668 | auxIndices[i + 5] = state.f0; |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1669 | i += 6; |
| 1670 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1671 | } else { |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1672 | outIndices = indices; |
| 1673 | primType = gVertexMode2PrimitiveType[vmode]; |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1674 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1675 | if (NULL == texs || NULL == paint.getShader()) { |
| 1676 | SkPaint2GrPaintNoShader(this->context(), paint, SkColor2GrColor(paint.getColor()), |
| 1677 | NULL == colors, &grPaint); |
| 1678 | } else { |
| 1679 | SkPaint2GrPaintShader(this->context(), paint, NULL == colors, &grPaint); |
| 1680 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1681 | } |
| 1682 | |
mtklein | 2583b62 | 2014-06-04 08:20:41 -0700 | [diff] [blame] | 1683 | #if 0 |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1684 | if (NULL != xmode && NULL != texs && NULL != colors) { |
| 1685 | if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) { |
| 1686 | SkDebugf("Unsupported vertex-color/texture xfer mode.\n"); |
mtklein | 2583b62 | 2014-06-04 08:20:41 -0700 | [diff] [blame] | 1687 | return; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1688 | } |
| 1689 | } |
mtklein | 2583b62 | 2014-06-04 08:20:41 -0700 | [diff] [blame] | 1690 | #endif |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1691 | |
| 1692 | SkAutoSTMalloc<128, GrColor> convertedColors(0); |
| 1693 | if (NULL != colors) { |
| 1694 | // need to convert byte order and from non-PM to PM |
| 1695 | convertedColors.reset(vertexCount); |
commit-bot@chromium.org | c93e681 | 2014-05-23 08:09:26 +0000 | [diff] [blame] | 1696 | SkColor color; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1697 | for (int i = 0; i < vertexCount; ++i) { |
commit-bot@chromium.org | c93e681 | 2014-05-23 08:09:26 +0000 | [diff] [blame] | 1698 | color = colors[i]; |
| 1699 | if (paint.getAlpha() != 255) { |
| 1700 | color = SkColorSetA(color, SkMulDiv255Round(SkColorGetA(color), paint.getAlpha())); |
| 1701 | } |
| 1702 | convertedColors[i] = SkColor2GrColor(color); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1703 | } |
| 1704 | colors = convertedColors.get(); |
| 1705 | } |
| 1706 | fContext->drawVertices(grPaint, |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1707 | primType, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1708 | vertexCount, |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 1709 | vertices, |
| 1710 | texs, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1711 | colors, |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1712 | outIndices, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1713 | indexCount); |
| 1714 | } |
| 1715 | |
| 1716 | /////////////////////////////////////////////////////////////////////////////// |
| 1717 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1718 | void SkGpuDevice::drawText(const SkDraw& draw, const void* text, |
| 1719 | size_t byteLength, SkScalar x, SkScalar y, |
| 1720 | const SkPaint& paint) { |
| 1721 | CHECK_SHOULD_DRAW(draw, false); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 1722 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1723 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 1724 | if (fMainTextContext->canDraw(paint)) { |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1725 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 1726 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1727 | |
| 1728 | SkDEBUGCODE(this->validate();) |
| 1729 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 1730 | fMainTextContext->drawText(grPaint, paint, (const char *)text, byteLength, x, y); |
| 1731 | } else if (fFallbackTextContext && fFallbackTextContext->canDraw(paint)) { |
commit-bot@chromium.org | 9f94b91 | 2014-01-30 15:22:54 +0000 | [diff] [blame] | 1732 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 1733 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
commit-bot@chromium.org | 9f94b91 | 2014-01-30 15:22:54 +0000 | [diff] [blame] | 1734 | |
| 1735 | SkDEBUGCODE(this->validate();) |
| 1736 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 1737 | fFallbackTextContext->drawText(grPaint, paint, (const char *)text, byteLength, x, y); |
commit-bot@chromium.org | 9f94b91 | 2014-01-30 15:22:54 +0000 | [diff] [blame] | 1738 | } else { |
| 1739 | // this guy will just call our drawPath() |
| 1740 | draw.drawText_asPaths((const char*)text, byteLength, x, y, paint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1741 | } |
| 1742 | } |
| 1743 | |
| 1744 | void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text, |
| 1745 | size_t byteLength, const SkScalar pos[], |
| 1746 | SkScalar constY, int scalarsPerPos, |
| 1747 | const SkPaint& paint) { |
egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 1748 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPosText", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1749 | CHECK_SHOULD_DRAW(draw, false); |
| 1750 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 1751 | if (fMainTextContext->canDraw(paint)) { |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1752 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 1753 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1754 | |
| 1755 | SkDEBUGCODE(this->validate();) |
| 1756 | |
skia.committer@gmail.com | 4c18e9f | 2014-01-31 03:01:59 +0000 | [diff] [blame] | 1757 | fMainTextContext->drawPosText(grPaint, paint, (const char *)text, byteLength, pos, |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 1758 | constY, scalarsPerPos); |
| 1759 | } else if (fFallbackTextContext && fFallbackTextContext->canDraw(paint)) { |
commit-bot@chromium.org | 9f94b91 | 2014-01-30 15:22:54 +0000 | [diff] [blame] | 1760 | GrPaint grPaint; |
commit-bot@chromium.org | 3595f88 | 2014-05-19 19:35:57 +0000 | [diff] [blame] | 1761 | SkPaint2GrPaintShader(this->context(), paint, true, &grPaint); |
skia.committer@gmail.com | 4c18e9f | 2014-01-31 03:01:59 +0000 | [diff] [blame] | 1762 | |
commit-bot@chromium.org | 9f94b91 | 2014-01-30 15:22:54 +0000 | [diff] [blame] | 1763 | SkDEBUGCODE(this->validate();) |
skia.committer@gmail.com | 4c18e9f | 2014-01-31 03:01:59 +0000 | [diff] [blame] | 1764 | |
| 1765 | fFallbackTextContext->drawPosText(grPaint, paint, (const char *)text, byteLength, pos, |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 1766 | constY, scalarsPerPos); |
commit-bot@chromium.org | 9f94b91 | 2014-01-30 15:22:54 +0000 | [diff] [blame] | 1767 | } else { |
| 1768 | draw.drawPosText_asPaths((const char*)text, byteLength, pos, constY, |
| 1769 | scalarsPerPos, paint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1770 | } |
| 1771 | } |
| 1772 | |
| 1773 | void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text, |
| 1774 | size_t len, const SkPath& path, |
| 1775 | const SkMatrix* m, const SkPaint& paint) { |
| 1776 | CHECK_SHOULD_DRAW(draw, false); |
| 1777 | |
| 1778 | SkASSERT(draw.fDevice == this); |
| 1779 | draw.drawTextOnPath((const char*)text, len, path, m, paint); |
| 1780 | } |
| 1781 | |
| 1782 | /////////////////////////////////////////////////////////////////////////////// |
| 1783 | |
| 1784 | bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) { |
| 1785 | if (!paint.isLCDRenderText()) { |
| 1786 | // we're cool with the paint as is |
| 1787 | return false; |
| 1788 | } |
| 1789 | |
| 1790 | if (paint.getShader() || |
| 1791 | paint.getXfermode() || // unless its srcover |
| 1792 | paint.getMaskFilter() || |
| 1793 | paint.getRasterizer() || |
| 1794 | paint.getColorFilter() || |
| 1795 | paint.getPathEffect() || |
| 1796 | paint.isFakeBoldText() || |
| 1797 | paint.getStyle() != SkPaint::kFill_Style) { |
| 1798 | // turn off lcd |
| 1799 | flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag; |
| 1800 | flags->fHinting = paint.getHinting(); |
| 1801 | return true; |
| 1802 | } |
| 1803 | // we're cool with the paint as is |
| 1804 | return false; |
| 1805 | } |
| 1806 | |
| 1807 | void SkGpuDevice::flush() { |
| 1808 | DO_DEFERRED_CLEAR(); |
| 1809 | fContext->resolveRenderTarget(fRenderTarget); |
| 1810 | } |
| 1811 | |
| 1812 | /////////////////////////////////////////////////////////////////////////////// |
| 1813 | |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 1814 | SkBaseDevice* SkGpuDevice::onCreateDevice(const SkImageInfo& info, Usage usage) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1815 | GrTextureDesc desc; |
| 1816 | desc.fConfig = fRenderTarget->config(); |
| 1817 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 1818 | desc.fWidth = info.width(); |
| 1819 | desc.fHeight = info.height(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1820 | desc.fSampleCnt = fRenderTarget->numSamples(); |
| 1821 | |
| 1822 | SkAutoTUnref<GrTexture> texture; |
| 1823 | // Skia's convention is to only clear a device if it is non-opaque. |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 1824 | unsigned flags = info.isOpaque() ? 0 : kNeedClear_Flag; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1825 | |
| 1826 | #if CACHE_COMPATIBLE_DEVICE_TEXTURES |
| 1827 | // layers are never draw in repeat modes, so we can request an approx |
| 1828 | // match and ignore any padding. |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 1829 | flags |= kCached_Flag; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1830 | const GrContext::ScratchTexMatch match = (kSaveLayer_Usage == usage) ? |
| 1831 | GrContext::kApprox_ScratchTexMatch : |
| 1832 | GrContext::kExact_ScratchTexMatch; |
| 1833 | texture.reset(fContext->lockAndRefScratchTexture(desc, match)); |
| 1834 | #else |
| 1835 | texture.reset(fContext->createUncachedTexture(desc, NULL, 0)); |
| 1836 | #endif |
| 1837 | if (NULL != texture.get()) { |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 1838 | return SkGpuDevice::Create(texture, flags); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1839 | } else { |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 1840 | GrPrintf("---- failed to create compatible device texture [%d %d]\n", |
| 1841 | info.width(), info.height()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1842 | return NULL; |
| 1843 | } |
| 1844 | } |
| 1845 | |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 1846 | SkSurface* SkGpuDevice::newSurface(const SkImageInfo& info) { |
| 1847 | return SkSurface::NewRenderTarget(fContext, info, fRenderTarget->numSamples()); |
| 1848 | } |
| 1849 | |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 1850 | void SkGpuDevice::EXPERIMENTAL_optimize(const SkPicture* picture) { |
robertphillips | d771f6b | 2014-07-22 10:18:06 -0700 | [diff] [blame] | 1851 | fContext->getLayerCache()->processDeletedPictures(); |
| 1852 | |
robertphillips | c019ec4 | 2014-08-12 05:35:58 -0700 | [diff] [blame] | 1853 | if (NULL != picture->fData.get() && !picture->fData->suitableForLayerOptimization()) { |
| 1854 | return; |
| 1855 | } |
| 1856 | |
robertphillips | 6617d50 | 2014-08-18 09:39:34 -0700 | [diff] [blame] | 1857 | SkPicture::AccelData::Key key = GrAccelData::ComputeAccelDataKey(); |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 1858 | |
commit-bot@chromium.org | 8ec8bab | 2014-05-14 13:11:48 +0000 | [diff] [blame] | 1859 | const SkPicture::AccelData* existing = picture->EXPERIMENTAL_getAccelData(key); |
| 1860 | if (NULL != existing) { |
| 1861 | return; |
| 1862 | } |
| 1863 | |
robertphillips | d628330 | 2014-08-27 11:53:28 -0700 | [diff] [blame^] | 1864 | GPUOptimize(picture); |
robertphillips | d771f6b | 2014-07-22 10:18:06 -0700 | [diff] [blame] | 1865 | |
| 1866 | fContext->getLayerCache()->trackPicture(picture); |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 1867 | } |
| 1868 | |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1869 | static void wrap_texture(GrTexture* texture, int width, int height, SkBitmap* result) { |
| 1870 | SkImageInfo info = SkImageInfo::MakeN32Premul(width, height); |
commit-bot@chromium.org | a3264e5 | 2014-05-30 13:26:10 +0000 | [diff] [blame] | 1871 | result->setInfo(info); |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1872 | result->setPixelRef(SkNEW_ARGS(SkGrPixelRef, (info, texture)))->unref(); |
| 1873 | } |
| 1874 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1875 | // Return true if any layers are suitable for hoisting |
| 1876 | bool SkGpuDevice::FindLayersToHoist(const GrAccelData *gpuData, |
| 1877 | const SkPicture::OperationList* ops, |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1878 | const SkRect& query, |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1879 | bool* pullForward) { |
| 1880 | bool anyHoisted = false; |
| 1881 | |
| 1882 | // Layer hoisting pre-renders the entire layer since it will be cached and potentially |
| 1883 | // reused with different clips (e.g., in different tiles). Because of this the |
| 1884 | // clip will not be limiting the size of the pre-rendered layer. kSaveLayerMaxSize |
| 1885 | // is used to limit which clips are pre-rendered. |
| 1886 | static const int kSaveLayerMaxSize = 256; |
| 1887 | |
| 1888 | if (NULL != ops) { |
| 1889 | // In this case the picture has been generated with a BBH so we use |
| 1890 | // the BBH to limit the pre-rendering to just the layers needed to cover |
| 1891 | // the region being drawn |
| 1892 | for (int i = 0; i < ops->numOps(); ++i) { |
| 1893 | uint32_t offset = ops->offset(i); |
| 1894 | |
| 1895 | // For now we're saving all the layers in the GrAccelData so they |
| 1896 | // can be nested. Additionally, the nested layers appear before |
| 1897 | // their parent in the list. |
| 1898 | for (int j = 0; j < gpuData->numSaveLayers(); ++j) { |
| 1899 | const GrAccelData::SaveLayerInfo& info = gpuData->saveLayerInfo(j); |
| 1900 | |
| 1901 | if (pullForward[j]) { |
| 1902 | continue; // already pulling forward |
| 1903 | } |
| 1904 | |
| 1905 | if (offset < info.fSaveLayerOpID || offset > info.fRestoreOpID) { |
| 1906 | continue; // the op isn't in this range |
| 1907 | } |
| 1908 | |
| 1909 | // TODO: once this code is more stable unsuitable layers can |
| 1910 | // just be omitted during the optimization stage |
| 1911 | if (!info.fValid || |
| 1912 | kSaveLayerMaxSize < info.fSize.fWidth || |
| 1913 | kSaveLayerMaxSize < info.fSize.fHeight || |
| 1914 | info.fIsNested) { |
| 1915 | continue; // this layer is unsuitable |
| 1916 | } |
| 1917 | |
| 1918 | pullForward[j] = true; |
| 1919 | anyHoisted = true; |
| 1920 | } |
| 1921 | } |
| 1922 | } else { |
| 1923 | // In this case there is no BBH associated with the picture. Pre-render |
| 1924 | // all the layers that intersect the drawn region |
| 1925 | for (int j = 0; j < gpuData->numSaveLayers(); ++j) { |
| 1926 | const GrAccelData::SaveLayerInfo& info = gpuData->saveLayerInfo(j); |
| 1927 | |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1928 | SkRect layerRect = SkRect::MakeXYWH(SkIntToScalar(info.fOffset.fX), |
| 1929 | SkIntToScalar(info.fOffset.fY), |
| 1930 | SkIntToScalar(info.fSize.fWidth), |
| 1931 | SkIntToScalar(info.fSize.fHeight)); |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1932 | |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1933 | if (!SkRect::Intersects(query, layerRect)) { |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1934 | continue; |
| 1935 | } |
| 1936 | |
| 1937 | // TODO: once this code is more stable unsuitable layers can |
| 1938 | // just be omitted during the optimization stage |
| 1939 | if (!info.fValid || |
| 1940 | kSaveLayerMaxSize < info.fSize.fWidth || |
| 1941 | kSaveLayerMaxSize < info.fSize.fHeight || |
| 1942 | info.fIsNested) { |
| 1943 | continue; |
| 1944 | } |
| 1945 | |
| 1946 | pullForward[j] = true; |
| 1947 | anyHoisted = true; |
| 1948 | } |
| 1949 | } |
| 1950 | |
| 1951 | return anyHoisted; |
| 1952 | } |
| 1953 | |
reed | d5fa1a4 | 2014-08-09 11:08:05 -0700 | [diff] [blame] | 1954 | bool SkGpuDevice::EXPERIMENTAL_drawPicture(SkCanvas* mainCanvas, const SkPicture* picture, |
| 1955 | const SkMatrix* matrix, const SkPaint* paint) { |
| 1956 | // todo: should handle these natively |
| 1957 | if (matrix || paint) { |
| 1958 | return false; |
| 1959 | } |
| 1960 | |
robertphillips | d771f6b | 2014-07-22 10:18:06 -0700 | [diff] [blame] | 1961 | fContext->getLayerCache()->processDeletedPictures(); |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1962 | |
robertphillips | 6617d50 | 2014-08-18 09:39:34 -0700 | [diff] [blame] | 1963 | SkPicture::AccelData::Key key = GrAccelData::ComputeAccelDataKey(); |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 1964 | |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1965 | const SkPicture::AccelData* data = picture->EXPERIMENTAL_getAccelData(key); |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 1966 | if (NULL == data) { |
| 1967 | return false; |
| 1968 | } |
| 1969 | |
robertphillips | 6617d50 | 2014-08-18 09:39:34 -0700 | [diff] [blame] | 1970 | const GrAccelData *gpuData = static_cast<const GrAccelData*>(data); |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1971 | |
commit-bot@chromium.org | 8ec8bab | 2014-05-14 13:11:48 +0000 | [diff] [blame] | 1972 | if (0 == gpuData->numSaveLayers()) { |
| 1973 | return false; |
| 1974 | } |
| 1975 | |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1976 | SkAutoTArray<bool> pullForward(gpuData->numSaveLayers()); |
| 1977 | for (int i = 0; i < gpuData->numSaveLayers(); ++i) { |
| 1978 | pullForward[i] = false; |
| 1979 | } |
| 1980 | |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1981 | SkRect clipBounds; |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 1982 | if (!mainCanvas->getClipBounds(&clipBounds)) { |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1983 | return true; |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1986 | SkAutoTDelete<const SkPicture::OperationList> ops( |
| 1987 | picture->EXPERIMENTAL_getActiveOps(clipBounds)); |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1988 | |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1989 | if (!FindLayersToHoist(gpuData, ops.get(), clipBounds, pullForward.get())) { |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1990 | return false; |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1991 | } |
| 1992 | |
robertphillips | c26d991 | 2014-07-10 07:21:27 -0700 | [diff] [blame] | 1993 | SkPictureReplacementPlayback::PlaybackReplacements replacements; |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1994 | |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 1995 | SkTDArray<GrCachedLayer*> atlased, nonAtlased; |
| 1996 | atlased.setReserve(gpuData->numSaveLayers()); |
| 1997 | |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 1998 | // Generate the layer and/or ensure it is locked |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1999 | for (int i = 0; i < gpuData->numSaveLayers(); ++i) { |
| 2000 | if (pullForward[i]) { |
robertphillips | 6617d50 | 2014-08-18 09:39:34 -0700 | [diff] [blame] | 2001 | const GrAccelData::SaveLayerInfo& info = gpuData->saveLayerInfo(i); |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2002 | |
robertphillips | d628330 | 2014-08-27 11:53:28 -0700 | [diff] [blame^] | 2003 | GrCachedLayer* layer = fContext->getLayerCache()->findLayerOrCreate(picture->uniqueID(), |
| 2004 | info.fSaveLayerOpID, |
| 2005 | info.fRestoreOpID, |
| 2006 | info.fOriginXform); |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2007 | |
robertphillips | c26d991 | 2014-07-10 07:21:27 -0700 | [diff] [blame] | 2008 | SkPictureReplacementPlayback::PlaybackReplacements::ReplacementInfo* layerInfo = |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2009 | replacements.push(); |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2010 | layerInfo->fStart = info.fSaveLayerOpID; |
| 2011 | layerInfo->fStop = info.fRestoreOpID; |
| 2012 | layerInfo->fPos = info.fOffset; |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2013 | |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2014 | GrTextureDesc desc; |
| 2015 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 2016 | desc.fWidth = info.fSize.fWidth; |
| 2017 | desc.fHeight = info.fSize.fHeight; |
| 2018 | desc.fConfig = kSkia8888_GrPixelConfig; |
| 2019 | // TODO: need to deal with sample count |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2020 | |
robertphillips | 6f294af | 2014-08-18 08:50:03 -0700 | [diff] [blame] | 2021 | bool needsRendering = fContext->getLayerCache()->lock(layer, desc, |
| 2022 | info.fHasNestedLayers || info.fIsNested); |
robertphillips | 952841b | 2014-06-30 08:26:50 -0700 | [diff] [blame] | 2023 | if (NULL == layer->texture()) { |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2024 | continue; |
| 2025 | } |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2026 | |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2027 | layerInfo->fBM = SkNEW(SkBitmap); // fBM is allocated so ReplacementInfo can be POD |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 2028 | wrap_texture(layer->texture(), |
robertphillips | 21048b5 | 2014-07-15 19:46:35 -0700 | [diff] [blame] | 2029 | !layer->isAtlased() ? desc.fWidth : layer->texture()->width(), |
| 2030 | !layer->isAtlased() ? desc.fHeight : layer->texture()->height(), |
robertphillips | 952841b | 2014-06-30 08:26:50 -0700 | [diff] [blame] | 2031 | layerInfo->fBM); |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2032 | |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2033 | SkASSERT(info.fPaint); |
| 2034 | layerInfo->fPaint = info.fPaint; |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2035 | |
robertphillips | 21048b5 | 2014-07-15 19:46:35 -0700 | [diff] [blame] | 2036 | layerInfo->fSrcRect = SkIRect::MakeXYWH(layer->rect().fLeft, |
| 2037 | layer->rect().fTop, |
| 2038 | layer->rect().width(), |
| 2039 | layer->rect().height()); |
| 2040 | |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2041 | if (needsRendering) { |
robertphillips | 21048b5 | 2014-07-15 19:46:35 -0700 | [diff] [blame] | 2042 | if (layer->isAtlased()) { |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2043 | *atlased.append() = layer; |
robertphillips | 952841b | 2014-06-30 08:26:50 -0700 | [diff] [blame] | 2044 | } else { |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2045 | *nonAtlased.append() = layer; |
robertphillips | 952841b | 2014-06-30 08:26:50 -0700 | [diff] [blame] | 2046 | } |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 2047 | } |
| 2048 | } |
| 2049 | } |
| 2050 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2051 | this->drawLayers(picture, atlased, nonAtlased); |
| 2052 | |
| 2053 | // Render the entire picture using new layers |
| 2054 | SkPictureReplacementPlayback playback(picture, &replacements, ops.get()); |
| 2055 | |
| 2056 | playback.draw(mainCanvas, NULL); |
| 2057 | |
| 2058 | this->unlockLayers(picture); |
| 2059 | |
| 2060 | return true; |
| 2061 | } |
| 2062 | |
| 2063 | void SkGpuDevice::drawLayers(const SkPicture* picture, |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 2064 | const SkTDArray<GrCachedLayer*>& atlased, |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2065 | const SkTDArray<GrCachedLayer*>& nonAtlased) { |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2066 | // Render the atlased layers that require it |
| 2067 | if (atlased.count() > 0) { |
| 2068 | // All the atlased layers are rendered into the same GrTexture |
| 2069 | SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTargetDirect( |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2070 | atlased[0]->texture()->asRenderTarget(), |
| 2071 | SkSurface::kStandard_TextRenderMode, |
| 2072 | SkSurface::kDontClear_RenderTargetFlag)); |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2073 | |
| 2074 | SkCanvas* atlasCanvas = surface->getCanvas(); |
| 2075 | |
| 2076 | SkPaint paint; |
| 2077 | paint.setColor(SK_ColorTRANSPARENT); |
| 2078 | paint.setXfermode(SkXfermode::Create(SkXfermode::kSrc_Mode))->unref(); |
| 2079 | |
| 2080 | for (int i = 0; i < atlased.count(); ++i) { |
| 2081 | GrCachedLayer* layer = atlased[i]; |
| 2082 | |
| 2083 | atlasCanvas->save(); |
| 2084 | |
| 2085 | // Add a rect clip to make sure the rendering doesn't |
| 2086 | // extend beyond the boundaries of the atlased sub-rect |
| 2087 | SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer->rect().fLeft), |
| 2088 | SkIntToScalar(layer->rect().fTop), |
| 2089 | SkIntToScalar(layer->rect().width()), |
| 2090 | SkIntToScalar(layer->rect().height())); |
| 2091 | atlasCanvas->clipRect(bound); |
| 2092 | |
| 2093 | // Since 'clear' doesn't respect the clip we need to draw a rect |
| 2094 | // TODO: ensure none of the atlased layers contain a clear call! |
| 2095 | atlasCanvas->drawRect(bound, paint); |
| 2096 | |
| 2097 | // info.fCTM maps the layer's top/left to the origin. |
| 2098 | // Since this layer is atlased, the top/left corner needs |
| 2099 | // to be offset to the correct location in the backing texture. |
| 2100 | atlasCanvas->translate(bound.fLeft, bound.fTop); |
| 2101 | atlasCanvas->concat(layer->ctm()); |
| 2102 | |
| 2103 | SkPictureRangePlayback rangePlayback(picture, |
| 2104 | layer->start(), |
| 2105 | layer->stop()); |
| 2106 | rangePlayback.draw(atlasCanvas, NULL); |
| 2107 | |
| 2108 | atlasCanvas->restore(); |
| 2109 | } |
| 2110 | |
| 2111 | atlasCanvas->flush(); |
| 2112 | } |
| 2113 | |
| 2114 | // Render the non-atlased layers that require it |
| 2115 | for (int i = 0; i < nonAtlased.count(); ++i) { |
| 2116 | GrCachedLayer* layer = nonAtlased[i]; |
| 2117 | |
| 2118 | // Each non-atlased layer has its own GrTexture |
| 2119 | SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTargetDirect( |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2120 | layer->texture()->asRenderTarget(), |
| 2121 | SkSurface::kStandard_TextRenderMode, |
| 2122 | SkSurface::kDontClear_RenderTargetFlag)); |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2123 | |
| 2124 | SkCanvas* layerCanvas = surface->getCanvas(); |
| 2125 | |
| 2126 | // Add a rect clip to make sure the rendering doesn't |
| 2127 | // extend beyond the boundaries of the atlased sub-rect |
| 2128 | SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer->rect().fLeft), |
| 2129 | SkIntToScalar(layer->rect().fTop), |
| 2130 | SkIntToScalar(layer->rect().width()), |
| 2131 | SkIntToScalar(layer->rect().height())); |
| 2132 | |
| 2133 | layerCanvas->clipRect(bound); // TODO: still useful? |
| 2134 | |
| 2135 | layerCanvas->clear(SK_ColorTRANSPARENT); |
| 2136 | |
| 2137 | layerCanvas->concat(layer->ctm()); |
| 2138 | |
| 2139 | SkPictureRangePlayback rangePlayback(picture, |
| 2140 | layer->start(), |
| 2141 | layer->stop()); |
| 2142 | rangePlayback.draw(layerCanvas, NULL); |
| 2143 | |
| 2144 | layerCanvas->flush(); |
| 2145 | } |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2146 | } |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2147 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2148 | void SkGpuDevice::unlockLayers(const SkPicture* picture) { |
| 2149 | SkPicture::AccelData::Key key = GrAccelData::ComputeAccelDataKey(); |
robertphillips | ce4dd3d | 2014-07-07 13:46:35 -0700 | [diff] [blame] | 2150 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2151 | const SkPicture::AccelData* data = picture->EXPERIMENTAL_getAccelData(key); |
| 2152 | SkASSERT(NULL != data); |
| 2153 | |
| 2154 | const GrAccelData *gpuData = static_cast<const GrAccelData*>(data); |
| 2155 | SkASSERT(0 != gpuData->numSaveLayers()); |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2156 | |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2157 | // unlock the layers |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2158 | for (int i = 0; i < gpuData->numSaveLayers(); ++i) { |
robertphillips | 6617d50 | 2014-08-18 09:39:34 -0700 | [diff] [blame] | 2159 | const GrAccelData::SaveLayerInfo& info = gpuData->saveLayerInfo(i); |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2160 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 2161 | GrCachedLayer* layer = fContext->getLayerCache()->findLayer(picture->uniqueID(), |
robertphillips | 0c42332 | 2014-07-31 11:02:38 -0700 | [diff] [blame] | 2162 | info.fSaveLayerOpID, |
| 2163 | info.fRestoreOpID, |
robertphillips | d628330 | 2014-08-27 11:53:28 -0700 | [diff] [blame^] | 2164 | info.fOriginXform); |
robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 2165 | fContext->getLayerCache()->unlock(layer); |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 2166 | } |
| 2167 | |
robertphillips | 6f294af | 2014-08-18 08:50:03 -0700 | [diff] [blame] | 2168 | #if DISABLE_CACHING |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 2169 | // This code completely clears out the atlas. It is required when |
robertphillips | 6f294af | 2014-08-18 08:50:03 -0700 | [diff] [blame] | 2170 | // caching is disabled so the atlas doesn't fill up and force more |
| 2171 | // free floating layers |
| 2172 | fContext->getLayerCache()->purge(picture->uniqueID()); |
| 2173 | |
| 2174 | fContext->getLayerCache()->purgeAll(); |
| 2175 | #endif |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 2176 | } |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 2177 | |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 2178 | SkImageFilter::Cache* SkGpuDevice::getImageFilterCache() { |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 2179 | // We always return a transient cache, so it is freed after each |
| 2180 | // filter traversal. |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 2181 | return SkImageFilter::Cache::Create(kDefaultImageFilterCacheSize); |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 2182 | } |