blob: f937b16d55e166f0d1481186752e4507a2ed4816 [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 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.
reed@google.comac10a2d2010-12-22 21:39:39 +00006 */
7
reedb5d32632015-09-29 13:36:50 -07008
reed@google.comac10a2d2010-12-22 21:39:39 +00009#include "SkGr.h"
bsalomon0d996862016-03-09 18:44:43 -080010#include "SkGrPriv.h"
egdaniel378092f2014-12-03 10:40:13 -080011
bsalomon76228632015-05-29 08:02:10 -070012#include "GrCaps.h"
bsalomonf276ac52015-10-09 13:36:42 -070013#include "GrContext.h"
bsalomon045802d2015-10-20 07:58:01 -070014#include "GrGpuResourcePriv.h"
bsalomonc55271f2015-11-09 11:55:57 -080015#include "GrImageIDTextureAdjuster.h"
cblume55f2d2d2016-02-26 13:20:48 -080016#include "GrTextureParamsAdjuster.h"
brianosmanfe199872016-06-13 07:59:48 -070017#include "GrTexturePriv.h"
cblume55f2d2d2016-02-26 13:20:48 -080018#include "GrTypes.h"
egdaniel378092f2014-12-03 10:40:13 -080019#include "GrXferProcessor.h"
reed43fe6182015-09-08 08:37:36 -070020#include "GrYUVProvider.h"
21
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +000022#include "SkColorFilter.h"
commit-bot@chromium.orgea476e12013-10-14 18:29:23 +000023#include "SkConfig8888.h"
bsalomonb4d40ef2015-07-15 10:12:16 -070024#include "SkCanvas.h"
krajcevski9c0e6292014-06-02 07:38:14 -070025#include "SkData.h"
joshualitt5f5a8d72015-02-25 14:09:45 -080026#include "SkErrorInternals.h"
reed8b26b992015-05-07 15:36:17 -070027#include "SkGrPixelRef.h"
commit-bot@chromium.org50a30432013-10-24 17:44:27 +000028#include "SkMessageBus.h"
cblume55f2d2d2016-02-26 13:20:48 -080029#include "SkMipMap.h"
commit-bot@chromium.org50a30432013-10-24 17:44:27 +000030#include "SkPixelRef.h"
sugoi692135f2015-01-19 10:10:27 -080031#include "SkResourceCache.h"
cblume55f2d2d2016-02-26 13:20:48 -080032#include "SkTemplates.h"
sugoi692135f2015-01-19 10:10:27 -080033#include "SkYUVPlanesCache.h"
joshualitt9bc39542015-08-12 12:57:54 -070034#include "effects/GrBicubicEffect.h"
bsalomonf1b7a1d2015-09-28 06:26:28 -070035#include "effects/GrConstColorProcessor.h"
krajcevskif461a8f2014-06-19 14:14:06 -070036#include "effects/GrDitherEffect.h"
egdaniel378092f2014-12-03 10:40:13 -080037#include "effects/GrPorterDuffXferProcessor.h"
bsalomonf1b7a1d2015-09-28 06:26:28 -070038#include "effects/GrXfermodeFragmentProcessor.h"
bsalomonf267c1e2016-02-01 13:16:14 -080039#include "effects/GrYUVEffect.h"
krajcevski9c0e6292014-06-02 07:38:14 -070040
krajcevski8c111f72014-06-02 13:51:34 -070041#ifndef SK_IGNORE_ETC1_SUPPORT
krajcevski99ffe242014-06-03 13:04:35 -070042# include "ktx.h"
krajcevski9c0e6292014-06-02 07:38:14 -070043# include "etc1.h"
44#endif
reed@google.comac10a2d2010-12-22 21:39:39 +000045
brianosmana6359362016-03-21 06:55:37 -070046GrSurfaceDesc GrImageInfoToSurfaceDesc(const SkImageInfo& info, const GrCaps& caps) {
bsalomon466c2c42015-10-16 12:01:18 -070047 GrSurfaceDesc desc;
48 desc.fFlags = kNone_GrSurfaceFlags;
49 desc.fWidth = info.width();
50 desc.fHeight = info.height();
brianosmana6359362016-03-21 06:55:37 -070051 desc.fConfig = SkImageInfo2GrPixelConfig(info, caps);
bsalomon466c2c42015-10-16 12:01:18 -070052 desc.fSampleCnt = 0;
53 return desc;
54}
55
bsalomon045802d2015-10-20 07:58:01 -070056void GrMakeKeyFromImageID(GrUniqueKey* key, uint32_t imageID, const SkIRect& imageBounds) {
57 SkASSERT(key);
58 SkASSERT(imageID);
59 SkASSERT(!imageBounds.isEmpty());
60 static const GrUniqueKey::Domain kImageIDDomain = GrUniqueKey::GenerateDomain();
61 GrUniqueKey::Builder builder(key, kImageIDDomain, 5);
bsalomon466c2c42015-10-16 12:01:18 -070062 builder[0] = imageID;
bsalomon045802d2015-10-20 07:58:01 -070063 builder[1] = imageBounds.fLeft;
64 builder[2] = imageBounds.fTop;
65 builder[3] = imageBounds.fRight;
66 builder[4] = imageBounds.fBottom;
bsalomon466c2c42015-10-16 12:01:18 -070067}
68
69GrPixelConfig GrIsCompressedTextureDataSupported(GrContext* ctx, SkData* data,
70 int expectedW, int expectedH,
71 const void** outStartOfDataToUpload) {
72 *outStartOfDataToUpload = nullptr;
73#ifndef SK_IGNORE_ETC1_SUPPORT
74 if (!ctx->caps()->isConfigTexturable(kETC1_GrPixelConfig)) {
75 return kUnknown_GrPixelConfig;
76 }
77
78 const uint8_t* bytes = data->bytes();
79 if (data->size() > ETC_PKM_HEADER_SIZE && etc1_pkm_is_valid(bytes)) {
80 // Does the data match the dimensions of the bitmap? If not,
81 // then we don't know how to scale the image to match it...
82 if (etc1_pkm_get_width(bytes) != (unsigned)expectedW ||
83 etc1_pkm_get_height(bytes) != (unsigned)expectedH)
84 {
85 return kUnknown_GrPixelConfig;
86 }
87
88 *outStartOfDataToUpload = bytes + ETC_PKM_HEADER_SIZE;
89 return kETC1_GrPixelConfig;
scroggob8e09602016-04-12 07:41:22 -070090 } else if (SkKTXFile::is_ktx(bytes, data->size())) {
bsalomon466c2c42015-10-16 12:01:18 -070091 SkKTXFile ktx(data);
92
93 // Is it actually an ETC1 texture?
94 if (!ktx.isCompressedFormat(SkTextureCompressor::kETC1_Format)) {
95 return kUnknown_GrPixelConfig;
96 }
97
98 // Does the data match the dimensions of the bitmap? If not,
99 // then we don't know how to scale the image to match it...
100 if (ktx.width() != expectedW || ktx.height() != expectedH) {
101 return kUnknown_GrPixelConfig;
102 }
103
104 *outStartOfDataToUpload = ktx.pixelData();
105 return kETC1_GrPixelConfig;
106 }
107#endif
108 return kUnknown_GrPixelConfig;
109}
110
bsalomon045802d2015-10-20 07:58:01 -0700111//////////////////////////////////////////////////////////////////////////////
bsalomon@google.com5782d712011-01-21 21:03:59 +0000112
bsalomon045802d2015-10-20 07:58:01 -0700113/**
114 * Fill out buffer with the compressed format Ganesh expects from a colortable
115 * based bitmap. [palette (colortable) + indices].
116 *
117 * At the moment Ganesh only supports 8bit version. If Ganesh allowed we others
118 * we could detect that the colortable.count is <= 16, and then repack the
119 * indices as nibbles to save RAM, but it would take more time (i.e. a lot
120 * slower than memcpy), so skipping that for now.
121 *
122 * Ganesh wants a full 256 palette entry, even though Skia's ctable is only as big
123 * as the colortable.count says it is.
reed@google.comac10a2d2010-12-22 21:39:39 +0000124 */
bsalomon0d996862016-03-09 18:44:43 -0800125static void build_index8_data(void* buffer, const SkPixmap& pixmap) {
126 SkASSERT(kIndex_8_SkColorType == pixmap.colorType());
bsalomon@google.com5782d712011-01-21 21:03:59 +0000127
bsalomon0d996862016-03-09 18:44:43 -0800128 const SkColorTable* ctable = pixmap.ctable();
reed@google.comac10a2d2010-12-22 21:39:39 +0000129 char* dst = (char*)buffer;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000130
reed@google.com7111d462014-03-25 16:20:24 +0000131 const int count = ctable->count();
132
133 SkDstPixelInfo dstPI;
134 dstPI.fColorType = kRGBA_8888_SkColorType;
135 dstPI.fAlphaType = kPremul_SkAlphaType;
136 dstPI.fPixels = buffer;
137 dstPI.fRowBytes = count * sizeof(SkPMColor);
138
139 SkSrcPixelInfo srcPI;
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +0000140 srcPI.fColorType = kN32_SkColorType;
reed@google.com7111d462014-03-25 16:20:24 +0000141 srcPI.fAlphaType = kPremul_SkAlphaType;
mtklein775b8192014-12-02 09:11:25 -0800142 srcPI.fPixels = ctable->readColors();
reed@google.com7111d462014-03-25 16:20:24 +0000143 srcPI.fRowBytes = count * sizeof(SkPMColor);
144
145 srcPI.convertPixelsTo(&dstPI, count, 1);
146
reed@google.comac10a2d2010-12-22 21:39:39 +0000147 // always skip a full 256 number of entries, even if we memcpy'd fewer
bsalomond4cb9222014-08-11 14:19:09 -0700148 dst += 256 * sizeof(GrColor);
reed@google.comac10a2d2010-12-22 21:39:39 +0000149
bsalomon0d996862016-03-09 18:44:43 -0800150 if ((unsigned)pixmap.width() == pixmap.rowBytes()) {
151 memcpy(dst, pixmap.addr(), pixmap.getSafeSize());
reed@google.comac10a2d2010-12-22 21:39:39 +0000152 } else {
153 // need to trim off the extra bytes per row
bsalomon0d996862016-03-09 18:44:43 -0800154 size_t width = pixmap.width();
155 size_t rowBytes = pixmap.rowBytes();
156 const uint8_t* src = pixmap.addr8();
157 for (int y = 0; y < pixmap.height(); y++) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000158 memcpy(dst, src, width);
159 src += rowBytes;
160 dst += width;
161 }
162 }
163}
164
bsalomon045802d2015-10-20 07:58:01 -0700165/**
reed43fe6182015-09-08 08:37:36 -0700166 * Once we have made SkImages handle all lazy/deferred/generated content, the YUV apis will
167 * be gone from SkPixelRef, and we can remove this subclass entirely.
168 */
169class PixelRef_GrYUVProvider : public GrYUVProvider {
170 SkPixelRef* fPR;
171
172public:
173 PixelRef_GrYUVProvider(SkPixelRef* pr) : fPR(pr) {}
174
175 uint32_t onGetID() override { return fPR->getGenerationID(); }
msarett4984c3c2016-03-10 05:44:43 -0800176 bool onQueryYUV8(SkYUVSizeInfo* sizeInfo, SkYUVColorSpace* colorSpace) const override {
177 return fPR->queryYUV8(sizeInfo, colorSpace);
reed43fe6182015-09-08 08:37:36 -0700178 }
msarett4984c3c2016-03-10 05:44:43 -0800179 bool onGetYUV8Planes(const SkYUVSizeInfo& sizeInfo, void* planes[3]) override {
180 return fPR->getYUV8Planes(sizeInfo, planes);
reed43fe6182015-09-08 08:37:36 -0700181 }
182};
krajcevski9c0e6292014-06-02 07:38:14 -0700183
robertphillips677da9d2016-05-11 05:15:55 -0700184static sk_sp<GrTexture> create_texture_from_yuv(GrContext* ctx, const SkBitmap& bm,
185 const GrSurfaceDesc& desc) {
sugoiff58e462014-10-16 05:19:31 -0700186 // Subsets are not supported, the whole pixelRef is loaded when using YUV decoding
sugoi518d83d2014-07-21 11:37:39 -0700187 SkPixelRef* pixelRef = bm.pixelRef();
reed43fe6182015-09-08 08:37:36 -0700188 if ((nullptr == pixelRef) ||
bsalomon045802d2015-10-20 07:58:01 -0700189 (pixelRef->info().width() != bm.info().width()) ||
sugoi692135f2015-01-19 10:10:27 -0800190 (pixelRef->info().height() != bm.info().height())) {
halcanary96fcdcc2015-08-27 07:41:13 -0700191 return nullptr;
sugoi518d83d2014-07-21 11:37:39 -0700192 }
193
reed43fe6182015-09-08 08:37:36 -0700194 PixelRef_GrYUVProvider provider(pixelRef);
reed43fe6182015-09-08 08:37:36 -0700195
bsalomon045802d2015-10-20 07:58:01 -0700196 return provider.refAsTexture(ctx, desc, !bm.isVolatile());
sugoi518d83d2014-07-21 11:37:39 -0700197}
198
bsalomon045802d2015-10-20 07:58:01 -0700199static GrTexture* load_etc1_texture(GrContext* ctx, const SkBitmap &bm, GrSurfaceDesc desc) {
bsalomon466c2c42015-10-16 12:01:18 -0700200 SkAutoTUnref<SkData> data(bm.pixelRef()->refEncodedData());
201 if (!data) {
202 return nullptr;
203 }
204
205 const void* startOfTexData;
206 desc.fConfig = GrIsCompressedTextureDataSupported(ctx, data, bm.width(), bm.height(),
207 &startOfTexData);
208 if (kUnknown_GrPixelConfig == desc.fConfig) {
209 return nullptr;
210 }
211
bsalomon5ec26ae2016-02-25 08:33:02 -0800212 return ctx->textureProvider()->createTexture(desc, SkBudgeted::kYes, startOfTexData, 0);
bsalomon466c2c42015-10-16 12:01:18 -0700213}
214
bsalomon0d996862016-03-09 18:44:43 -0800215GrTexture* GrUploadBitmapToTexture(GrContext* ctx, const SkBitmap& bitmap) {
brianosmana6359362016-03-21 06:55:37 -0700216 GrSurfaceDesc desc = GrImageInfoToSurfaceDesc(bitmap.info(), *ctx->caps());
bsalomon0d996862016-03-09 18:44:43 -0800217 if (GrTexture *texture = load_etc1_texture(ctx, bitmap, desc)) {
218 return texture;
219 }
bsalomon045802d2015-10-20 07:58:01 -0700220
robertphillips677da9d2016-05-11 05:15:55 -0700221 sk_sp<GrTexture> texture(create_texture_from_yuv(ctx, bitmap, desc));
222 if (texture) {
223 return texture.release();
bsalomon0d996862016-03-09 18:44:43 -0800224 }
225
226 SkAutoLockPixels alp(bitmap);
227 if (!bitmap.readyToDraw()) {
228 return nullptr;
229 }
230 SkPixmap pixmap;
231 if (!bitmap.peekPixels(&pixmap)) {
232 return nullptr;
233 }
ericrk8bea8902016-03-18 11:52:20 -0700234 return GrUploadPixmapToTexture(ctx, pixmap, SkBudgeted::kYes);
bsalomon0d996862016-03-09 18:44:43 -0800235}
236
ericrk8bea8902016-03-18 11:52:20 -0700237GrTexture* GrUploadPixmapToTexture(GrContext* ctx, const SkPixmap& pixmap, SkBudgeted budgeted) {
bsalomon0d996862016-03-09 18:44:43 -0800238 const SkPixmap* pmap = &pixmap;
239 SkPixmap tmpPixmap;
bsalomon045802d2015-10-20 07:58:01 -0700240 SkBitmap tmpBitmap;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000241
bsalomon76228632015-05-29 08:02:10 -0700242 const GrCaps* caps = ctx->caps();
brianosmana6359362016-03-21 06:55:37 -0700243 GrSurfaceDesc desc = GrImageInfoToSurfaceDesc(pixmap.info(), *caps);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000244
brianosmana6359362016-03-21 06:55:37 -0700245 if (caps->srgbSupport() && !GrPixelConfigIsSRGB(desc.fConfig) &&
brianosmanb109b8c2016-06-16 13:03:24 -0700246 pixmap.info().colorSpace() && pixmap.info().colorSpace()->gammaCloseToSRGB()) {
247 // We were supplied an sRGB-like color space, but we don't have a suitable pixel config.
brianosmana6359362016-03-21 06:55:37 -0700248 // Convert to 8888 sRGB so we can handle the data correctly. The raster backend doesn't
249 // handle sRGB Index8 -> sRGB 8888 correctly (yet), so lie about both the source and
250 // destination (claim they're linear):
251 SkImageInfo linSrcInfo = SkImageInfo::Make(pixmap.width(), pixmap.height(),
252 pixmap.colorType(), pixmap.alphaType());
253 SkPixmap linSrcPixmap(linSrcInfo, pixmap.addr(), pixmap.rowBytes(), pixmap.ctable());
254
brianosmanb109b8c2016-06-16 13:03:24 -0700255 SkImageInfo dstInfo = SkImageInfo::Make(pixmap.width(), pixmap.height(),
256 kN32_SkColorType, kPremul_SkAlphaType,
257 sk_ref_sp(pixmap.info().colorSpace()));
258
brianosmana6359362016-03-21 06:55:37 -0700259 tmpBitmap.allocPixels(dstInfo);
260
261 SkImageInfo linDstInfo = SkImageInfo::MakeN32Premul(pixmap.width(), pixmap.height());
262 if (!linSrcPixmap.readPixels(linDstInfo, tmpBitmap.getPixels(), tmpBitmap.rowBytes())) {
263 return nullptr;
264 }
265 if (!tmpBitmap.peekPixels(&tmpPixmap)) {
266 return nullptr;
267 }
268 pmap = &tmpPixmap;
269 // must rebuild desc, since we've forced the info to be N32
270 desc = GrImageInfoToSurfaceDesc(pmap->info(), *caps);
brianosman85f92692016-03-24 06:56:32 -0700271 } else if (kGray_8_SkColorType == pixmap.colorType()) {
272 // We don't have Gray8 support as a pixel config, so expand to 8888
273
274 // We should have converted sRGB Gray8 above (if we have sRGB support):
brianosmanb109b8c2016-06-16 13:03:24 -0700275 SkASSERT(!caps->srgbSupport() || !pixmap.info().colorSpace() ||
276 !pixmap.info().colorSpace()->gammaCloseToSRGB());
brianosman85f92692016-03-24 06:56:32 -0700277
278 SkImageInfo info = SkImageInfo::MakeN32(pixmap.width(), pixmap.height(),
279 kOpaque_SkAlphaType);
280 tmpBitmap.allocPixels(info);
281 if (!pixmap.readPixels(info, tmpBitmap.getPixels(), tmpBitmap.rowBytes())) {
282 return nullptr;
283 }
284 if (!tmpBitmap.peekPixels(&tmpPixmap)) {
285 return nullptr;
286 }
287 pmap = &tmpPixmap;
288 // must rebuild desc, since we've forced the info to be N32
289 desc = GrImageInfoToSurfaceDesc(pmap->info(), *caps);
brianosmana6359362016-03-21 06:55:37 -0700290 } else if (kIndex_8_SkColorType == pixmap.colorType()) {
bsalomon76228632015-05-29 08:02:10 -0700291 if (caps->isConfigTexturable(kIndex_8_GrPixelConfig)) {
bsalomond4cb9222014-08-11 14:19:09 -0700292 size_t imageSize = GrCompressedFormatDataSize(kIndex_8_GrPixelConfig,
bsalomon0d996862016-03-09 18:44:43 -0800293 pixmap.width(), pixmap.height());
bsalomond4cb9222014-08-11 14:19:09 -0700294 SkAutoMalloc storage(imageSize);
bsalomon0d996862016-03-09 18:44:43 -0800295 build_index8_data(storage.get(), pixmap);
reed@google.comac10a2d2010-12-22 21:39:39 +0000296
297 // our compressed data will be trimmed, so pass width() for its
298 // "rowBytes", since they are the same now.
ericrk8bea8902016-03-18 11:52:20 -0700299 return ctx->textureProvider()->createTexture(desc, budgeted, storage.get(),
bsalomon0d996862016-03-09 18:44:43 -0800300 pixmap.width());
reed@google.comac10a2d2010-12-22 21:39:39 +0000301 } else {
bsalomon0d996862016-03-09 18:44:43 -0800302 SkImageInfo info = SkImageInfo::MakeN32Premul(pixmap.width(), pixmap.height());
303 tmpBitmap.allocPixels(info);
304 if (!pixmap.readPixels(info, tmpBitmap.getPixels(), tmpBitmap.rowBytes())) {
305 return nullptr;
306 }
307 if (!tmpBitmap.peekPixels(&tmpPixmap)) {
308 return nullptr;
309 }
310 pmap = &tmpPixmap;
311 // must rebuild desc, since we've forced the info to be N32
brianosmana6359362016-03-21 06:55:37 -0700312 desc = GrImageInfoToSurfaceDesc(pmap->info(), *caps);
krajcevski9c0e6292014-06-02 07:38:14 -0700313 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000314 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000315
ericrk8bea8902016-03-18 11:52:20 -0700316 return ctx->textureProvider()->createTexture(desc, budgeted, pmap->addr(),
bsalomon0d996862016-03-09 18:44:43 -0800317 pmap->rowBytes());
bsalomon37f9a262015-02-02 13:00:10 -0800318}
319
bsalomonb4d40ef2015-07-15 10:12:16 -0700320
bsalomon045802d2015-10-20 07:58:01 -0700321////////////////////////////////////////////////////////////////////////////////
322
bsalomonc55271f2015-11-09 11:55:57 -0800323void GrInstallBitmapUniqueKeyInvalidator(const GrUniqueKey& key, SkPixelRef* pixelRef) {
bsalomon89fe56b2015-10-29 10:49:28 -0700324 class Invalidator : public SkPixelRef::GenIDChangeListener {
325 public:
326 explicit Invalidator(const GrUniqueKey& key) : fMsg(key) {}
327 private:
328 GrUniqueKeyInvalidatedMessage fMsg;
329
330 void onChange() override { SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(fMsg); }
331 };
332
333 pixelRef->addGenIDChangeListener(new Invalidator(key));
334}
335
brianosman982eb7f2016-06-06 13:10:58 -0700336GrTexture* GrGenerateMipMapsAndUploadToTexture(GrContext* ctx, const SkBitmap& bitmap,
337 SkSourceGammaTreatment gammaTreatment)
cblume55f2d2d2016-02-26 13:20:48 -0800338{
brianosmana6359362016-03-21 06:55:37 -0700339 GrSurfaceDesc desc = GrImageInfoToSurfaceDesc(bitmap.info(), *ctx->caps());
cblume55f2d2d2016-02-26 13:20:48 -0800340 if (kIndex_8_SkColorType != bitmap.colorType() && !bitmap.readyToDraw()) {
341 GrTexture* texture = load_etc1_texture(ctx, bitmap, desc);
342 if (texture) {
343 return texture;
344 }
345 }
346
robertphillips677da9d2016-05-11 05:15:55 -0700347 sk_sp<GrTexture> texture(create_texture_from_yuv(ctx, bitmap, desc));
cblume55f2d2d2016-02-26 13:20:48 -0800348 if (texture) {
robertphillips677da9d2016-05-11 05:15:55 -0700349 return texture.release();
cblume55f2d2d2016-02-26 13:20:48 -0800350 }
351
352 SkASSERT(sizeof(int) <= sizeof(uint32_t));
353 if (bitmap.width() < 0 || bitmap.height() < 0) {
354 return nullptr;
355 }
356
357 SkAutoPixmapUnlock srcUnlocker;
358 if (!bitmap.requestLock(&srcUnlocker)) {
359 return nullptr;
360 }
361 const SkPixmap& pixmap = srcUnlocker.pixmap();
362 // Try to catch where we might have returned nullptr for src crbug.com/492818
363 if (nullptr == pixmap.addr()) {
364 sk_throw();
365 }
366
reed6644d932016-06-10 11:41:47 -0700367 SkAutoTDelete<SkMipMap> mipmaps(SkMipMap::Build(pixmap, gammaTreatment, nullptr));
cblume55f2d2d2016-02-26 13:20:48 -0800368 if (!mipmaps) {
369 return nullptr;
370 }
371
372 const int mipLevelCount = mipmaps->countLevels() + 1;
373 if (mipLevelCount < 1) {
374 return nullptr;
375 }
376
377 const bool isMipMapped = mipLevelCount > 1;
378 desc.fIsMipMapped = isMipMapped;
379
380 SkAutoTDeleteArray<GrMipLevel> texels(new GrMipLevel[mipLevelCount]);
381
382 texels[0].fPixels = pixmap.addr();
383 texels[0].fRowBytes = pixmap.rowBytes();
384
385 for (int i = 1; i < mipLevelCount; ++i) {
386 SkMipMap::Level generatedMipLevel;
387 mipmaps->getLevel(i - 1, &generatedMipLevel);
388 texels[i].fPixels = generatedMipLevel.fPixmap.addr();
389 texels[i].fRowBytes = generatedMipLevel.fPixmap.rowBytes();
390 }
391
brianosmanfe199872016-06-13 07:59:48 -0700392 {
393 GrTexture* texture = ctx->textureProvider()->createMipMappedTexture(desc,
394 SkBudgeted::kYes,
395 texels.get(),
396 mipLevelCount);
brianosman7d2f6072016-06-17 07:03:45 -0700397 if (texture) {
398 texture->texturePriv().setGammaTreatment(gammaTreatment);
399 }
brianosmanfe199872016-06-13 07:59:48 -0700400 return texture;
401 }
cblume55f2d2d2016-02-26 13:20:48 -0800402}
403
cblume186d2d42016-06-03 11:17:42 -0700404GrTexture* GrUploadMipMapToTexture(GrContext* ctx, const SkImageInfo& info,
405 const GrMipLevel* texels, int mipLevelCount) {
406 const GrCaps* caps = ctx->caps();
407 return ctx->textureProvider()->createMipMappedTexture(GrImageInfoToSurfaceDesc(info, *caps),
408 SkBudgeted::kYes, texels,
409 mipLevelCount);
410}
411
reedb5d32632015-09-29 13:36:50 -0700412GrTexture* GrRefCachedBitmapTexture(GrContext* ctx, const SkBitmap& bitmap,
brianosman982eb7f2016-06-06 13:10:58 -0700413 const GrTextureParams& params,
414 SkSourceGammaTreatment gammaTreatment) {
bsalomon89fe56b2015-10-29 10:49:28 -0700415 if (bitmap.getTexture()) {
brianosman982eb7f2016-06-06 13:10:58 -0700416 return GrBitmapTextureAdjuster(&bitmap).refTextureSafeForParams(params, gammaTreatment,
417 nullptr);
bsalomon89fe56b2015-10-29 10:49:28 -0700418 }
brianosman982eb7f2016-06-06 13:10:58 -0700419 return GrBitmapTextureMaker(ctx, bitmap).refTextureForParams(params, gammaTreatment);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000420}
reed8f343722015-08-13 13:32:39 -0700421
rileya@google.com24f3ad12012-07-18 21:47:40 +0000422///////////////////////////////////////////////////////////////////////////////
423
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000424// alphatype is ignore for now, but if GrPixelConfig is expanded to encompass
425// alpha info, that will be considered.
brianosmanb109b8c2016-06-16 13:03:24 -0700426GrPixelConfig SkImageInfo2GrPixelConfig(SkColorType ct, SkAlphaType, const SkColorSpace* cs,
brianosmana6359362016-03-21 06:55:37 -0700427 const GrCaps& caps) {
428 // We intentionally ignore profile type for non-8888 formats. Anything we can't support
429 // in hardware will be expanded to sRGB 8888 in GrUploadPixmapToTexture.
brianosmanc571c002016-03-17 13:01:26 -0700430 switch (ct) {
431 case kUnknown_SkColorType:
432 return kUnknown_GrPixelConfig;
433 case kAlpha_8_SkColorType:
434 return kAlpha_8_GrPixelConfig;
435 case kRGB_565_SkColorType:
436 return kRGB_565_GrPixelConfig;
437 case kARGB_4444_SkColorType:
438 return kRGBA_4444_GrPixelConfig;
439 case kRGBA_8888_SkColorType:
brianosmanb109b8c2016-06-16 13:03:24 -0700440 return (caps.srgbSupport() && cs && cs->gammaCloseToSRGB())
brianosmana6359362016-03-21 06:55:37 -0700441 ? kSRGBA_8888_GrPixelConfig : kRGBA_8888_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700442 case kBGRA_8888_SkColorType:
brianosmanb109b8c2016-06-16 13:03:24 -0700443 return (caps.srgbSupport() && cs && cs->gammaCloseToSRGB())
brianosmana6359362016-03-21 06:55:37 -0700444 ? kSBGRA_8888_GrPixelConfig : kBGRA_8888_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700445 case kIndex_8_SkColorType:
446 return kIndex_8_GrPixelConfig;
447 case kGray_8_SkColorType:
448 return kAlpha_8_GrPixelConfig; // TODO: gray8 support on gpu
449 case kRGBA_F16_SkColorType:
450 return kRGBA_half_GrPixelConfig;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000451 }
452 SkASSERT(0); // shouldn't get here
453 return kUnknown_GrPixelConfig;
454}
455
brianosman944876f2016-06-17 13:43:27 -0700456bool GrPixelConfigToColorAndColorSpace(GrPixelConfig config, SkColorType* ctOut,
457 sk_sp<SkColorSpace>* csOut) {
reed@google.combf790232013-12-13 19:45:58 +0000458 SkColorType ct;
brianosman944876f2016-06-17 13:43:27 -0700459 sk_sp<SkColorSpace> cs = nullptr;
reed@google.combf790232013-12-13 19:45:58 +0000460 switch (config) {
461 case kAlpha_8_GrPixelConfig:
462 ct = kAlpha_8_SkColorType;
463 break;
464 case kIndex_8_GrPixelConfig:
465 ct = kIndex_8_SkColorType;
466 break;
467 case kRGB_565_GrPixelConfig:
468 ct = kRGB_565_SkColorType;
469 break;
470 case kRGBA_4444_GrPixelConfig:
471 ct = kARGB_4444_SkColorType;
472 break;
473 case kRGBA_8888_GrPixelConfig:
474 ct = kRGBA_8888_SkColorType;
475 break;
476 case kBGRA_8888_GrPixelConfig:
477 ct = kBGRA_8888_SkColorType;
478 break;
jvanverthfa1e8a72014-12-22 08:31:49 -0800479 case kSRGBA_8888_GrPixelConfig:
480 ct = kRGBA_8888_SkColorType;
brianosman944876f2016-06-17 13:43:27 -0700481 cs = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
jvanverthfa1e8a72014-12-22 08:31:49 -0800482 break;
brianosmana6359362016-03-21 06:55:37 -0700483 case kSBGRA_8888_GrPixelConfig:
484 ct = kBGRA_8888_SkColorType;
brianosman944876f2016-06-17 13:43:27 -0700485 cs = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
brianosmana6359362016-03-21 06:55:37 -0700486 break;
brianosman9ac5b912016-04-12 13:49:53 -0700487 case kRGBA_half_GrPixelConfig:
488 ct = kRGBA_F16_SkColorType;
489 break;
reed@google.combf790232013-12-13 19:45:58 +0000490 default:
491 return false;
492 }
493 if (ctOut) {
494 *ctOut = ct;
495 }
brianosman944876f2016-06-17 13:43:27 -0700496 if (csOut) {
497 *csOut = cs;
jvanverthfa1e8a72014-12-22 08:31:49 -0800498 }
reed@google.combf790232013-12-13 19:45:58 +0000499 return true;
500}
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000501
bsalomonf1b7a1d2015-09-28 06:26:28 -0700502////////////////////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000503
bsalomonaa48d362015-10-01 08:34:17 -0700504static inline bool blend_requires_shader(const SkXfermode::Mode mode, bool primitiveIsSrc) {
505 if (primitiveIsSrc) {
506 return SkXfermode::kSrc_Mode != mode;
507 } else {
508 return SkXfermode::kDst_Mode != mode;
509 }
510}
511
bsalomonf1b7a1d2015-09-28 06:26:28 -0700512static inline bool skpaint_to_grpaint_impl(GrContext* context,
513 const SkPaint& skPaint,
514 const SkMatrix& viewM,
bungeman06ca8ec2016-06-09 08:01:03 -0700515 sk_sp<GrFragmentProcessor>* shaderProcessor,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700516 SkXfermode::Mode* primColorMode,
517 bool primitiveIsSrc,
brianosman898235c2016-04-06 07:38:23 -0700518 bool allowSRGBInputs,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700519 GrPaint* grPaint) {
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000520 grPaint->setAntiAlias(skPaint.isAntiAlias());
brianosman898235c2016-04-06 07:38:23 -0700521 grPaint->setAllowSRGBInputs(allowSRGBInputs);
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000522
bsalomonf1b7a1d2015-09-28 06:26:28 -0700523 // Setup the initial color considering the shader, the SkPaint color, and the presence or not
524 // of per-vertex colors.
bungeman06ca8ec2016-06-09 08:01:03 -0700525 sk_sp<GrFragmentProcessor> shaderFP;
bsalomonaa48d362015-10-01 08:34:17 -0700526 if (!primColorMode || blend_requires_shader(*primColorMode, primitiveIsSrc)) {
527 if (shaderProcessor) {
528 shaderFP = *shaderProcessor;
529 } else if (const SkShader* shader = skPaint.getShader()) {
brianosman982eb7f2016-06-06 13:10:58 -0700530 SkSourceGammaTreatment gammaTreatment = allowSRGBInputs
531 ? SkSourceGammaTreatment::kRespect : SkSourceGammaTreatment::kIgnore;
bungeman06ca8ec2016-06-09 08:01:03 -0700532 shaderFP = shader->asFragmentProcessor(context, viewM, nullptr,
533 skPaint.getFilterQuality(), gammaTreatment);
bsalomonaa48d362015-10-01 08:34:17 -0700534 if (!shaderFP) {
535 return false;
536 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700537 }
538 }
539
540 // Set this in below cases if the output of the shader/paint-color/paint-alpha/primXfermode is
541 // a known constant value. In that case we can simply apply a color filter during this
542 // conversion without converting the color filter to a GrFragmentProcessor.
543 bool applyColorFilterToPaintColor = false;
544 if (shaderFP) {
545 if (primColorMode) {
546 // There is a blend between the primitive color and the shader color. The shader sees
547 // the opaque paint color. The shader's output is blended using the provided mode by
548 // the primitive color. The blended color is then modulated by the paint's alpha.
549
550 // The geometry processor will insert the primitive color to start the color chain, so
551 // the GrPaint color will be ignored.
552
553 GrColor shaderInput = SkColorToOpaqueGrColor(skPaint.getColor());
554
555 shaderFP = GrFragmentProcessor::OverrideInput(shaderFP, shaderInput);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700556 if (primitiveIsSrc) {
bungeman06ca8ec2016-06-09 08:01:03 -0700557 shaderFP = GrXfermodeFragmentProcessor::MakeFromDstProcessor(std::move(shaderFP),
558 *primColorMode);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700559 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700560 shaderFP = GrXfermodeFragmentProcessor::MakeFromSrcProcessor(std::move(shaderFP),
561 *primColorMode);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700562 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700563 // The above may return null if compose results in a pass through of the prim color.
564 if (shaderFP) {
565 grPaint->addColorFragmentProcessor(shaderFP);
566 }
567
568 GrColor paintAlpha = SkColorAlphaToGrColor(skPaint.getColor());
569 if (GrColor_WHITE != paintAlpha) {
bungeman06ca8ec2016-06-09 08:01:03 -0700570 grPaint->addColorFragmentProcessor(GrConstColorProcessor::Make(
571 paintAlpha, GrConstColorProcessor::kModulateRGBA_InputMode));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700572 }
573 } else {
574 // The shader's FP sees the paint unpremul color
575 grPaint->setColor(SkColorToUnpremulGrColor(skPaint.getColor()));
bungeman06ca8ec2016-06-09 08:01:03 -0700576 grPaint->addColorFragmentProcessor(std::move(shaderFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700577 }
578 } else {
579 if (primColorMode) {
580 // There is a blend between the primitive color and the paint color. The blend considers
581 // the opaque paint color. The paint's alpha is applied to the post-blended color.
bungeman06ca8ec2016-06-09 08:01:03 -0700582 sk_sp<GrFragmentProcessor> processor(
583 GrConstColorProcessor::Make(SkColorToOpaqueGrColor(skPaint.getColor()),
bsalomonf1b7a1d2015-09-28 06:26:28 -0700584 GrConstColorProcessor::kIgnore_InputMode));
585 if (primitiveIsSrc) {
bungeman06ca8ec2016-06-09 08:01:03 -0700586 processor = GrXfermodeFragmentProcessor::MakeFromDstProcessor(std::move(processor),
587 *primColorMode);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700588 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700589 processor = GrXfermodeFragmentProcessor::MakeFromSrcProcessor(std::move(processor),
590 *primColorMode);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700591 }
592 if (processor) {
bungeman06ca8ec2016-06-09 08:01:03 -0700593 grPaint->addColorFragmentProcessor(std::move(processor));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700594 }
595
bsalomonaa48d362015-10-01 08:34:17 -0700596 grPaint->setColor(SkColorToOpaqueGrColor(skPaint.getColor()));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700597
598 GrColor paintAlpha = SkColorAlphaToGrColor(skPaint.getColor());
bsalomonaa48d362015-10-01 08:34:17 -0700599 if (GrColor_WHITE != paintAlpha) {
bungeman06ca8ec2016-06-09 08:01:03 -0700600 grPaint->addColorFragmentProcessor(GrConstColorProcessor::Make(
601 paintAlpha, GrConstColorProcessor::kModulateRGBA_InputMode));
bsalomonaa48d362015-10-01 08:34:17 -0700602 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700603 } else {
604 // No shader, no primitive color.
605 grPaint->setColor(SkColorToPremulGrColor(skPaint.getColor()));
606 applyColorFilterToPaintColor = true;
607 }
608 }
609
610 SkColorFilter* colorFilter = skPaint.getColorFilter();
611 if (colorFilter) {
612 if (applyColorFilterToPaintColor) {
613 grPaint->setColor(SkColorToPremulGrColor(colorFilter->filterColor(skPaint.getColor())));
614 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700615 sk_sp<GrFragmentProcessor> cfFP(colorFilter->asFragmentProcessor(context));
bsalomone25eea42015-09-29 06:38:55 -0700616 if (cfFP) {
bungeman06ca8ec2016-06-09 08:01:03 -0700617 grPaint->addColorFragmentProcessor(std::move(cfFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700618 } else {
619 return false;
620 }
621 }
622 }
623
robertphillips4f037942016-02-09 05:09:27 -0800624 // When the xfermode is null on the SkPaint (meaning kSrcOver) we need the XPFactory field on
625 // the GrPaint to also be null (also kSrcOver).
626 SkASSERT(!grPaint->getXPFactory());
627 SkXfermode* xfermode = skPaint.getXfermode();
628 if (xfermode) {
bungeman06ca8ec2016-06-09 08:01:03 -0700629 grPaint->setXPFactory(xfermode->asXPFactory());
robertphillips4f037942016-02-09 05:09:27 -0800630 }
mtklein775b8192014-12-02 09:11:25 -0800631
krajcevskif461a8f2014-06-19 14:14:06 -0700632#ifndef SK_IGNORE_GPU_DITHER
bsalomonac856c92015-08-27 06:30:17 -0700633 if (skPaint.isDither() && grPaint->numColorFragmentProcessors() > 0) {
bungeman06ca8ec2016-06-09 08:01:03 -0700634 grPaint->addColorFragmentProcessor(GrDitherEffect::Make());
krajcevskif461a8f2014-06-19 14:14:06 -0700635 }
636#endif
bsalomonbed83a62015-04-15 14:18:34 -0700637 return true;
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000638}
639
bsalomonf1b7a1d2015-09-28 06:26:28 -0700640bool SkPaintToGrPaint(GrContext* context, const SkPaint& skPaint, const SkMatrix& viewM,
brianosman898235c2016-04-06 07:38:23 -0700641 bool allowSRGBInputs, GrPaint* grPaint) {
642 return skpaint_to_grpaint_impl(context, skPaint, viewM, nullptr, nullptr, false,
643 allowSRGBInputs, grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700644}
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000645
bsalomonf1b7a1d2015-09-28 06:26:28 -0700646/** Replaces the SkShader (if any) on skPaint with the passed in GrFragmentProcessor. */
647bool SkPaintToGrPaintReplaceShader(GrContext* context,
648 const SkPaint& skPaint,
bungeman06ca8ec2016-06-09 08:01:03 -0700649 sk_sp<GrFragmentProcessor> shaderFP,
brianosman898235c2016-04-06 07:38:23 -0700650 bool allowSRGBInputs,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700651 GrPaint* grPaint) {
652 if (!shaderFP) {
bsalomonc21b09e2015-08-28 18:46:56 -0700653 return false;
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000654 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700655 return skpaint_to_grpaint_impl(context, skPaint, SkMatrix::I(), &shaderFP, nullptr, false,
brianosman898235c2016-04-06 07:38:23 -0700656 allowSRGBInputs, grPaint);
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000657}
reed8b26b992015-05-07 15:36:17 -0700658
bsalomonf1b7a1d2015-09-28 06:26:28 -0700659/** Ignores the SkShader (if any) on skPaint. */
660bool SkPaintToGrPaintNoShader(GrContext* context,
661 const SkPaint& skPaint,
brianosman898235c2016-04-06 07:38:23 -0700662 bool allowSRGBInputs,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700663 GrPaint* grPaint) {
664 // Use a ptr to a nullptr to to indicate that the SkShader is ignored and not replaced.
bungeman06ca8ec2016-06-09 08:01:03 -0700665 static sk_sp<GrFragmentProcessor> kNullShaderFP(nullptr);
666 static sk_sp<GrFragmentProcessor>* kIgnoreShader = &kNullShaderFP;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700667 return skpaint_to_grpaint_impl(context, skPaint, SkMatrix::I(), kIgnoreShader, nullptr, false,
brianosman898235c2016-04-06 07:38:23 -0700668 allowSRGBInputs, grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700669}
670
671/** Blends the SkPaint's shader (or color if no shader) with a per-primitive color which must
672be setup as a vertex attribute using the specified SkXfermode::Mode. */
673bool SkPaintToGrPaintWithXfermode(GrContext* context,
674 const SkPaint& skPaint,
675 const SkMatrix& viewM,
676 SkXfermode::Mode primColorMode,
677 bool primitiveIsSrc,
brianosman898235c2016-04-06 07:38:23 -0700678 bool allowSRGBInputs,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700679 GrPaint* grPaint) {
680 return skpaint_to_grpaint_impl(context, skPaint, viewM, nullptr, &primColorMode, primitiveIsSrc,
brianosman898235c2016-04-06 07:38:23 -0700681 allowSRGBInputs, grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700682}
683
joshualitt33a5fce2015-11-18 13:28:51 -0800684bool SkPaintToGrPaintWithTexture(GrContext* context,
685 const SkPaint& paint,
686 const SkMatrix& viewM,
bungeman06ca8ec2016-06-09 08:01:03 -0700687 sk_sp<GrFragmentProcessor> fp,
joshualitt33a5fce2015-11-18 13:28:51 -0800688 bool textureIsAlphaOnly,
brianosman898235c2016-04-06 07:38:23 -0700689 bool allowSRGBInputs,
joshualitt33a5fce2015-11-18 13:28:51 -0800690 GrPaint* grPaint) {
bungeman06ca8ec2016-06-09 08:01:03 -0700691 sk_sp<GrFragmentProcessor> shaderFP;
joshualitt33a5fce2015-11-18 13:28:51 -0800692 if (textureIsAlphaOnly) {
693 if (const SkShader* shader = paint.getShader()) {
brianosman982eb7f2016-06-06 13:10:58 -0700694 SkSourceGammaTreatment gammaTreatment = allowSRGBInputs
695 ? SkSourceGammaTreatment::kRespect : SkSourceGammaTreatment::kIgnore;
bungeman06ca8ec2016-06-09 08:01:03 -0700696 shaderFP = shader->asFragmentProcessor(context,
697 viewM,
698 nullptr,
699 paint.getFilterQuality(),
700 gammaTreatment);
joshualitt33a5fce2015-11-18 13:28:51 -0800701 if (!shaderFP) {
702 return false;
703 }
bungeman06ca8ec2016-06-09 08:01:03 -0700704 sk_sp<GrFragmentProcessor> fpSeries[] = { std::move(shaderFP), std::move(fp) };
705 shaderFP = GrFragmentProcessor::RunInSeries(fpSeries, 2);
joshualitt33a5fce2015-11-18 13:28:51 -0800706 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700707 shaderFP = GrFragmentProcessor::MulOutputByInputUnpremulColor(fp);
joshualitt33a5fce2015-11-18 13:28:51 -0800708 }
709 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700710 shaderFP = GrFragmentProcessor::MulOutputByInputAlpha(fp);
joshualitt33a5fce2015-11-18 13:28:51 -0800711 }
712
bungeman06ca8ec2016-06-09 08:01:03 -0700713 return SkPaintToGrPaintReplaceShader(context, paint, std::move(shaderFP), allowSRGBInputs,
714 grPaint);
joshualitt33a5fce2015-11-18 13:28:51 -0800715}
716
bsalomonf1b7a1d2015-09-28 06:26:28 -0700717
718////////////////////////////////////////////////////////////////////////////////////////////////
719
reed8b26b992015-05-07 15:36:17 -0700720SkImageInfo GrMakeInfoFromTexture(GrTexture* tex, int w, int h, bool isOpaque) {
721#ifdef SK_DEBUG
722 const GrSurfaceDesc& desc = tex->desc();
723 SkASSERT(w <= desc.fWidth);
724 SkASSERT(h <= desc.fHeight);
725#endif
726 const GrPixelConfig config = tex->config();
brianosman944876f2016-06-17 13:43:27 -0700727 SkColorType ct = kUnknown_SkColorType;
reed8b26b992015-05-07 15:36:17 -0700728 SkAlphaType at = isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
brianosman944876f2016-06-17 13:43:27 -0700729 if (!GrPixelConfigToColorAndColorSpace(config, &ct, nullptr)) {
reed8b26b992015-05-07 15:36:17 -0700730 ct = kUnknown_SkColorType;
731 }
732 return SkImageInfo::Make(w, h, ct, at);
733}
734
735
736void GrWrapTextureInBitmap(GrTexture* src, int w, int h, bool isOpaque, SkBitmap* dst) {
737 const SkImageInfo info = GrMakeInfoFromTexture(src, w, h, isOpaque);
738 dst->setInfo(info);
halcanary385fe4d2015-08-26 13:07:48 -0700739 dst->setPixelRef(new SkGrPixelRef(info, src))->unref();
reed8b26b992015-05-07 15:36:17 -0700740}
joshualitt9bc39542015-08-12 12:57:54 -0700741
742GrTextureParams::FilterMode GrSkFilterQualityToGrFilterMode(SkFilterQuality paintFilterQuality,
743 const SkMatrix& viewM,
744 const SkMatrix& localM,
745 bool* doBicubic) {
746 *doBicubic = false;
747 GrTextureParams::FilterMode textureFilterMode;
748 switch (paintFilterQuality) {
749 case kNone_SkFilterQuality:
750 textureFilterMode = GrTextureParams::kNone_FilterMode;
751 break;
752 case kLow_SkFilterQuality:
753 textureFilterMode = GrTextureParams::kBilerp_FilterMode;
754 break;
755 case kMedium_SkFilterQuality: {
756 SkMatrix matrix;
757 matrix.setConcat(viewM, localM);
758 if (matrix.getMinScale() < SK_Scalar1) {
759 textureFilterMode = GrTextureParams::kMipMap_FilterMode;
760 } else {
761 // Don't trigger MIP level generation unnecessarily.
762 textureFilterMode = GrTextureParams::kBilerp_FilterMode;
763 }
764 break;
765 }
766 case kHigh_SkFilterQuality: {
767 SkMatrix matrix;
768 matrix.setConcat(viewM, localM);
769 *doBicubic = GrBicubicEffect::ShouldUseBicubic(matrix, &textureFilterMode);
770 break;
771 }
772 default:
773 SkErrorInternals::SetError( kInvalidPaint_SkError,
774 "Sorry, I don't understand the filtering "
775 "mode you asked for. Falling back to "
776 "MIPMaps.");
777 textureFilterMode = GrTextureParams::kMipMap_FilterMode;
778 break;
779
780 }
781 return textureFilterMode;
782}