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 | |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 10 | #include "GrBlurUtils.h" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 11 | #include "GrContext.h" |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 12 | #include "GrDrawContext.h" |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 13 | #include "GrFontScaler.h" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 14 | #include "GrGpu.h" |
| 15 | #include "GrGpuResourcePriv.h" |
robertphillips | 98d709b | 2014-09-02 10:20:50 -0700 | [diff] [blame] | 16 | #include "GrLayerHoister.h" |
robertphillips | 274b4ba | 2014-09-04 07:24:18 -0700 | [diff] [blame] | 17 | #include "GrRecordReplaceDraw.h" |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 18 | #include "GrStrokeInfo.h" |
joshualitt | 8f94bb2 | 2015-04-28 07:04:11 -0700 | [diff] [blame] | 19 | #include "GrTextContext.h" |
egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 20 | #include "GrTracing.h" |
robertphillips | 30d7841 | 2014-11-24 09:49:17 -0800 | [diff] [blame] | 21 | #include "SkCanvasPriv.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 22 | #include "SkDrawProcs.h" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 23 | #include "SkErrorInternals.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 24 | #include "SkGlyphCache.h" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 25 | #include "SkGrTexturePixelRef.h" |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 26 | #include "SkImage_Base.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 27 | #include "SkImageFilter.h" |
robertphillips | 8236591 | 2014-11-12 09:32:34 -0800 | [diff] [blame] | 28 | #include "SkLayerInfo.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" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 33 | #include "SkRRect.h" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 34 | #include "SkRecord.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 35 | #include "SkStroke.h" |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 36 | #include "SkSurface.h" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 37 | #include "SkSurface_Gpu.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" |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 42 | #include "effects/GrBicubicEffect.h" |
| 43 | #include "effects/GrDashingEffect.h" |
| 44 | #include "effects/GrSimpleTextureEffect.h" |
| 45 | #include "effects/GrTextureDomain.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 46 | |
reed | f037e0b | 2014-10-30 11:34:15 -0700 | [diff] [blame] | 47 | #if SK_SUPPORT_GPU |
| 48 | |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 49 | enum { kDefaultImageFilterCacheSize = 32 * 1024 * 1024 }; |
| 50 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 51 | #if 0 |
| 52 | extern bool (*gShouldDrawProc)(); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 53 | #define CHECK_SHOULD_DRAW(draw) \ |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 54 | do { \ |
| 55 | if (gShouldDrawProc && !gShouldDrawProc()) return; \ |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 56 | this->prepareDraw(draw); \ |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 57 | } while (0) |
| 58 | #else |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 59 | #define CHECK_SHOULD_DRAW(draw) this->prepareDraw(draw) |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 60 | #endif |
| 61 | |
| 62 | // This constant represents the screen alignment criterion in texels for |
| 63 | // requiring texture domain clamping to prevent color bleeding when drawing |
| 64 | // a sub region of a larger source image. |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 65 | #define COLOR_BLEED_TOLERANCE 0.001f |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 66 | |
| 67 | #define DO_DEFERRED_CLEAR() \ |
| 68 | do { \ |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 69 | if (fNeedClear) { \ |
| 70 | this->clearAll(); \ |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 71 | } \ |
| 72 | } while (false) \ |
| 73 | |
| 74 | /////////////////////////////////////////////////////////////////////////////// |
| 75 | |
| 76 | #define CHECK_FOR_ANNOTATION(paint) \ |
| 77 | do { if (paint.getAnnotation()) { return; } } while (0) |
| 78 | |
| 79 | /////////////////////////////////////////////////////////////////////////////// |
| 80 | |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 81 | // Helper for turning a bitmap into a texture. If the bitmap is GrTexture backed this |
| 82 | // just accesses the backing GrTexture. Otherwise, it creates a cached texture |
| 83 | // representation and releases it in the destructor. |
| 84 | class AutoBitmapTexture : public SkNoncopyable { |
Brian Salomon | 9323b8b | 2014-10-07 15:07:38 -0400 | [diff] [blame] | 85 | public: |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 86 | AutoBitmapTexture() {} |
robertphillips | dbe6074 | 2014-09-30 06:54:17 -0700 | [diff] [blame] | 87 | |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 88 | AutoBitmapTexture(GrContext* context, |
| 89 | const SkBitmap& bitmap, |
| 90 | const GrTextureParams* params, |
| 91 | GrTexture** texture) { |
Brian Salomon | 9323b8b | 2014-10-07 15:07:38 -0400 | [diff] [blame] | 92 | SkASSERT(texture); |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 93 | *texture = this->set(context, bitmap, params); |
Brian Salomon | 9323b8b | 2014-10-07 15:07:38 -0400 | [diff] [blame] | 94 | } |
| 95 | |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 96 | GrTexture* set(GrContext* context, |
Brian Salomon | 9323b8b | 2014-10-07 15:07:38 -0400 | [diff] [blame] | 97 | const SkBitmap& bitmap, |
| 98 | const GrTextureParams* params) { |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 99 | // Either get the texture directly from the bitmap, or else use the cache and |
| 100 | // remember to unref it. |
| 101 | if (GrTexture* bmpTexture = bitmap.getTexture()) { |
| 102 | fTexture.reset(NULL); |
| 103 | return bmpTexture; |
| 104 | } else { |
| 105 | fTexture.reset(GrRefCachedBitmapTexture(context, bitmap, params)); |
| 106 | return fTexture.get(); |
Brian Salomon | 9323b8b | 2014-10-07 15:07:38 -0400 | [diff] [blame] | 107 | } |
Brian Salomon | 9323b8b | 2014-10-07 15:07:38 -0400 | [diff] [blame] | 108 | } |
| 109 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 110 | private: |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 111 | SkAutoTUnref<GrTexture> fTexture; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | /////////////////////////////////////////////////////////////////////////////// |
| 115 | |
| 116 | struct GrSkDrawProcs : public SkDrawProcs { |
| 117 | public: |
| 118 | GrContext* fContext; |
| 119 | GrTextContext* fTextContext; |
| 120 | GrFontScaler* fFontScaler; // cached in the skia glyphcache |
| 121 | }; |
| 122 | |
| 123 | /////////////////////////////////////////////////////////////////////////////// |
| 124 | |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 125 | /** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation |
| 126 | should fail. */ |
| 127 | bool SkGpuDevice::CheckAlphaTypeAndGetFlags( |
| 128 | const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) { |
| 129 | *flags = 0; |
| 130 | if (info) { |
| 131 | switch (info->alphaType()) { |
| 132 | case kPremul_SkAlphaType: |
| 133 | break; |
| 134 | case kOpaque_SkAlphaType: |
| 135 | *flags |= SkGpuDevice::kIsOpaque_Flag; |
| 136 | break; |
| 137 | default: // If it is unpremul or unknown don't try to render |
| 138 | return false; |
| 139 | } |
| 140 | } |
| 141 | if (kClear_InitContents == init) { |
| 142 | *flags |= kNeedClear_Flag; |
| 143 | } |
| 144 | return true; |
| 145 | } |
| 146 | |
| 147 | SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, const SkSurfaceProps* props, |
| 148 | InitContents init) { |
| 149 | return SkGpuDevice::Create(rt, rt->width(), rt->height(), props, init); |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, int width, int height, |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 153 | const SkSurfaceProps* props, InitContents init) { |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 154 | if (!rt || rt->wasDestroyed()) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 155 | return NULL; |
| 156 | } |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 157 | unsigned flags; |
| 158 | if (!CheckAlphaTypeAndGetFlags(NULL, init, &flags)) { |
| 159 | return NULL; |
| 160 | } |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 161 | return SkNEW_ARGS(SkGpuDevice, (rt, width, height, props, flags)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 162 | } |
| 163 | |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 164 | SkGpuDevice* SkGpuDevice::Create(GrContext* context, SkSurface::Budgeted budgeted, |
| 165 | const SkImageInfo& info, int sampleCount, |
| 166 | const SkSurfaceProps* props, InitContents init) { |
| 167 | unsigned flags; |
| 168 | if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) { |
| 169 | return NULL; |
| 170 | } |
| 171 | |
| 172 | SkAutoTUnref<GrRenderTarget> rt(CreateRenderTarget(context, budgeted, info, sampleCount)); |
| 173 | if (NULL == rt) { |
| 174 | return NULL; |
| 175 | } |
| 176 | |
| 177 | return SkNEW_ARGS(SkGpuDevice, (rt, info.width(), info.height(), props, flags)); |
| 178 | } |
| 179 | |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 180 | SkGpuDevice::SkGpuDevice(GrRenderTarget* rt, int width, int height, |
| 181 | const SkSurfaceProps* props, unsigned flags) |
robertphillips | fcf7829 | 2015-06-19 11:49:52 -0700 | [diff] [blame] | 182 | : INHERITED(SkSurfacePropsCopyOrDefault(props)) |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 183 | { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 184 | fDrawProcs = NULL; |
| 185 | |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 186 | fContext = SkRef(rt->getContext()); |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 187 | fNeedClear = SkToBool(flags & kNeedClear_Flag); |
| 188 | fOpaque = SkToBool(flags & kIsOpaque_Flag); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 189 | |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 190 | fRenderTarget = SkRef(rt); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 191 | |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 192 | SkAlphaType at = fOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType; |
| 193 | SkImageInfo info = rt->surfacePriv().info(at).makeWH(width, height); |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 194 | SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (info, rt)); |
bsalomon | afbf2d6 | 2014-09-30 12:18:44 -0700 | [diff] [blame] | 195 | fLegacyBitmap.setInfo(info); |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 196 | fLegacyBitmap.setPixelRef(pr)->unref(); |
kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 197 | |
robertphillips | 7b05ff1 | 2015-06-19 14:14:54 -0700 | [diff] [blame] | 198 | fDrawContext.reset(SkRef(fContext->drawContext(&this->surfaceProps()))); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 199 | } |
| 200 | |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 201 | GrRenderTarget* SkGpuDevice::CreateRenderTarget(GrContext* context, SkSurface::Budgeted budgeted, |
| 202 | const SkImageInfo& origInfo, int sampleCount) { |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 203 | if (kUnknown_SkColorType == origInfo.colorType() || |
| 204 | origInfo.width() < 0 || origInfo.height() < 0) { |
| 205 | return NULL; |
| 206 | } |
| 207 | |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 208 | if (!context) { |
| 209 | return NULL; |
| 210 | } |
| 211 | |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 212 | SkColorType ct = origInfo.colorType(); |
| 213 | SkAlphaType at = origInfo.alphaType(); |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 214 | if (kRGB_565_SkColorType == ct) { |
| 215 | at = kOpaque_SkAlphaType; // force this setting |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 216 | } else if (ct != kBGRA_8888_SkColorType && ct != kRGBA_8888_SkColorType) { |
| 217 | // Fall back from whatever ct was to default of kRGBA or kBGRA which is aliased as kN32 |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 218 | ct = kN32_SkColorType; |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 219 | } |
| 220 | if (kOpaque_SkAlphaType != at) { |
| 221 | at = kPremul_SkAlphaType; // force this setting |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 222 | } |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 223 | const SkImageInfo info = SkImageInfo::Make(origInfo.width(), origInfo.height(), ct, at); |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 224 | |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 225 | GrSurfaceDesc desc; |
| 226 | desc.fFlags = kRenderTarget_GrSurfaceFlag; |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 227 | desc.fWidth = info.width(); |
| 228 | desc.fHeight = info.height(); |
commit-bot@chromium.org | 3adcc34 | 2014-04-23 19:18:09 +0000 | [diff] [blame] | 229 | desc.fConfig = SkImageInfo2GrPixelConfig(info); |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 230 | desc.fSampleCnt = sampleCount; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 231 | GrTexture* texture = context->textureProvider()->createTexture( |
| 232 | desc, SkToBool(budgeted), NULL, 0); |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 233 | if (NULL == texture) { |
| 234 | return NULL; |
| 235 | } |
| 236 | SkASSERT(NULL != texture->asRenderTarget()); |
| 237 | return texture->asRenderTarget(); |
| 238 | } |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 239 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 240 | SkGpuDevice::~SkGpuDevice() { |
| 241 | if (fDrawProcs) { |
| 242 | delete fDrawProcs; |
| 243 | } |
skia.committer@gmail.com | d2ac07b | 2014-01-25 07:01:49 +0000 | [diff] [blame] | 244 | |
bsalomon | 32d0b3b | 2014-08-29 07:50:23 -0700 | [diff] [blame] | 245 | fRenderTarget->unref(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 246 | fContext->unref(); |
| 247 | } |
| 248 | |
| 249 | /////////////////////////////////////////////////////////////////////////////// |
| 250 | |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 251 | bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, |
| 252 | int x, int y) { |
| 253 | DO_DEFERRED_CLEAR(); |
| 254 | |
| 255 | // 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] | 256 | GrPixelConfig config = SkImageInfo2GrPixelConfig(dstInfo); |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 257 | if (kUnknown_GrPixelConfig == config) { |
| 258 | return false; |
| 259 | } |
| 260 | |
| 261 | uint32_t flags = 0; |
| 262 | if (kUnpremul_SkAlphaType == dstInfo.alphaType()) { |
| 263 | flags = GrContext::kUnpremul_PixelOpsFlag; |
| 264 | } |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 265 | return fRenderTarget->readPixels(x, y, dstInfo.width(), dstInfo.height(), config, dstPixels, |
| 266 | dstRowBytes, flags); |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 267 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 268 | |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 269 | bool SkGpuDevice::onWritePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, |
| 270 | int x, int y) { |
| 271 | // 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] | 272 | GrPixelConfig config = SkImageInfo2GrPixelConfig(info); |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 273 | if (kUnknown_GrPixelConfig == config) { |
| 274 | return false; |
| 275 | } |
| 276 | uint32_t flags = 0; |
| 277 | if (kUnpremul_SkAlphaType == info.alphaType()) { |
| 278 | flags = GrContext::kUnpremul_PixelOpsFlag; |
| 279 | } |
| 280 | fRenderTarget->writePixels(x, y, info.width(), info.height(), config, pixels, rowBytes, flags); |
| 281 | |
| 282 | // 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] | 283 | fLegacyBitmap.notifyPixelsChanged(); |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 284 | |
| 285 | return true; |
| 286 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 287 | |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 288 | const SkBitmap& SkGpuDevice::onAccessBitmap() { |
| 289 | DO_DEFERRED_CLEAR(); |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 290 | return fLegacyBitmap; |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 291 | } |
| 292 | |
reed | 41e010c | 2015-06-09 12:16:53 -0700 | [diff] [blame] | 293 | bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) { |
| 294 | DO_DEFERRED_CLEAR(); |
| 295 | // For compatibility with clients the know we're backed w/ a bitmap, and want to inspect its |
| 296 | // genID. When we can hide/remove that fact, we can eliminate this call to notify. |
| 297 | // ... ugh. |
| 298 | fLegacyBitmap.notifyPixelsChanged(); |
| 299 | return false; |
| 300 | } |
| 301 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 302 | void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) { |
| 303 | INHERITED::onAttachToCanvas(canvas); |
| 304 | |
| 305 | // Canvas promises that this ptr is valid until onDetachFromCanvas is called |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 306 | fClipStack.reset(SkRef(canvas->getClipStack())); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | void SkGpuDevice::onDetachFromCanvas() { |
| 310 | INHERITED::onDetachFromCanvas(); |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 311 | fClip.reset(); |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 312 | fClipStack.reset(NULL); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | // call this every draw call, to ensure that the context reflects our state, |
| 316 | // and not the state from some other canvas/device |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 317 | void SkGpuDevice::prepareDraw(const SkDraw& draw) { |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 318 | SkASSERT(fClipStack.get()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 319 | |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 320 | SkASSERT(draw.fClipStack && draw.fClipStack == fClipStack); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 321 | |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 322 | fClip.setClipStack(fClipStack, &this->getOrigin()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 323 | |
| 324 | DO_DEFERRED_CLEAR(); |
| 325 | } |
| 326 | |
| 327 | GrRenderTarget* SkGpuDevice::accessRenderTarget() { |
robertphillips | 7156b09 | 2015-05-14 08:54:12 -0700 | [diff] [blame] | 328 | DO_DEFERRED_CLEAR(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 329 | return fRenderTarget; |
| 330 | } |
| 331 | |
reed | 8eddfb5 | 2014-12-04 07:50:14 -0800 | [diff] [blame] | 332 | void SkGpuDevice::clearAll() { |
| 333 | GrColor color = 0; |
| 334 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::clearAll", fContext); |
| 335 | SkIRect rect = SkIRect::MakeWH(this->width(), this->height()); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 336 | fDrawContext->clear(fRenderTarget, &rect, color, true); |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 337 | fNeedClear = false; |
reed | 8eddfb5 | 2014-12-04 07:50:14 -0800 | [diff] [blame] | 338 | } |
| 339 | |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 340 | void SkGpuDevice::replaceRenderTarget(bool shouldRetainContent) { |
| 341 | // Caller must have accessed the render target, because it knows the rt must be replaced. |
| 342 | SkASSERT(!fNeedClear); |
| 343 | |
| 344 | SkSurface::Budgeted budgeted = |
| 345 | fRenderTarget->resourcePriv().isBudgeted() ? SkSurface::kYes_Budgeted |
| 346 | : SkSurface::kNo_Budgeted; |
| 347 | |
| 348 | SkAutoTUnref<GrRenderTarget> newRT(CreateRenderTarget( |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 349 | fRenderTarget->getContext(), budgeted, this->imageInfo(), fRenderTarget->desc().fSampleCnt)); |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 350 | |
| 351 | if (NULL == newRT) { |
| 352 | return; |
| 353 | } |
| 354 | |
| 355 | if (shouldRetainContent) { |
| 356 | if (fRenderTarget->wasDestroyed()) { |
| 357 | return; |
| 358 | } |
| 359 | this->context()->copySurface(newRT, fRenderTarget); |
| 360 | } |
| 361 | |
| 362 | SkASSERT(fRenderTarget != newRT); |
| 363 | |
| 364 | fRenderTarget->unref(); |
| 365 | fRenderTarget = newRT.detach(); |
| 366 | |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 367 | #ifdef SK_DEBUG |
| 368 | SkImageInfo info = fRenderTarget->surfacePriv().info(fOpaque ? kOpaque_SkAlphaType : |
| 369 | kPremul_SkAlphaType); |
| 370 | SkASSERT(info == fLegacyBitmap.info()); |
| 371 | #endif |
| 372 | SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (fLegacyBitmap.info(), fRenderTarget)); |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 373 | fLegacyBitmap.setPixelRef(pr)->unref(); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 374 | |
robertphillips | 7b05ff1 | 2015-06-19 14:14:54 -0700 | [diff] [blame] | 375 | fDrawContext.reset(SkRef(fRenderTarget->getContext()->drawContext(&this->surfaceProps()))); |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 376 | } |
| 377 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 378 | /////////////////////////////////////////////////////////////////////////////// |
| 379 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 380 | void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) { |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 381 | CHECK_SHOULD_DRAW(draw); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 382 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPaint", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 383 | |
| 384 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 385 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 386 | return; |
| 387 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 388 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 389 | fDrawContext->drawPaint(fRenderTarget, fClip, grPaint, *draw.fMatrix); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | // must be in SkCanvas::PointMode order |
| 393 | static const GrPrimitiveType gPointMode2PrimtiveType[] = { |
| 394 | kPoints_GrPrimitiveType, |
| 395 | kLines_GrPrimitiveType, |
| 396 | kLineStrip_GrPrimitiveType |
| 397 | }; |
| 398 | |
ethannicholas | 330bb95 | 2015-07-17 06:44:02 -0700 | [diff] [blame] | 399 | // suppress antialiasing on axis-aligned integer-coordinate lines |
| 400 | static bool needs_antialiasing(SkCanvas::PointMode mode, size_t count, const SkPoint pts[]) { |
| 401 | if (mode == SkCanvas::PointMode::kPoints_PointMode) { |
| 402 | return false; |
| 403 | } |
| 404 | if (count == 2) { |
| 405 | // We do not antialias as long as the primary axis of the line is integer-aligned, even if |
| 406 | // the other coordinates are not. This does mean the two end pixels of the line will be |
| 407 | // sharp even when they shouldn't be, but turning antialiasing on (as things stand |
| 408 | // currently) means that the line will turn into a two-pixel-wide blur. While obviously a |
| 409 | // more complete fix is possible down the road, for the time being we accept the error on |
| 410 | // the two end pixels as being the lesser of two evils. |
| 411 | if (pts[0].fX == pts[1].fX) { |
| 412 | return ((int) pts[0].fX) != pts[0].fX; |
| 413 | } |
| 414 | if (pts[0].fY == pts[1].fY) { |
| 415 | return ((int) pts[0].fY) != pts[0].fY; |
| 416 | } |
| 417 | } |
| 418 | return true; |
| 419 | } |
| 420 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 421 | void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode, |
| 422 | size_t count, const SkPoint pts[], const SkPaint& paint) { |
| 423 | CHECK_FOR_ANNOTATION(paint); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 424 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 425 | |
| 426 | SkScalar width = paint.getStrokeWidth(); |
| 427 | if (width < 0) { |
| 428 | return; |
| 429 | } |
| 430 | |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 431 | if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) { |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 432 | GrStrokeInfo strokeInfo(paint, SkPaint::kStroke_Style); |
| 433 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 434 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, |
| 435 | &grPaint)) { |
| 436 | return; |
| 437 | } |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 438 | SkPath path; |
jvanverth | b3eb687 | 2014-10-24 07:12:51 -0700 | [diff] [blame] | 439 | path.setIsVolatile(true); |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 440 | path.moveTo(pts[0]); |
| 441 | path.lineTo(pts[1]); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 442 | fDrawContext->drawPath(fRenderTarget, fClip, grPaint, *draw.fMatrix, path, strokeInfo); |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 443 | return; |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 444 | } |
| 445 | |
ethannicholas | 330bb95 | 2015-07-17 06:44:02 -0700 | [diff] [blame] | 446 | // we only handle non-antialiased hairlines and paints without path effects or mask filters, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 447 | // else we let the SkDraw call our drawPath() |
ethannicholas | 330bb95 | 2015-07-17 06:44:02 -0700 | [diff] [blame] | 448 | if (width > 0 || paint.getPathEffect() || paint.getMaskFilter() || |
| 449 | (paint.isAntiAlias() && needs_antialiasing(mode, count, pts))) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 450 | draw.drawPoints(mode, count, pts, paint, true); |
| 451 | return; |
| 452 | } |
| 453 | |
| 454 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 455 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 456 | return; |
| 457 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 458 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 459 | fDrawContext->drawVertices(fRenderTarget, |
| 460 | fClip, |
| 461 | grPaint, |
| 462 | *draw.fMatrix, |
| 463 | gPointMode2PrimtiveType[mode], |
| 464 | SkToS32(count), |
| 465 | (SkPoint*)pts, |
| 466 | NULL, |
| 467 | NULL, |
| 468 | NULL, |
| 469 | 0); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | /////////////////////////////////////////////////////////////////////////////// |
| 473 | |
| 474 | void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect, |
| 475 | const SkPaint& paint) { |
egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 476 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRect", fContext); |
| 477 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 478 | CHECK_FOR_ANNOTATION(paint); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 479 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 480 | |
| 481 | bool doStroke = paint.getStyle() != SkPaint::kFill_Style; |
| 482 | SkScalar width = paint.getStrokeWidth(); |
| 483 | |
| 484 | /* |
| 485 | We have special code for hairline strokes, miter-strokes, bevel-stroke |
| 486 | and fills. Anything else we just call our path code. |
| 487 | */ |
| 488 | bool usePath = doStroke && width > 0 && |
| 489 | (paint.getStrokeJoin() == SkPaint::kRound_Join || |
| 490 | (paint.getStrokeJoin() == SkPaint::kBevel_Join && rect.isEmpty())); |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 491 | |
robertphillips | d8aa59d | 2015-08-05 09:07:12 -0700 | [diff] [blame] | 492 | // a few other reasons we might need to call drawPath... |
| 493 | if (paint.getMaskFilter() || |
| 494 | paint.getStyle() == SkPaint::kStrokeAndFill_Style) { // we can't both stroke and fill rects |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 495 | usePath = true; |
| 496 | } |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 497 | |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 498 | if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 499 | usePath = true; |
| 500 | } |
| 501 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 502 | GrStrokeInfo strokeInfo(paint); |
| 503 | |
| 504 | const SkPathEffect* pe = paint.getPathEffect(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 505 | if (!usePath && pe && !strokeInfo.isDashed()) { |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 506 | usePath = true; |
| 507 | } |
| 508 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 509 | if (usePath) { |
| 510 | SkPath path; |
jvanverth | b3eb687 | 2014-10-24 07:12:51 -0700 | [diff] [blame] | 511 | path.setIsVolatile(true); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 512 | path.addRect(rect); |
| 513 | this->drawPath(draw, path, paint, NULL, true); |
| 514 | return; |
| 515 | } |
| 516 | |
| 517 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 518 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 519 | return; |
| 520 | } |
Mike Klein | 744fb73 | 2014-06-23 15:13:26 -0400 | [diff] [blame] | 521 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 522 | fDrawContext->drawRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, &strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /////////////////////////////////////////////////////////////////////////////// |
| 526 | |
| 527 | void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 528 | const SkPaint& paint) { |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 529 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRRect", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 530 | CHECK_FOR_ANNOTATION(paint); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 531 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 532 | |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 533 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 534 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 535 | return; |
| 536 | } |
Mike Klein | 744fb73 | 2014-06-23 15:13:26 -0400 | [diff] [blame] | 537 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 538 | GrStrokeInfo strokeInfo(paint); |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 539 | if (paint.getMaskFilter()) { |
| 540 | // try to hit the fast path for drawing filtered round rects |
| 541 | |
| 542 | SkRRect devRRect; |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 543 | if (rect.transform(*draw.fMatrix, &devRRect)) { |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 544 | if (devRRect.allCornersCircular()) { |
| 545 | SkRect maskRect; |
| 546 | if (paint.getMaskFilter()->canFilterMaskGPU(devRRect.rect(), |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 547 | draw.fClip->getBounds(), |
| 548 | *draw.fMatrix, |
| 549 | &maskRect)) { |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 550 | SkIRect finalIRect; |
| 551 | maskRect.roundOut(&finalIRect); |
| 552 | if (draw.fClip->quickReject(finalIRect)) { |
| 553 | // clipped out |
| 554 | return; |
| 555 | } |
robertphillips | ff0ca5e | 2015-07-22 11:54:44 -0700 | [diff] [blame] | 556 | if (paint.getMaskFilter()->directFilterRRectMaskGPU(fContext->textureProvider(), |
| 557 | fDrawContext, |
joshualitt | 25d9c15 | 2015-02-18 12:29:52 -0800 | [diff] [blame] | 558 | fRenderTarget, |
| 559 | &grPaint, |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 560 | fClip, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 561 | *draw.fMatrix, |
kkinnunen | d156d36 | 2015-05-18 22:23:54 -0700 | [diff] [blame] | 562 | strokeInfo, |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 563 | devRRect)) { |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 564 | return; |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | } |
| 572 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 573 | bool usePath = false; |
| 574 | |
| 575 | if (paint.getMaskFilter()) { |
| 576 | usePath = true; |
| 577 | } else { |
| 578 | const SkPathEffect* pe = paint.getPathEffect(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 579 | if (pe && !strokeInfo.isDashed()) { |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 580 | usePath = true; |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | |
| 585 | if (usePath) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 586 | SkPath path; |
jvanverth | b3eb687 | 2014-10-24 07:12:51 -0700 | [diff] [blame] | 587 | path.setIsVolatile(true); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 588 | path.addRRect(rect); |
| 589 | this->drawPath(draw, path, paint, NULL, true); |
| 590 | return; |
| 591 | } |
Mike Klein | 744fb73 | 2014-06-23 15:13:26 -0400 | [diff] [blame] | 592 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 593 | fDrawContext->drawRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 594 | } |
| 595 | |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 596 | void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 597 | const SkRRect& inner, const SkPaint& paint) { |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 598 | SkStrokeRec stroke(paint); |
| 599 | if (stroke.isFillStyle()) { |
| 600 | |
| 601 | CHECK_FOR_ANNOTATION(paint); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 602 | CHECK_SHOULD_DRAW(draw); |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 603 | |
| 604 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 605 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, |
| 606 | &grPaint)) { |
| 607 | return; |
| 608 | } |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 609 | |
| 610 | if (NULL == paint.getMaskFilter() && NULL == paint.getPathEffect()) { |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 611 | fDrawContext->drawDRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, outer, inner); |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 612 | return; |
| 613 | } |
| 614 | } |
| 615 | |
| 616 | SkPath path; |
jvanverth | b3eb687 | 2014-10-24 07:12:51 -0700 | [diff] [blame] | 617 | path.setIsVolatile(true); |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 618 | path.addRRect(outer); |
| 619 | path.addRRect(inner); |
| 620 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 621 | |
| 622 | this->drawPath(draw, path, paint, NULL, true); |
| 623 | } |
| 624 | |
| 625 | |
commit-bot@chromium.org | 8213970 | 2014-03-10 22:53:20 +0000 | [diff] [blame] | 626 | ///////////////////////////////////////////////////////////////////////////// |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 627 | |
| 628 | void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval, |
| 629 | const SkPaint& paint) { |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 630 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawOval", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 631 | CHECK_FOR_ANNOTATION(paint); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 632 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 633 | |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 634 | GrStrokeInfo strokeInfo(paint); |
| 635 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 636 | bool usePath = false; |
| 637 | // some basic reasons we might need to call drawPath... |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 638 | if (paint.getMaskFilter()) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 639 | usePath = true; |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 640 | } else { |
| 641 | const SkPathEffect* pe = paint.getPathEffect(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 642 | if (pe && !strokeInfo.isDashed()) { |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 643 | usePath = true; |
| 644 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | if (usePath) { |
| 648 | SkPath path; |
jvanverth | b3eb687 | 2014-10-24 07:12:51 -0700 | [diff] [blame] | 649 | path.setIsVolatile(true); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 650 | path.addOval(oval); |
| 651 | this->drawPath(draw, path, paint, NULL, true); |
| 652 | return; |
| 653 | } |
| 654 | |
| 655 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 656 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 657 | return; |
| 658 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 659 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 660 | fDrawContext->drawOval(fRenderTarget, fClip, grPaint, *draw.fMatrix, oval, strokeInfo); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | #include "SkMaskFilter.h" |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 664 | |
| 665 | /////////////////////////////////////////////////////////////////////////////// |
| 666 | |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 667 | static SkBitmap wrap_texture(GrTexture* texture, int width, int height) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 668 | SkBitmap result; |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 669 | result.setInfo(SkImageInfo::MakeN32Premul(width, height)); |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 670 | result.setPixelRef(SkNEW_ARGS(SkGrPixelRef, (result.info(), texture)))->unref(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 671 | return result; |
| 672 | } |
| 673 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 674 | void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath, |
| 675 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
| 676 | bool pathIsMutable) { |
| 677 | CHECK_FOR_ANNOTATION(paint); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 678 | CHECK_SHOULD_DRAW(draw); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 679 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPath", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 680 | |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 681 | GrBlurUtils::drawPathWithMaskFilter(fContext, fDrawContext, fRenderTarget, |
| 682 | fClip, origSrcPath, paint, |
| 683 | *draw.fMatrix, prePathMatrix, |
| 684 | draw.fClip->getBounds(), pathIsMutable); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | static const int kBmpSmallTileSize = 1 << 10; |
| 688 | |
| 689 | static inline int get_tile_count(const SkIRect& srcRect, int tileSize) { |
| 690 | int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1; |
| 691 | int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1; |
| 692 | return tilesX * tilesY; |
| 693 | } |
| 694 | |
| 695 | static int determine_tile_size(const SkBitmap& bitmap, const SkIRect& src, int maxTileSize) { |
| 696 | if (maxTileSize <= kBmpSmallTileSize) { |
| 697 | return maxTileSize; |
| 698 | } |
| 699 | |
| 700 | size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize); |
| 701 | size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize); |
| 702 | |
| 703 | maxTileTotalTileSize *= maxTileSize * maxTileSize; |
| 704 | smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize; |
| 705 | |
| 706 | if (maxTileTotalTileSize > 2 * smallTotalTileSize) { |
| 707 | return kBmpSmallTileSize; |
| 708 | } else { |
| 709 | return maxTileSize; |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | // Given a bitmap, an optional src rect, and a context with a clip and matrix determine what |
| 714 | // pixels from the bitmap are necessary. |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 715 | static void determine_clipped_src_rect(const GrRenderTarget* rt, |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 716 | const GrClip& clip, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 717 | const SkMatrix& viewMatrix, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 718 | const SkBitmap& bitmap, |
| 719 | const SkRect* srcRectPtr, |
| 720 | SkIRect* clippedSrcIRect) { |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 721 | clip.getConservativeBounds(rt, clippedSrcIRect, NULL); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 722 | SkMatrix inv; |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 723 | if (!viewMatrix.invert(&inv)) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 724 | clippedSrcIRect->setEmpty(); |
| 725 | return; |
| 726 | } |
| 727 | SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect); |
| 728 | inv.mapRect(&clippedSrcRect); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 729 | if (srcRectPtr) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 730 | // we've setup src space 0,0 to map to the top left of the src rect. |
| 731 | clippedSrcRect.offset(srcRectPtr->fLeft, srcRectPtr->fTop); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 732 | if (!clippedSrcRect.intersect(*srcRectPtr)) { |
| 733 | clippedSrcIRect->setEmpty(); |
| 734 | return; |
| 735 | } |
| 736 | } |
| 737 | clippedSrcRect.roundOut(clippedSrcIRect); |
| 738 | SkIRect bmpBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height()); |
| 739 | if (!clippedSrcIRect->intersect(bmpBounds)) { |
| 740 | clippedSrcIRect->setEmpty(); |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 745 | const SkMatrix& viewMatrix, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 746 | const GrTextureParams& params, |
| 747 | const SkRect* srcRectPtr, |
| 748 | int maxTileSize, |
| 749 | int* tileSize, |
| 750 | SkIRect* clippedSrcRect) const { |
| 751 | // if bitmap is explictly texture backed then just use the texture |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 752 | if (bitmap.getTexture()) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 753 | return false; |
| 754 | } |
| 755 | |
| 756 | // if it's larger than the max tile size, then we have no choice but tiling. |
| 757 | if (bitmap.width() > maxTileSize || bitmap.height() > maxTileSize) { |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 758 | determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, bitmap, |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 759 | srcRectPtr, clippedSrcRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 760 | *tileSize = determine_tile_size(bitmap, *clippedSrcRect, maxTileSize); |
| 761 | return true; |
| 762 | } |
| 763 | |
| 764 | if (bitmap.width() * bitmap.height() < 4 * kBmpSmallTileSize * kBmpSmallTileSize) { |
| 765 | return false; |
| 766 | } |
| 767 | |
| 768 | // if the entire texture is already in our cache then no reason to tile it |
| 769 | if (GrIsBitmapInCache(fContext, bitmap, ¶ms)) { |
| 770 | return false; |
| 771 | } |
| 772 | |
| 773 | // At this point we know we could do the draw by uploading the entire bitmap |
| 774 | // as a texture. However, if the texture would be large compared to the |
| 775 | // cache size and we don't require most of it for this draw then tile to |
| 776 | // reduce the amount of upload and cache spill. |
| 777 | |
| 778 | // assumption here is that sw bitmap size is a good proxy for its size as |
| 779 | // a texture |
| 780 | size_t bmpSize = bitmap.getSize(); |
| 781 | size_t cacheSize; |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 782 | fContext->getResourceCacheLimits(NULL, &cacheSize); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 783 | if (bmpSize < cacheSize / 2) { |
| 784 | return false; |
| 785 | } |
| 786 | |
| 787 | // Figure out how much of the src we will need based on the src rect and clipping. |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 788 | determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, bitmap, srcRectPtr, |
joshualitt | 25d9c15 | 2015-02-18 12:29:52 -0800 | [diff] [blame] | 789 | clippedSrcRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 790 | *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile. |
| 791 | size_t usedTileBytes = get_tile_count(*clippedSrcRect, kBmpSmallTileSize) * |
| 792 | kBmpSmallTileSize * kBmpSmallTileSize; |
| 793 | |
| 794 | return usedTileBytes < 2 * bmpSize; |
| 795 | } |
| 796 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 797 | void SkGpuDevice::drawBitmap(const SkDraw& origDraw, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 798 | const SkBitmap& bitmap, |
| 799 | const SkMatrix& m, |
| 800 | const SkPaint& paint) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 801 | SkMatrix concat; |
| 802 | SkTCopyOnFirstWrite<SkDraw> draw(origDraw); |
| 803 | if (!m.isIdentity()) { |
| 804 | concat.setConcat(*draw->fMatrix, m); |
| 805 | draw.writable()->fMatrix = &concat; |
| 806 | } |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 807 | this->drawBitmapCommon(*draw, bitmap, NULL, NULL, paint, SkCanvas::kStrict_SrcRectConstraint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 808 | } |
| 809 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 810 | // 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] | 811 | // 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner |
| 812 | // of 'iRect' for all possible outsets/clamps. |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 813 | static inline void clamped_outset_with_offset(SkIRect* iRect, |
| 814 | int outset, |
| 815 | SkPoint* offset, |
| 816 | const SkIRect& clamp) { |
| 817 | iRect->outset(outset, outset); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 818 | |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 819 | int leftClampDelta = clamp.fLeft - iRect->fLeft; |
| 820 | if (leftClampDelta > 0) { |
| 821 | offset->fX -= outset - leftClampDelta; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 822 | iRect->fLeft = clamp.fLeft; |
| 823 | } else { |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 824 | offset->fX -= outset; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 825 | } |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 826 | |
| 827 | int topClampDelta = clamp.fTop - iRect->fTop; |
| 828 | if (topClampDelta > 0) { |
| 829 | offset->fY -= outset - topClampDelta; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 830 | iRect->fTop = clamp.fTop; |
| 831 | } else { |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 832 | offset->fY -= outset; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | if (iRect->fRight > clamp.fRight) { |
| 836 | iRect->fRight = clamp.fRight; |
| 837 | } |
| 838 | if (iRect->fBottom > clamp.fBottom) { |
| 839 | iRect->fBottom = clamp.fBottom; |
| 840 | } |
| 841 | } |
| 842 | |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 843 | static bool has_aligned_samples(const SkRect& srcRect, |
| 844 | const SkRect& transformedRect) { |
| 845 | // detect pixel disalignment |
| 846 | if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) - |
| 847 | transformedRect.left()) < COLOR_BLEED_TOLERANCE && |
| 848 | SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) - |
| 849 | transformedRect.top()) < COLOR_BLEED_TOLERANCE && |
| 850 | SkScalarAbs(transformedRect.width() - srcRect.width()) < |
| 851 | COLOR_BLEED_TOLERANCE && |
| 852 | SkScalarAbs(transformedRect.height() - srcRect.height()) < |
| 853 | COLOR_BLEED_TOLERANCE) { |
| 854 | return true; |
| 855 | } |
| 856 | return false; |
| 857 | } |
| 858 | |
| 859 | static bool may_color_bleed(const SkRect& srcRect, |
| 860 | const SkRect& transformedRect, |
robertphillips | 1accc4c | 2015-07-20 10:22:29 -0700 | [diff] [blame] | 861 | const SkMatrix& m, |
| 862 | bool isMSAA) { |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 863 | // Only gets called if has_aligned_samples returned false. |
| 864 | // So we can assume that sampling is axis aligned but not texel aligned. |
| 865 | SkASSERT(!has_aligned_samples(srcRect, transformedRect)); |
| 866 | SkRect innerSrcRect(srcRect), innerTransformedRect, |
| 867 | outerTransformedRect(transformedRect); |
robertphillips | 1accc4c | 2015-07-20 10:22:29 -0700 | [diff] [blame] | 868 | if (isMSAA) { |
| 869 | innerSrcRect.inset(SK_Scalar1, SK_Scalar1); |
| 870 | } else { |
| 871 | innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf); |
| 872 | } |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 873 | m.mapRect(&innerTransformedRect, innerSrcRect); |
| 874 | |
| 875 | // The gap between outerTransformedRect and innerTransformedRect |
| 876 | // represents the projection of the source border area, which is |
| 877 | // problematic for color bleeding. We must check whether any |
| 878 | // destination pixels sample the border area. |
| 879 | outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE); |
| 880 | innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE); |
| 881 | SkIRect outer, inner; |
| 882 | outerTransformedRect.round(&outer); |
| 883 | innerTransformedRect.round(&inner); |
| 884 | // If the inner and outer rects round to the same result, it means the |
| 885 | // border does not overlap any pixel centers. Yay! |
| 886 | return inner != outer; |
| 887 | } |
| 888 | |
| 889 | static bool needs_texture_domain(const SkBitmap& bitmap, |
| 890 | const SkRect& srcRect, |
| 891 | GrTextureParams ¶ms, |
| 892 | const SkMatrix& contextMatrix, |
robertphillips | 1accc4c | 2015-07-20 10:22:29 -0700 | [diff] [blame] | 893 | bool bicubic, |
| 894 | bool isMSAA) { |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 895 | bool needsTextureDomain = false; |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 896 | GrTexture* tex = bitmap.getTexture(); |
| 897 | int width = tex ? tex->width() : bitmap.width(); |
| 898 | int height = tex ? tex->height() : bitmap.height(); |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 899 | |
| 900 | if (bicubic || params.filterMode() != GrTextureParams::kNone_FilterMode) { |
| 901 | // Need texture domain if drawing a sub rect |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 902 | needsTextureDomain = srcRect.width() < width || |
| 903 | srcRect.height() < height; |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 904 | if (!bicubic && needsTextureDomain && contextMatrix.rectStaysRect()) { |
| 905 | // sampling is axis-aligned |
| 906 | SkRect transformedRect; |
| 907 | contextMatrix.mapRect(&transformedRect, srcRect); |
| 908 | |
| 909 | if (has_aligned_samples(srcRect, transformedRect)) { |
| 910 | params.setFilterMode(GrTextureParams::kNone_FilterMode); |
| 911 | needsTextureDomain = false; |
| 912 | } else { |
robertphillips | 1accc4c | 2015-07-20 10:22:29 -0700 | [diff] [blame] | 913 | needsTextureDomain = may_color_bleed(srcRect, transformedRect, |
| 914 | contextMatrix, isMSAA); |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 915 | } |
| 916 | } |
| 917 | } |
| 918 | return needsTextureDomain; |
| 919 | } |
| 920 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 921 | void SkGpuDevice::drawBitmapCommon(const SkDraw& draw, |
| 922 | const SkBitmap& bitmap, |
| 923 | const SkRect* srcRectPtr, |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 924 | const SkSize* dstSizePtr, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 925 | const SkPaint& paint, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 926 | SkCanvas::SrcRectConstraint constraint) { |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 927 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 928 | |
| 929 | SkRect srcRect; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 930 | SkSize dstSize; |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 931 | // If there is no src rect, or the src rect contains the entire bitmap then we're effectively |
| 932 | // in the (easier) bleed case, so update flags. |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 933 | if (NULL == srcRectPtr) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 934 | SkScalar w = SkIntToScalar(bitmap.width()); |
| 935 | SkScalar h = SkIntToScalar(bitmap.height()); |
| 936 | dstSize.fWidth = w; |
| 937 | dstSize.fHeight = h; |
| 938 | srcRect.set(0, 0, w, h); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 939 | } else { |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 940 | SkASSERT(dstSizePtr); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 941 | srcRect = *srcRectPtr; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 942 | dstSize = *dstSizePtr; |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 943 | } |
| 944 | GrTexture* tex = bitmap.getTexture(); |
| 945 | int width = tex ? tex->width() : bitmap.width(); |
| 946 | int height = tex ? tex->height() : bitmap.height(); |
| 947 | if (srcRect.fLeft <= 0 && srcRect.fTop <= 0 && |
| 948 | srcRect.fRight >= width && srcRect.fBottom >= height) { |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 949 | constraint = SkCanvas::kFast_SrcRectConstraint; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 950 | } |
| 951 | |
derekf | 367e186 | 2014-12-02 11:02:06 -0800 | [diff] [blame] | 952 | // If the render target is not msaa and draw is antialiased, we call |
| 953 | // drawRect instead of drawing on the render target directly. |
| 954 | // FIXME: the tiled bitmap code path doesn't currently support |
| 955 | // anti-aliased edges, we work around that for now by drawing directly |
| 956 | // if the image size exceeds maximum texture size. |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 957 | int maxTextureSize = fContext->caps()->maxTextureSize(); |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 958 | bool directDraw = fRenderTarget->isUnifiedMultisampled() || |
derekf | 367e186 | 2014-12-02 11:02:06 -0800 | [diff] [blame] | 959 | !paint.isAntiAlias() || |
| 960 | bitmap.width() > maxTextureSize || |
| 961 | bitmap.height() > maxTextureSize; |
| 962 | |
| 963 | // we check whether dst rect are pixel aligned |
| 964 | if (!directDraw) { |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 965 | bool staysRect = draw.fMatrix->rectStaysRect(); |
derekf | 367e186 | 2014-12-02 11:02:06 -0800 | [diff] [blame] | 966 | |
| 967 | if (staysRect) { |
| 968 | SkRect rect; |
| 969 | SkRect dstRect = SkRect::MakeXYWH(0, 0, dstSize.fWidth, dstSize.fHeight); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 970 | draw.fMatrix->mapRect(&rect, dstRect); |
derekf | 367e186 | 2014-12-02 11:02:06 -0800 | [diff] [blame] | 971 | const SkScalar *scalars = rect.asScalars(); |
| 972 | bool isDstPixelAligned = true; |
| 973 | for (int i = 0; i < 4; i++) { |
| 974 | if (!SkScalarIsInt(scalars[i])) { |
| 975 | isDstPixelAligned = false; |
| 976 | break; |
| 977 | } |
| 978 | } |
| 979 | |
| 980 | if (isDstPixelAligned) |
| 981 | directDraw = true; |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | if (paint.getMaskFilter() || !directDraw) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 986 | // Convert the bitmap to a shader so that the rect can be drawn |
| 987 | // through drawRect, which supports mask filters. |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 988 | SkBitmap tmp; // subset of bitmap, if necessary |
| 989 | const SkBitmap* bitmapPtr = &bitmap; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 990 | SkMatrix localM; |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 991 | if (srcRectPtr) { |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 992 | localM.setTranslate(-srcRectPtr->fLeft, -srcRectPtr->fTop); |
| 993 | localM.postScale(dstSize.fWidth / srcRectPtr->width(), |
| 994 | dstSize.fHeight / srcRectPtr->height()); |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 995 | // In bleed mode we position and trim the bitmap based on the src rect which is |
| 996 | // already accounted for in 'm' and 'srcRect'. In clamp mode we need to chop out |
| 997 | // the desired portion of the bitmap and then update 'm' and 'srcRect' to |
| 998 | // compensate. |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 999 | if (SkCanvas::kStrict_SrcRectConstraint == constraint) { |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1000 | SkIRect iSrc; |
| 1001 | srcRect.roundOut(&iSrc); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1002 | |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1003 | SkPoint offset = SkPoint::Make(SkIntToScalar(iSrc.fLeft), |
| 1004 | SkIntToScalar(iSrc.fTop)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1005 | |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1006 | if (!bitmap.extractSubset(&tmp, iSrc)) { |
| 1007 | return; // extraction failed |
| 1008 | } |
| 1009 | bitmapPtr = &tmp; |
| 1010 | srcRect.offset(-offset.fX, -offset.fY); |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1011 | |
commit-bot@chromium.org | d6ca4ac | 2013-11-22 20:34:59 +0000 | [diff] [blame] | 1012 | // The source rect has changed so update the matrix |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1013 | localM.preTranslate(offset.fX, offset.fY); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1014 | } |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1015 | } else { |
| 1016 | localM.reset(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1017 | } |
| 1018 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1019 | SkPaint paintWithShader(paint); |
| 1020 | paintWithShader.setShader(SkShader::CreateBitmapShader(*bitmapPtr, |
commit-bot@chromium.org | 9c9005a | 2014-04-28 14:55:39 +0000 | [diff] [blame] | 1021 | SkShader::kClamp_TileMode, SkShader::kClamp_TileMode, &localM))->unref(); |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1022 | SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight}; |
| 1023 | this->drawRect(draw, dstRect, paintWithShader); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1024 | |
| 1025 | return; |
| 1026 | } |
| 1027 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1028 | // If there is no mask filter than it is OK to handle the src rect -> dst rect scaling using |
| 1029 | // the view matrix rather than a local matrix. |
| 1030 | SkMatrix m; |
| 1031 | m.setScale(dstSize.fWidth / srcRect.width(), |
| 1032 | dstSize.fHeight / srcRect.height()); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1033 | SkMatrix viewM = *draw.fMatrix; |
| 1034 | viewM.preConcat(m); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1035 | |
| 1036 | GrTextureParams params; |
joshualitt | 9bc3954 | 2015-08-12 12:57:54 -0700 | [diff] [blame^] | 1037 | bool doBicubic; |
| 1038 | GrTextureParams::FilterMode textureFilterMode = |
| 1039 | GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewM, SkMatrix::I(), |
| 1040 | &doBicubic); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1041 | |
commit-bot@chromium.org | 9927bd3 | 2014-05-20 17:51:13 +0000 | [diff] [blame] | 1042 | int tileFilterPad; |
| 1043 | if (doBicubic) { |
| 1044 | tileFilterPad = GrBicubicEffect::kFilterTexelPad; |
| 1045 | } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) { |
| 1046 | tileFilterPad = 0; |
| 1047 | } else { |
| 1048 | tileFilterPad = 1; |
| 1049 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1050 | params.setFilterMode(textureFilterMode); |
| 1051 | |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 1052 | int maxTileSize = fContext->caps()->maxTextureSize() - 2 * tileFilterPad; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1053 | int tileSize; |
| 1054 | |
| 1055 | SkIRect clippedSrcRect; |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1056 | if (this->shouldTileBitmap(bitmap, viewM, params, srcRectPtr, maxTileSize, &tileSize, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1057 | &clippedSrcRect)) { |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1058 | this->drawTiledBitmap(bitmap, viewM, srcRect, clippedSrcRect, params, paint, constraint, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1059 | tileSize, doBicubic); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1060 | } else { |
| 1061 | // take the simple case |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1062 | bool needsTextureDomain = needs_texture_domain(bitmap, |
| 1063 | srcRect, |
| 1064 | params, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1065 | viewM, |
robertphillips | 1accc4c | 2015-07-20 10:22:29 -0700 | [diff] [blame] | 1066 | doBicubic, |
| 1067 | fRenderTarget->isUnifiedMultisampled()); |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1068 | this->internalDrawBitmap(bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1069 | viewM, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1070 | srcRect, |
| 1071 | params, |
| 1072 | paint, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1073 | constraint, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1074 | doBicubic, |
| 1075 | needsTextureDomain); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1076 | } |
| 1077 | } |
| 1078 | |
| 1079 | // Break 'bitmap' into several tiles to draw it since it has already |
| 1080 | // been determined to be too large to fit in VRAM |
| 1081 | void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1082 | const SkMatrix& viewMatrix, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1083 | const SkRect& srcRect, |
| 1084 | const SkIRect& clippedSrcIRect, |
| 1085 | const GrTextureParams& params, |
| 1086 | const SkPaint& paint, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1087 | SkCanvas::SrcRectConstraint constraint, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1088 | int tileSize, |
| 1089 | bool bicubic) { |
commit-bot@chromium.org | 9d5e3f1 | 2014-05-01 21:23:19 +0000 | [diff] [blame] | 1090 | // The following pixel lock is technically redundant, but it is desirable |
| 1091 | // to lock outside of the tile loop to prevent redecoding the whole image |
| 1092 | // at each tile in cases where 'bitmap' holds an SkDiscardablePixelRef that |
| 1093 | // is larger than the limit of the discardable memory pool. |
| 1094 | SkAutoLockPixels alp(bitmap); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1095 | SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect); |
| 1096 | |
| 1097 | int nx = bitmap.width() / tileSize; |
| 1098 | int ny = bitmap.height() / tileSize; |
| 1099 | for (int x = 0; x <= nx; x++) { |
| 1100 | for (int y = 0; y <= ny; y++) { |
| 1101 | SkRect tileR; |
| 1102 | tileR.set(SkIntToScalar(x * tileSize), |
| 1103 | SkIntToScalar(y * tileSize), |
| 1104 | SkIntToScalar((x + 1) * tileSize), |
| 1105 | SkIntToScalar((y + 1) * tileSize)); |
| 1106 | |
| 1107 | if (!SkRect::Intersects(tileR, clippedSrcRect)) { |
| 1108 | continue; |
| 1109 | } |
| 1110 | |
| 1111 | if (!tileR.intersect(srcRect)) { |
| 1112 | continue; |
| 1113 | } |
| 1114 | |
| 1115 | SkBitmap tmpB; |
| 1116 | SkIRect iTileR; |
| 1117 | tileR.roundOut(&iTileR); |
| 1118 | SkPoint offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft), |
| 1119 | SkIntToScalar(iTileR.fTop)); |
| 1120 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1121 | // Adjust the context matrix to draw at the right x,y in device space |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1122 | SkMatrix viewM = viewMatrix; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1123 | SkMatrix tmpM; |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1124 | tmpM.setTranslate(offset.fX - srcRect.fLeft, offset.fY - srcRect.fTop); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1125 | viewM.preConcat(tmpM); |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1126 | |
robertphillips | ec8bb94 | 2014-11-21 10:16:25 -0800 | [diff] [blame] | 1127 | if (GrTextureParams::kNone_FilterMode != params.filterMode() || bicubic) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1128 | SkIRect iClampRect; |
| 1129 | |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1130 | if (SkCanvas::kFast_SrcRectConstraint == constraint) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1131 | // In bleed mode we want to always expand the tile on all edges |
| 1132 | // but stay within the bitmap bounds |
| 1133 | iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height()); |
| 1134 | } else { |
| 1135 | // In texture-domain/clamp mode we only want to expand the |
| 1136 | // tile on edges interior to "srcRect" (i.e., we want to |
| 1137 | // not bleed across the original clamped edges) |
| 1138 | srcRect.roundOut(&iClampRect); |
| 1139 | } |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1140 | int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1; |
| 1141 | clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | if (bitmap.extractSubset(&tmpB, iTileR)) { |
| 1145 | // now offset it to make it "local" to our tmp bitmap |
| 1146 | tileR.offset(-offset.fX, -offset.fY); |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1147 | GrTextureParams paramsTemp = params; |
robertphillips | 1accc4c | 2015-07-20 10:22:29 -0700 | [diff] [blame] | 1148 | bool needsTextureDomain = needs_texture_domain( |
| 1149 | bitmap, srcRect, paramsTemp, |
| 1150 | viewM, bicubic, |
| 1151 | fRenderTarget->isUnifiedMultisampled()); |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1152 | this->internalDrawBitmap(tmpB, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1153 | viewM, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1154 | tileR, |
| 1155 | paramsTemp, |
| 1156 | paint, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1157 | constraint, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1158 | bicubic, |
| 1159 | needsTextureDomain); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1160 | } |
| 1161 | } |
| 1162 | } |
| 1163 | } |
| 1164 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1165 | |
| 1166 | /* |
| 1167 | * This is called by drawBitmap(), which has to handle images that may be too |
| 1168 | * large to be represented by a single texture. |
| 1169 | * |
| 1170 | * internalDrawBitmap assumes that the specified bitmap will fit in a texture |
| 1171 | * and that non-texture portion of the GrPaint has already been setup. |
| 1172 | */ |
| 1173 | void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1174 | const SkMatrix& viewMatrix, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1175 | const SkRect& srcRect, |
| 1176 | const GrTextureParams& params, |
| 1177 | const SkPaint& paint, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1178 | SkCanvas::SrcRectConstraint constraint, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 1179 | bool bicubic, |
| 1180 | bool needsTextureDomain) { |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 1181 | SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() && |
| 1182 | bitmap.height() <= fContext->caps()->maxTextureSize()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1183 | |
| 1184 | GrTexture* texture; |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 1185 | AutoBitmapTexture abt(fContext, bitmap, ¶ms, &texture); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1186 | if (NULL == texture) { |
| 1187 | return; |
| 1188 | } |
| 1189 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1190 | SkRect dstRect = {0, 0, srcRect.width(), srcRect.height() }; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1191 | SkRect paintRect; |
| 1192 | SkScalar wInv = SkScalarInvert(SkIntToScalar(texture->width())); |
| 1193 | SkScalar hInv = SkScalarInvert(SkIntToScalar(texture->height())); |
| 1194 | paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv), |
| 1195 | SkScalarMul(srcRect.fTop, hInv), |
| 1196 | SkScalarMul(srcRect.fRight, wInv), |
| 1197 | SkScalarMul(srcRect.fBottom, hInv)); |
| 1198 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1199 | SkRect textureDomain = SkRect::MakeEmpty(); |
joshualitt | 5f10b5c | 2015-07-09 10:24:35 -0700 | [diff] [blame] | 1200 | |
| 1201 | // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring |
| 1202 | // the rest from the SkPaint. |
| 1203 | GrPaint grPaint; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 1204 | SkAutoTUnref<GrFragmentProcessor> fp; |
joshualitt | 5f10b5c | 2015-07-09 10:24:35 -0700 | [diff] [blame] | 1205 | |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1206 | if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1207 | // Use a constrained texture domain to avoid color bleeding |
| 1208 | SkScalar left, top, right, bottom; |
| 1209 | if (srcRect.width() > SK_Scalar1) { |
| 1210 | SkScalar border = SK_ScalarHalf / texture->width(); |
| 1211 | left = paintRect.left() + border; |
| 1212 | right = paintRect.right() - border; |
| 1213 | } else { |
| 1214 | left = right = SkScalarHalf(paintRect.left() + paintRect.right()); |
| 1215 | } |
| 1216 | if (srcRect.height() > SK_Scalar1) { |
| 1217 | SkScalar border = SK_ScalarHalf / texture->height(); |
| 1218 | top = paintRect.top() + border; |
| 1219 | bottom = paintRect.bottom() - border; |
| 1220 | } else { |
| 1221 | top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom()); |
| 1222 | } |
| 1223 | textureDomain.setLTRB(left, top, right, bottom); |
commit-bot@chromium.org | 7d7f314 | 2013-12-16 15:18:11 +0000 | [diff] [blame] | 1224 | if (bicubic) { |
joshualitt | 5f10b5c | 2015-07-09 10:24:35 -0700 | [diff] [blame] | 1225 | fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture, |
| 1226 | SkMatrix::I(), textureDomain)); |
commit-bot@chromium.org | 7d7f314 | 2013-12-16 15:18:11 +0000 | [diff] [blame] | 1227 | } else { |
joshualitt | 5f10b5c | 2015-07-09 10:24:35 -0700 | [diff] [blame] | 1228 | fp.reset(GrTextureDomainEffect::Create(grPaint.getProcessorDataManager(), |
| 1229 | texture, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1230 | SkMatrix::I(), |
| 1231 | textureDomain, |
| 1232 | GrTextureDomain::kClamp_Mode, |
| 1233 | params.filterMode())); |
commit-bot@chromium.org | 7d7f314 | 2013-12-16 15:18:11 +0000 | [diff] [blame] | 1234 | } |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 1235 | } else if (bicubic) { |
commit-bot@chromium.org | bc91fd7 | 2013-12-10 12:53:39 +0000 | [diff] [blame] | 1236 | SkASSERT(GrTextureParams::kNone_FilterMode == params.filterMode()); |
| 1237 | SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() }; |
joshualitt | 5f10b5c | 2015-07-09 10:24:35 -0700 | [diff] [blame] | 1238 | fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture, SkMatrix::I(), |
| 1239 | tileModes)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1240 | } else { |
joshualitt | 5f10b5c | 2015-07-09 10:24:35 -0700 | [diff] [blame] | 1241 | fp.reset(GrSimpleTextureEffect::Create(grPaint.getProcessorDataManager(), texture, |
| 1242 | SkMatrix::I(), params)); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 1245 | grPaint.addColorProcessor(fp); |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1246 | bool alphaOnly = !(kAlpha_8_SkColorType == bitmap.colorType()); |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1247 | GrColor paintColor = (alphaOnly) ? SkColor2GrColorJustAlpha(paint.getColor()) : |
| 1248 | SkColor2GrColor(paint.getColor()); |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1249 | if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, paintColor, false, |
| 1250 | &grPaint)) { |
| 1251 | return; |
| 1252 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1253 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 1254 | fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, viewMatrix, dstRect, |
| 1255 | paintRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1256 | } |
| 1257 | |
fmalita | 2d97bc1 | 2014-11-20 10:44:58 -0800 | [diff] [blame] | 1258 | bool SkGpuDevice::filterTexture(GrContext* context, GrTexture* texture, |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 1259 | int width, int height, |
fmalita | 2d97bc1 | 2014-11-20 10:44:58 -0800 | [diff] [blame] | 1260 | const SkImageFilter* filter, |
| 1261 | const SkImageFilter::Context& ctx, |
| 1262 | SkBitmap* result, SkIPoint* offset) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1263 | SkASSERT(filter); |
fmalita | 2d97bc1 | 2014-11-20 10:44:58 -0800 | [diff] [blame] | 1264 | |
robertphillips | efbffed | 2015-06-22 12:06:08 -0700 | [diff] [blame] | 1265 | SkImageFilter::Proxy proxy(this); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1266 | |
| 1267 | if (filter->canFilterImageGPU()) { |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 1268 | return filter->filterImageGPU(&proxy, wrap_texture(texture, width, height), |
| 1269 | ctx, result, offset); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1270 | } else { |
| 1271 | return false; |
| 1272 | } |
| 1273 | } |
| 1274 | |
| 1275 | void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap, |
| 1276 | int left, int top, const SkPaint& paint) { |
| 1277 | // drawSprite is defined to be in device coords. |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1278 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1279 | |
| 1280 | SkAutoLockPixels alp(bitmap, !bitmap.getTexture()); |
| 1281 | if (!bitmap.getTexture() && !bitmap.readyToDraw()) { |
| 1282 | return; |
| 1283 | } |
| 1284 | |
| 1285 | int w = bitmap.width(); |
| 1286 | int h = bitmap.height(); |
| 1287 | |
| 1288 | GrTexture* texture; |
| 1289 | // draw sprite uses the default texture params |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 1290 | AutoBitmapTexture abt(fContext, bitmap, NULL, &texture); |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 1291 | if (!texture) { |
| 1292 | return; |
| 1293 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1294 | |
| 1295 | SkImageFilter* filter = paint.getImageFilter(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1296 | // This bitmap will own the filtered result as a texture. |
| 1297 | SkBitmap filteredBitmap; |
| 1298 | |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1299 | if (filter) { |
senorblanco@chromium.org | 6776b82 | 2014-01-03 21:48:22 +0000 | [diff] [blame] | 1300 | SkIPoint offset = SkIPoint::Make(0, 0); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1301 | SkMatrix matrix(*draw.fMatrix); |
| 1302 | matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top)); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1303 | SkIRect clipBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height()); |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 1304 | SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache()); |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 1305 | // This cache is transient, and is freed (along with all its contained |
| 1306 | // textures) when it goes out of scope. |
commit-bot@chromium.org | f7efa50 | 2014-04-11 18:57:00 +0000 | [diff] [blame] | 1307 | SkImageFilter::Context ctx(matrix, clipBounds, cache); |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 1308 | if (this->filterTexture(fContext, texture, w, h, filter, ctx, &filteredBitmap, |
fmalita | 2d97bc1 | 2014-11-20 10:44:58 -0800 | [diff] [blame] | 1309 | &offset)) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1310 | texture = (GrTexture*) filteredBitmap.getTexture(); |
| 1311 | w = filteredBitmap.width(); |
| 1312 | h = filteredBitmap.height(); |
senorblanco@chromium.org | 6776b82 | 2014-01-03 21:48:22 +0000 | [diff] [blame] | 1313 | left += offset.x(); |
| 1314 | top += offset.y(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1315 | } else { |
| 1316 | return; |
| 1317 | } |
| 1318 | } |
| 1319 | |
| 1320 | GrPaint grPaint; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 1321 | grPaint.addColorTextureProcessor(texture, SkMatrix::I()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1322 | |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1323 | if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, |
| 1324 | SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) { |
| 1325 | return; |
| 1326 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1327 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 1328 | fDrawContext->drawNonAARectToRect(fRenderTarget, |
| 1329 | fClip, |
| 1330 | grPaint, |
| 1331 | SkMatrix::I(), |
| 1332 | SkRect::MakeXYWH(SkIntToScalar(left), |
| 1333 | SkIntToScalar(top), |
| 1334 | SkIntToScalar(w), |
| 1335 | SkIntToScalar(h)), |
| 1336 | SkRect::MakeXYWH(0, |
| 1337 | 0, |
| 1338 | SK_Scalar1 * w / texture->width(), |
| 1339 | SK_Scalar1 * h / texture->height())); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1342 | void SkGpuDevice::drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1343 | const SkRect* src, const SkRect& dst, |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 1344 | const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1345 | SkMatrix matrix; |
| 1346 | SkRect bitmapBounds, tmpSrc; |
| 1347 | |
| 1348 | bitmapBounds.set(0, 0, |
| 1349 | SkIntToScalar(bitmap.width()), |
| 1350 | SkIntToScalar(bitmap.height())); |
| 1351 | |
| 1352 | // Compute matrix from the two rectangles |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1353 | if (src) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1354 | tmpSrc = *src; |
| 1355 | } else { |
| 1356 | tmpSrc = bitmapBounds; |
| 1357 | } |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1358 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1359 | matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit); |
| 1360 | |
| 1361 | // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null. |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1362 | if (src) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1363 | if (!bitmapBounds.contains(tmpSrc)) { |
| 1364 | if (!tmpSrc.intersect(bitmapBounds)) { |
| 1365 | return; // nothing to draw |
| 1366 | } |
| 1367 | } |
| 1368 | } |
| 1369 | |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 1370 | SkRect tmpDst; |
| 1371 | matrix.mapRect(&tmpDst, tmpSrc); |
| 1372 | |
| 1373 | SkTCopyOnFirstWrite<SkDraw> draw(origDraw); |
| 1374 | if (0 != tmpDst.fLeft || 0 != tmpDst.fTop) { |
| 1375 | // Translate so that tempDst's top left is at the origin. |
| 1376 | matrix = *origDraw.fMatrix; |
| 1377 | matrix.preTranslate(tmpDst.fLeft, tmpDst.fTop); |
| 1378 | draw.writable()->fMatrix = &matrix; |
| 1379 | } |
| 1380 | SkSize dstSize; |
| 1381 | dstSize.fWidth = tmpDst.width(); |
| 1382 | dstSize.fHeight = tmpDst.height(); |
| 1383 | |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1384 | this->drawBitmapCommon(*draw, bitmap, &tmpSrc, &dstSize, paint, constraint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1385 | } |
| 1386 | |
| 1387 | void SkGpuDevice::drawDevice(const SkDraw& draw, SkBaseDevice* device, |
| 1388 | int x, int y, const SkPaint& paint) { |
| 1389 | // clear of the source device must occur before CHECK_SHOULD_DRAW |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 1390 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawDevice", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1391 | SkGpuDevice* dev = static_cast<SkGpuDevice*>(device); |
kkinnunen | 2e4414e | 2015-02-19 07:20:40 -0800 | [diff] [blame] | 1392 | |
| 1393 | // TODO: If the source device covers the whole of this device, we could |
| 1394 | // omit fNeedsClear -related flushing. |
| 1395 | // TODO: if source needs clear, we could maybe omit the draw fully. |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1396 | |
| 1397 | // drawDevice is defined to be in device coords. |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1398 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1399 | |
| 1400 | GrRenderTarget* devRT = dev->accessRenderTarget(); |
| 1401 | GrTexture* devTex; |
| 1402 | if (NULL == (devTex = devRT->asTexture())) { |
| 1403 | return; |
| 1404 | } |
| 1405 | |
robertphillips | 7b9e8a4 | 2014-12-11 08:20:31 -0800 | [diff] [blame] | 1406 | const SkImageInfo ii = dev->imageInfo(); |
| 1407 | int w = ii.width(); |
| 1408 | int h = ii.height(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1409 | |
| 1410 | SkImageFilter* filter = paint.getImageFilter(); |
| 1411 | // This bitmap will own the filtered result as a texture. |
| 1412 | SkBitmap filteredBitmap; |
| 1413 | |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1414 | if (filter) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1415 | SkIPoint offset = SkIPoint::Make(0, 0); |
| 1416 | SkMatrix matrix(*draw.fMatrix); |
| 1417 | matrix.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y)); |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1418 | SkIRect clipBounds = SkIRect::MakeWH(devTex->width(), devTex->height()); |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 1419 | // This cache is transient, and is freed (along with all its contained |
| 1420 | // textures) when it goes out of scope. |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 1421 | SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache()); |
commit-bot@chromium.org | f7efa50 | 2014-04-11 18:57:00 +0000 | [diff] [blame] | 1422 | SkImageFilter::Context ctx(matrix, clipBounds, cache); |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 1423 | if (this->filterTexture(fContext, devTex, device->width(), device->height(), |
| 1424 | filter, ctx, &filteredBitmap, &offset)) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1425 | devTex = filteredBitmap.getTexture(); |
| 1426 | w = filteredBitmap.width(); |
| 1427 | h = filteredBitmap.height(); |
| 1428 | x += offset.fX; |
| 1429 | y += offset.fY; |
| 1430 | } else { |
| 1431 | return; |
| 1432 | } |
| 1433 | } |
| 1434 | |
| 1435 | GrPaint grPaint; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 1436 | grPaint.addColorTextureProcessor(devTex, SkMatrix::I()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1437 | |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1438 | if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, |
| 1439 | SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) { |
| 1440 | return; |
| 1441 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1442 | |
| 1443 | SkRect dstRect = SkRect::MakeXYWH(SkIntToScalar(x), |
| 1444 | SkIntToScalar(y), |
| 1445 | SkIntToScalar(w), |
| 1446 | SkIntToScalar(h)); |
| 1447 | |
| 1448 | // The device being drawn may not fill up its texture (e.g. saveLayer uses approximate |
| 1449 | // scratch texture). |
| 1450 | SkRect srcRect = SkRect::MakeWH(SK_Scalar1 * w / devTex->width(), |
| 1451 | SK_Scalar1 * h / devTex->height()); |
| 1452 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 1453 | fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, SkMatrix::I(), dstRect, |
| 1454 | srcRect); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1455 | } |
| 1456 | |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 1457 | bool SkGpuDevice::canHandleImageFilter(const SkImageFilter* filter) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1458 | return filter->canFilterImageGPU(); |
| 1459 | } |
| 1460 | |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 1461 | bool SkGpuDevice::filterImage(const SkImageFilter* filter, const SkBitmap& src, |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 1462 | const SkImageFilter::Context& ctx, |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1463 | SkBitmap* result, SkIPoint* offset) { |
| 1464 | // want explicitly our impl, so guard against a subclass of us overriding it |
| 1465 | if (!this->SkGpuDevice::canHandleImageFilter(filter)) { |
| 1466 | return false; |
| 1467 | } |
| 1468 | |
| 1469 | SkAutoLockPixels alp(src, !src.getTexture()); |
| 1470 | if (!src.getTexture() && !src.readyToDraw()) { |
| 1471 | return false; |
| 1472 | } |
| 1473 | |
| 1474 | GrTexture* texture; |
| 1475 | // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup |
| 1476 | // must be pushed upstack. |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 1477 | AutoBitmapTexture abt(fContext, src, NULL, &texture); |
robertphillips | f83be82 | 2015-04-30 08:55:06 -0700 | [diff] [blame] | 1478 | if (!texture) { |
| 1479 | return false; |
| 1480 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1481 | |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 1482 | return this->filterTexture(fContext, texture, src.width(), src.height(), |
| 1483 | filter, ctx, result, offset); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1484 | } |
| 1485 | |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1486 | static bool wrap_as_bm(const SkImage* image, SkBitmap* bm) { |
bsalomon | 5581236 | 2015-06-10 08:49:28 -0700 | [diff] [blame] | 1487 | GrTexture* tex = as_IB(image)->getTexture(); |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1488 | if (tex) { |
reed | 8b26b99 | 2015-05-07 15:36:17 -0700 | [diff] [blame] | 1489 | GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), bm); |
| 1490 | return true; |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1491 | } else { |
reed | 8b26b99 | 2015-05-07 15:36:17 -0700 | [diff] [blame] | 1492 | return as_IB(image)->getROPixels(bm); |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1493 | } |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1494 | } |
| 1495 | |
| 1496 | void SkGpuDevice::drawImage(const SkDraw& draw, const SkImage* image, SkScalar x, SkScalar y, |
| 1497 | const SkPaint& paint) { |
| 1498 | SkBitmap bm; |
| 1499 | if (wrap_as_bm(image, &bm)) { |
| 1500 | this->drawBitmap(draw, bm, SkMatrix::MakeTrans(x, y), paint); |
| 1501 | } |
| 1502 | } |
| 1503 | |
| 1504 | void SkGpuDevice::drawImageRect(const SkDraw& draw, const SkImage* image, const SkRect* src, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 1505 | const SkRect& dst, const SkPaint& paint, |
| 1506 | SkCanvas::SrcRectConstraint constraint) { |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1507 | SkBitmap bm; |
| 1508 | if (wrap_as_bm(image, &bm)) { |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 1509 | this->drawBitmapRect(draw, bm, src, dst, paint, constraint); |
reed | a85d4d0 | 2015-05-06 12:56:48 -0700 | [diff] [blame] | 1510 | } |
| 1511 | } |
| 1512 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1513 | /////////////////////////////////////////////////////////////////////////////// |
| 1514 | |
| 1515 | // must be in SkCanvas::VertexMode order |
| 1516 | static const GrPrimitiveType gVertexMode2PrimitiveType[] = { |
| 1517 | kTriangles_GrPrimitiveType, |
| 1518 | kTriangleStrip_GrPrimitiveType, |
| 1519 | kTriangleFan_GrPrimitiveType, |
| 1520 | }; |
| 1521 | |
| 1522 | void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode, |
| 1523 | int vertexCount, const SkPoint vertices[], |
| 1524 | const SkPoint texs[], const SkColor colors[], |
| 1525 | SkXfermode* xmode, |
| 1526 | const uint16_t indices[], int indexCount, |
| 1527 | const SkPaint& paint) { |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1528 | CHECK_SHOULD_DRAW(draw); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 1529 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawVertices", fContext); |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1530 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1531 | const uint16_t* outIndices; |
| 1532 | SkAutoTDeleteArray<uint16_t> outAlloc(NULL); |
| 1533 | GrPrimitiveType primType; |
| 1534 | GrPaint grPaint; |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1535 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1536 | // If both textures and vertex-colors are NULL, strokes hairlines with the paint's color. |
| 1537 | if ((NULL == texs || NULL == paint.getShader()) && NULL == colors) { |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1538 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1539 | texs = NULL; |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1540 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1541 | SkPaint copy(paint); |
| 1542 | copy.setStyle(SkPaint::kStroke_Style); |
| 1543 | copy.setStrokeWidth(0); |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1544 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1545 | // we ignore the shader if texs is null. |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1546 | if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, copy, |
| 1547 | SkColor2GrColor(copy.getColor()), NULL == colors, &grPaint)) { |
| 1548 | return; |
| 1549 | } |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1550 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1551 | primType = kLines_GrPrimitiveType; |
| 1552 | int triangleCount = 0; |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1553 | int n = (NULL == indices) ? vertexCount : indexCount; |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1554 | switch (vmode) { |
| 1555 | case SkCanvas::kTriangles_VertexMode: |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1556 | triangleCount = n / 3; |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1557 | break; |
| 1558 | case SkCanvas::kTriangleStrip_VertexMode: |
| 1559 | case SkCanvas::kTriangleFan_VertexMode: |
bsalomon | a098dd4 | 2014-08-06 11:01:44 -0700 | [diff] [blame] | 1560 | triangleCount = n - 2; |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1561 | break; |
| 1562 | } |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1563 | |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1564 | VertState state(vertexCount, indices, indexCount); |
| 1565 | VertState::Proc vertProc = state.chooseProc(vmode); |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1566 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1567 | //number of indices for lines per triangle with kLines |
| 1568 | indexCount = triangleCount * 6; |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1569 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1570 | outAlloc.reset(SkNEW_ARRAY(uint16_t, indexCount)); |
| 1571 | outIndices = outAlloc.get(); |
| 1572 | uint16_t* auxIndices = outAlloc.get(); |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1573 | int i = 0; |
| 1574 | while (vertProc(&state)) { |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1575 | auxIndices[i] = state.f0; |
| 1576 | auxIndices[i + 1] = state.f1; |
| 1577 | auxIndices[i + 2] = state.f1; |
| 1578 | auxIndices[i + 3] = state.f2; |
| 1579 | auxIndices[i + 4] = state.f2; |
| 1580 | auxIndices[i + 5] = state.f0; |
commit-bot@chromium.org | 559a883 | 2014-05-30 10:08:22 +0000 | [diff] [blame] | 1581 | i += 6; |
| 1582 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1583 | } else { |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1584 | outIndices = indices; |
| 1585 | primType = gVertexMode2PrimitiveType[vmode]; |
mtklein | 533eb78 | 2014-08-27 10:39:42 -0700 | [diff] [blame] | 1586 | |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1587 | if (NULL == texs || NULL == paint.getShader()) { |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1588 | if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, |
| 1589 | SkColor2GrColor(paint.getColor()), |
| 1590 | NULL == colors, &grPaint)) { |
| 1591 | return; |
| 1592 | } |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1593 | } else { |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1594 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, |
| 1595 | NULL == colors, &grPaint)) { |
| 1596 | return; |
| 1597 | } |
dandov | 32a311b | 2014-07-15 19:46:26 -0700 | [diff] [blame] | 1598 | } |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1599 | } |
| 1600 | |
mtklein | 2583b62 | 2014-06-04 08:20:41 -0700 | [diff] [blame] | 1601 | #if 0 |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1602 | if (xmode && texs && colors) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1603 | if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) { |
| 1604 | SkDebugf("Unsupported vertex-color/texture xfer mode.\n"); |
mtklein | 2583b62 | 2014-06-04 08:20:41 -0700 | [diff] [blame] | 1605 | return; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1606 | } |
| 1607 | } |
mtklein | 2583b62 | 2014-06-04 08:20:41 -0700 | [diff] [blame] | 1608 | #endif |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1609 | |
| 1610 | SkAutoSTMalloc<128, GrColor> convertedColors(0); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1611 | if (colors) { |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1612 | // need to convert byte order and from non-PM to PM |
| 1613 | convertedColors.reset(vertexCount); |
commit-bot@chromium.org | c93e681 | 2014-05-23 08:09:26 +0000 | [diff] [blame] | 1614 | SkColor color; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1615 | for (int i = 0; i < vertexCount; ++i) { |
commit-bot@chromium.org | c93e681 | 2014-05-23 08:09:26 +0000 | [diff] [blame] | 1616 | color = colors[i]; |
| 1617 | if (paint.getAlpha() != 255) { |
| 1618 | color = SkColorSetA(color, SkMulDiv255Round(SkColorGetA(color), paint.getAlpha())); |
| 1619 | } |
| 1620 | convertedColors[i] = SkColor2GrColor(color); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1621 | } |
| 1622 | colors = convertedColors.get(); |
| 1623 | } |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 1624 | fDrawContext->drawVertices(fRenderTarget, |
| 1625 | fClip, |
| 1626 | grPaint, |
| 1627 | *draw.fMatrix, |
| 1628 | primType, |
| 1629 | vertexCount, |
| 1630 | vertices, |
| 1631 | texs, |
| 1632 | colors, |
| 1633 | outIndices, |
| 1634 | indexCount); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1635 | } |
| 1636 | |
| 1637 | /////////////////////////////////////////////////////////////////////////////// |
| 1638 | |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1639 | void SkGpuDevice::drawAtlas(const SkDraw& draw, const SkImage* atlas, const SkRSXform xform[], |
reed | ca10953 | 2015-06-25 16:25:25 -0700 | [diff] [blame] | 1640 | const SkRect texRect[], const SkColor colors[], int count, |
| 1641 | SkXfermode::Mode mode, const SkPaint& paint) { |
| 1642 | if (paint.isAntiAlias()) { |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1643 | this->INHERITED::drawAtlas(draw, atlas, xform, texRect, colors, count, mode, paint); |
reed | ca10953 | 2015-06-25 16:25:25 -0700 | [diff] [blame] | 1644 | return; |
| 1645 | } |
| 1646 | |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1647 | CHECK_SHOULD_DRAW(draw); |
| 1648 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext); |
| 1649 | |
reed | ca10953 | 2015-06-25 16:25:25 -0700 | [diff] [blame] | 1650 | SkPaint p(paint); |
| 1651 | p.setShader(atlas->newShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref(); |
| 1652 | |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1653 | GrPaint grPaint; |
| 1654 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, p, *draw.fMatrix, !colors, &grPaint)) { |
| 1655 | return; |
reed | ca10953 | 2015-06-25 16:25:25 -0700 | [diff] [blame] | 1656 | } |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1657 | |
| 1658 | SkDEBUGCODE(this->validate();) |
| 1659 | |
| 1660 | #if 0 |
robertphillips | 29ccdf8 | 2015-07-24 10:20:45 -0700 | [diff] [blame] | 1661 | if (colors) { |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1662 | if (SkXfermode::kModulate_Mode != mode) { |
| 1663 | SkDebugf("Unsupported vertex-color/texture xfer mode.\n"); |
| 1664 | return; |
robertphillips | 29ccdf8 | 2015-07-24 10:20:45 -0700 | [diff] [blame] | 1665 | } |
| 1666 | } |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 1667 | #endif |
| 1668 | |
| 1669 | fDrawContext->drawAtlas(fRenderTarget, fClip, grPaint, *draw.fMatrix, |
| 1670 | count, xform, texRect, colors); |
reed | ca10953 | 2015-06-25 16:25:25 -0700 | [diff] [blame] | 1671 | } |
| 1672 | |
| 1673 | /////////////////////////////////////////////////////////////////////////////// |
| 1674 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1675 | void SkGpuDevice::drawText(const SkDraw& draw, const void* text, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1676 | size_t byteLength, SkScalar x, SkScalar y, |
| 1677 | const SkPaint& paint) { |
| 1678 | CHECK_SHOULD_DRAW(draw); |
egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 1679 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1680 | |
jvanverth | 8c27a18 | 2014-10-14 08:45:50 -0700 | [diff] [blame] | 1681 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1682 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 1683 | return; |
| 1684 | } |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1685 | |
jvanverth | 8c27a18 | 2014-10-14 08:45:50 -0700 | [diff] [blame] | 1686 | SkDEBUGCODE(this->validate();) |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1687 | |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 1688 | fDrawContext->drawText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix, |
joshualitt | 6e8cd96 | 2015-03-20 10:30:14 -0700 | [diff] [blame] | 1689 | (const char *)text, byteLength, x, y, draw.fClip->getBounds()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1690 | } |
| 1691 | |
fmalita | 05c4a43 | 2014-09-29 06:29:53 -0700 | [diff] [blame] | 1692 | void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text, size_t byteLength, |
| 1693 | const SkScalar pos[], int scalarsPerPos, |
| 1694 | const SkPoint& offset, const SkPaint& paint) { |
egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 1695 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPosText", fContext); |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 1696 | CHECK_SHOULD_DRAW(draw); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1697 | |
jvanverth | 8c27a18 | 2014-10-14 08:45:50 -0700 | [diff] [blame] | 1698 | GrPaint grPaint; |
bsalomon | bed83a6 | 2015-04-15 14:18:34 -0700 | [diff] [blame] | 1699 | if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) { |
| 1700 | return; |
| 1701 | } |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1702 | |
jvanverth | 8c27a18 | 2014-10-14 08:45:50 -0700 | [diff] [blame] | 1703 | SkDEBUGCODE(this->validate();) |
commit-bot@chromium.org | 8128d8c | 2013-12-19 16:12:25 +0000 | [diff] [blame] | 1704 | |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 1705 | fDrawContext->drawPosText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix, |
joshualitt | 6e8cd96 | 2015-03-20 10:30:14 -0700 | [diff] [blame] | 1706 | (const char *)text, byteLength, pos, scalarsPerPos, offset, |
| 1707 | draw.fClip->getBounds()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1708 | } |
| 1709 | |
joshualitt | 9c32818 | 2015-03-23 08:13:04 -0700 | [diff] [blame] | 1710 | void SkGpuDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y, |
| 1711 | const SkPaint& paint, SkDrawFilter* drawFilter) { |
| 1712 | GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawTextBlob", fContext); |
| 1713 | CHECK_SHOULD_DRAW(draw); |
| 1714 | |
| 1715 | SkDEBUGCODE(this->validate();) |
| 1716 | |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 1717 | fDrawContext->drawTextBlob(fRenderTarget, fClip, paint, *draw.fMatrix, |
robertphillips | ccb1b57 | 2015-05-27 11:02:55 -0700 | [diff] [blame] | 1718 | blob, x, y, drawFilter, draw.fClip->getBounds()); |
joshualitt | 9c32818 | 2015-03-23 08:13:04 -0700 | [diff] [blame] | 1719 | } |
| 1720 | |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1721 | /////////////////////////////////////////////////////////////////////////////// |
| 1722 | |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 1723 | bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const { |
robertphillips | 9c240a1 | 2015-05-28 07:45:59 -0700 | [diff] [blame] | 1724 | return GrTextContext::ShouldDisableLCD(paint); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1725 | } |
| 1726 | |
| 1727 | void SkGpuDevice::flush() { |
| 1728 | DO_DEFERRED_CLEAR(); |
bsalomon | c49e868 | 2015-06-30 11:37:35 -0700 | [diff] [blame] | 1729 | fRenderTarget->prepareForExternalIO(); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1730 | } |
| 1731 | |
| 1732 | /////////////////////////////////////////////////////////////////////////////// |
| 1733 | |
reed | 76033be | 2015-03-14 10:54:31 -0700 | [diff] [blame] | 1734 | SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) { |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 1735 | GrSurfaceDesc desc; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1736 | desc.fConfig = fRenderTarget->config(); |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 1737 | desc.fFlags = kRenderTarget_GrSurfaceFlag; |
fmalita | 6987dca | 2014-11-13 08:33:37 -0800 | [diff] [blame] | 1738 | desc.fWidth = cinfo.fInfo.width(); |
| 1739 | desc.fHeight = cinfo.fInfo.height(); |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1740 | desc.fSampleCnt = fRenderTarget->desc().fSampleCnt; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1741 | |
| 1742 | SkAutoTUnref<GrTexture> texture; |
| 1743 | // Skia's convention is to only clear a device if it is non-opaque. |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 1744 | InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents; |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1745 | |
hcm | 4396fa5 | 2014-10-27 21:43:30 -0700 | [diff] [blame] | 1746 | // layers are never draw in repeat modes, so we can request an approx |
| 1747 | // match and ignore any padding. |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 1748 | if (kNever_TileUsage == cinfo.fTileUsage) { |
| 1749 | texture.reset(fContext->textureProvider()->createApproxTexture(desc)); |
| 1750 | } else { |
| 1751 | texture.reset(fContext->textureProvider()->createTexture(desc, true)); |
| 1752 | } |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 1753 | |
| 1754 | if (texture) { |
robertphillips | 7b05ff1 | 2015-06-19 14:14:54 -0700 | [diff] [blame] | 1755 | SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry); |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 1756 | return SkGpuDevice::Create( |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 1757 | texture->asRenderTarget(), cinfo.fInfo.width(), cinfo.fInfo.height(), &props, init); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1758 | } else { |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 1759 | SkErrorInternals::SetError( kInternalError_SkError, |
reed | 61f501f | 2015-04-29 08:34:00 -0700 | [diff] [blame] | 1760 | "---- failed to create gpu device texture [%d %d]\n", |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 1761 | cinfo.fInfo.width(), cinfo.fInfo.height()); |
skia.committer@gmail.com | 11a253b | 2013-11-12 07:02:05 +0000 | [diff] [blame] | 1762 | return NULL; |
| 1763 | } |
| 1764 | } |
| 1765 | |
reed | 4a8126e | 2014-09-22 07:29:03 -0700 | [diff] [blame] | 1766 | SkSurface* SkGpuDevice::newSurface(const SkImageInfo& info, const SkSurfaceProps& props) { |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 1767 | // TODO: Change the signature of newSurface to take a budgeted parameter. |
| 1768 | static const SkSurface::Budgeted kBudgeted = SkSurface::kNo_Budgeted; |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1769 | return SkSurface::NewRenderTarget(fContext, kBudgeted, info, fRenderTarget->desc().fSampleCnt, |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 1770 | &props); |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 1771 | } |
| 1772 | |
robertphillips | 30d2cc6 | 2014-09-24 08:52:18 -0700 | [diff] [blame] | 1773 | bool SkGpuDevice::EXPERIMENTAL_drawPicture(SkCanvas* mainCanvas, const SkPicture* mainPicture, |
reed | d5fa1a4 | 2014-08-09 11:08:05 -0700 | [diff] [blame] | 1774 | const SkMatrix* matrix, const SkPaint* paint) { |
robertphillips | 63242d7 | 2014-12-04 08:31:02 -0800 | [diff] [blame] | 1775 | #ifndef SK_IGNORE_GPU_LAYER_HOISTING |
robertphillips | 30d7841 | 2014-11-24 09:49:17 -0800 | [diff] [blame] | 1776 | // todo: should handle this natively |
| 1777 | if (paint) { |
reed | d5fa1a4 | 2014-08-09 11:08:05 -0700 | [diff] [blame] | 1778 | return false; |
| 1779 | } |
| 1780 | |
mtklein | 9db912c | 2015-05-19 11:11:26 -0700 | [diff] [blame] | 1781 | const SkBigPicture::AccelData* data = NULL; |
| 1782 | if (const SkBigPicture* bp = mainPicture->asSkBigPicture()) { |
| 1783 | data = bp->accelData(); |
| 1784 | } |
robertphillips | 81f71b6 | 2014-11-11 04:54:49 -0800 | [diff] [blame] | 1785 | if (!data) { |
| 1786 | return false; |
| 1787 | } |
| 1788 | |
robertphillips | e5524cd | 2015-02-20 12:30:26 -0800 | [diff] [blame] | 1789 | const SkLayerInfo *gpuData = static_cast<const SkLayerInfo*>(data); |
| 1790 | if (0 == gpuData->numBlocks()) { |
| 1791 | return false; |
commit-bot@chromium.org | 8ddc26b | 2014-03-31 17:55:12 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1794 | SkTDArray<GrHoistedLayer> atlasedNeedRendering, atlasedRecycled; |
robertphillips | 1c4c528 | 2014-09-18 12:03:15 -0700 | [diff] [blame] | 1795 | |
robertphillips | e5524cd | 2015-02-20 12:30:26 -0800 | [diff] [blame] | 1796 | SkIRect iBounds; |
| 1797 | if (!mainCanvas->getClipDeviceBounds(&iBounds)) { |
| 1798 | return false; |
| 1799 | } |
| 1800 | |
| 1801 | SkRect clipBounds = SkRect::Make(iBounds); |
| 1802 | |
| 1803 | SkMatrix initialMatrix = mainCanvas->getTotalMatrix(); |
| 1804 | |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1805 | GrLayerHoister::FindLayersToAtlas(fContext, mainPicture, |
robertphillips | 30d7841 | 2014-11-24 09:49:17 -0800 | [diff] [blame] | 1806 | initialMatrix, |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1807 | clipBounds, |
robertphillips | a63f32e | 2014-11-10 08:10:42 -0800 | [diff] [blame] | 1808 | &atlasedNeedRendering, &atlasedRecycled, |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1809 | fRenderTarget->numColorSamples()); |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1810 | |
| 1811 | GrLayerHoister::DrawLayersToAtlas(fContext, atlasedNeedRendering); |
| 1812 | |
| 1813 | SkTDArray<GrHoistedLayer> needRendering, recycled; |
| 1814 | |
robertphillips | e5524cd | 2015-02-20 12:30:26 -0800 | [diff] [blame] | 1815 | SkAutoCanvasMatrixPaint acmp(mainCanvas, matrix, paint, mainPicture->cullRect()); |
| 1816 | |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1817 | GrLayerHoister::FindLayersToHoist(fContext, mainPicture, |
robertphillips | 30d7841 | 2014-11-24 09:49:17 -0800 | [diff] [blame] | 1818 | initialMatrix, |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1819 | clipBounds, |
robertphillips | a63f32e | 2014-11-10 08:10:42 -0800 | [diff] [blame] | 1820 | &needRendering, &recycled, |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1821 | fRenderTarget->numColorSamples()); |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1822 | |
| 1823 | GrLayerHoister::DrawLayers(fContext, needRendering); |
robertphillips@google.com | beb1af2 | 2014-05-07 21:31:09 +0000 | [diff] [blame] | 1824 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1825 | // Render the entire picture using new layers |
robertphillips | e99d499 | 2014-12-03 07:33:57 -0800 | [diff] [blame] | 1826 | GrRecordReplaceDraw(mainPicture, mainCanvas, fContext->getLayerCache(), |
| 1827 | initialMatrix, NULL); |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1828 | |
robertphillips | fd61ed0 | 2014-10-28 07:21:44 -0700 | [diff] [blame] | 1829 | GrLayerHoister::UnlockLayers(fContext, needRendering); |
| 1830 | GrLayerHoister::UnlockLayers(fContext, recycled); |
| 1831 | GrLayerHoister::UnlockLayers(fContext, atlasedNeedRendering); |
| 1832 | GrLayerHoister::UnlockLayers(fContext, atlasedRecycled); |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1833 | |
| 1834 | return true; |
robertphillips | 63242d7 | 2014-12-04 08:31:02 -0800 | [diff] [blame] | 1835 | #else |
| 1836 | return false; |
| 1837 | #endif |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 1838 | } |
| 1839 | |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 1840 | SkImageFilter::Cache* SkGpuDevice::getImageFilterCache() { |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 1841 | // We always return a transient cache, so it is freed after each |
| 1842 | // filter traversal. |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 1843 | return SkImageFilter::Cache::Create(kDefaultImageFilterCacheSize); |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 1844 | } |
reed | f037e0b | 2014-10-30 11:34:15 -0700 | [diff] [blame] | 1845 | |
| 1846 | #endif |