blob: 9cafbf69c0d030a281f4629c503cb52bcc61e0b1 [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
reed@google.comac10a2d2010-12-22 21:39:39 +00008#include "SkGr.h"
commit-bot@chromium.orgea476e12013-10-14 18:29:23 +00009#include "SkConfig8888.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000010
11/* Fill out buffer with the compressed format Ganesh expects from a colortable
12 based bitmap. [palette (colortable) + indices].
bsalomon@google.com5782d712011-01-21 21:03:59 +000013
14 At the moment Ganesh only supports 8bit version. If Ganesh allowed we others
reed@google.comac10a2d2010-12-22 21:39:39 +000015 we could detect that the colortable.count is <= 16, and then repack the
16 indices as nibbles to save RAM, but it would take more time (i.e. a lot
17 slower than memcpy), so skipping that for now.
bsalomon@google.com5782d712011-01-21 21:03:59 +000018
reed@google.comac10a2d2010-12-22 21:39:39 +000019 Ganesh wants a full 256 palette entry, even though Skia's ctable is only as big
20 as the colortable.count says it is.
21 */
22static void build_compressed_data(void* buffer, const SkBitmap& bitmap) {
23 SkASSERT(SkBitmap::kIndex8_Config == bitmap.config());
bsalomon@google.com5782d712011-01-21 21:03:59 +000024
bsalomon@google.com7f4ad5a2013-05-07 19:36:43 +000025 SkAutoLockPixels alp(bitmap);
reed@google.comac10a2d2010-12-22 21:39:39 +000026 if (!bitmap.readyToDraw()) {
tomhudson@google.com0c00f212011-12-28 14:59:50 +000027 SkDEBUGFAIL("bitmap not ready to draw!");
reed@google.comac10a2d2010-12-22 21:39:39 +000028 return;
29 }
30
31 SkColorTable* ctable = bitmap.getColorTable();
32 char* dst = (char*)buffer;
bsalomon@google.com5782d712011-01-21 21:03:59 +000033
commit-bot@chromium.orgea476e12013-10-14 18:29:23 +000034 uint32_t* colorTableDst = reinterpret_cast<uint32_t*>(dst);
35 const uint32_t* colorTableSrc = reinterpret_cast<const uint32_t*>(ctable->lockColors());
36 SkConvertConfig8888Pixels(colorTableDst, 0, SkCanvas::kRGBA_Premul_Config8888,
37 colorTableSrc, 0, SkCanvas::kNative_Premul_Config8888,
38 ctable->count(), 1);
reed@google.com0a6151d2013-10-10 14:44:56 +000039 ctable->unlockColors();
bsalomon@google.com5782d712011-01-21 21:03:59 +000040
reed@google.comac10a2d2010-12-22 21:39:39 +000041 // always skip a full 256 number of entries, even if we memcpy'd fewer
bsalomon@google.comfea37b52011-04-25 15:51:06 +000042 dst += kGrColorTableSize;
reed@google.comac10a2d2010-12-22 21:39:39 +000043
scroggo@google.com0ba4bf42013-02-25 16:02:36 +000044 if ((unsigned)bitmap.width() == bitmap.rowBytes()) {
reed@google.comac10a2d2010-12-22 21:39:39 +000045 memcpy(dst, bitmap.getPixels(), bitmap.getSize());
46 } else {
47 // need to trim off the extra bytes per row
48 size_t width = bitmap.width();
49 size_t rowBytes = bitmap.rowBytes();
50 const char* src = (const char*)bitmap.getPixels();
51 for (int y = 0; y < bitmap.height(); y++) {
52 memcpy(dst, src, width);
53 src += rowBytes;
54 dst += width;
55 }
56 }
57}
58
59////////////////////////////////////////////////////////////////////////////////
60
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000061static void generate_bitmap_cache_id(const SkBitmap& bitmap, GrCacheID* id) {
62 // Our id includes the offset, width, and height so that bitmaps created by extractSubset()
63 // are unique.
64 uint32_t genID = bitmap.getGenerationID();
65 size_t offset = bitmap.pixelRefOffset();
66 int16_t width = static_cast<int16_t>(bitmap.width());
67 int16_t height = static_cast<int16_t>(bitmap.height());
68
skia.committer@gmail.com2859eb72012-12-21 02:01:28 +000069 GrCacheID::Key key;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000070 memcpy(key.fData8, &genID, 4);
71 memcpy(key.fData8 + 4, &width, 2);
72 memcpy(key.fData8 + 6, &height, 2);
73 memcpy(key.fData8 + 8, &offset, sizeof(size_t));
bsalomon@google.com10a9fb82013-01-02 19:29:57 +000074 static const size_t kKeyDataSize = 8 + sizeof(size_t);
75 memset(key.fData8 + kKeyDataSize, 0, sizeof(key) - kKeyDataSize);
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000076 GR_STATIC_ASSERT(sizeof(key) >= 8 + sizeof(size_t));
77 static const GrCacheID::Domain gBitmapTextureDomain = GrCacheID::GenerateDomain();
78 id->reset(gBitmapTextureDomain, key);
79}
80
81static void generate_bitmap_texture_desc(const SkBitmap& bitmap, GrTextureDesc* desc) {
82 desc->fFlags = kNone_GrTextureFlags;
83 desc->fWidth = bitmap.width();
84 desc->fHeight = bitmap.height();
85 desc->fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
86 desc->fSampleCnt = 0;
87}
88
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000089static GrTexture* sk_gr_create_bitmap_texture(GrContext* ctx,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000090 bool cache,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000091 const GrTextureParams* params,
92 const SkBitmap& origBitmap) {
reed@google.comac10a2d2010-12-22 21:39:39 +000093 SkBitmap tmpBitmap;
94
95 const SkBitmap* bitmap = &origBitmap;
bsalomon@google.com5782d712011-01-21 21:03:59 +000096
robertphillips@google.com75b3c962012-06-07 12:08:45 +000097 GrTextureDesc desc;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000098 generate_bitmap_texture_desc(*bitmap, &desc);
bsalomon@google.com5782d712011-01-21 21:03:59 +000099
reed@google.comac10a2d2010-12-22 21:39:39 +0000100 if (SkBitmap::kIndex8_Config == bitmap->config()) {
101 // build_compressed_data doesn't do npot->pot expansion
102 // and paletted textures can't be sub-updated
bsalomon@google.com7f4ad5a2013-05-07 19:36:43 +0000103 if (ctx->supportsIndex8PixelConfig(params, bitmap->width(), bitmap->height())) {
104 size_t imagesize = bitmap->width() * bitmap->height() + kGrColorTableSize;
reed@google.comac10a2d2010-12-22 21:39:39 +0000105 SkAutoMalloc storage(imagesize);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000106
reed@google.comac10a2d2010-12-22 21:39:39 +0000107 build_compressed_data(storage.get(), origBitmap);
108
109 // our compressed data will be trimmed, so pass width() for its
110 // "rowBytes", since they are the same now.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000111
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000112 if (cache) {
113 GrCacheID cacheID;
114 generate_bitmap_cache_id(origBitmap, &cacheID);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000115 return ctx->createTexture(params, desc, cacheID, storage.get(), bitmap->width());
junov@google.com4ee7ae52011-06-30 17:30:49 +0000116 } else {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000117 GrTexture* result = ctx->lockAndRefScratchTexture(desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000118 GrContext::kExact_ScratchTexMatch);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000119 result->writePixels(0, 0, bitmap->width(),
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000120 bitmap->height(), desc.fConfig,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000121 storage.get());
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000122 return result;
junov@google.com4ee7ae52011-06-30 17:30:49 +0000123 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000124 } else {
125 origBitmap.copyTo(&tmpBitmap, SkBitmap::kARGB_8888_Config);
126 // now bitmap points to our temp, which has been promoted to 32bits
127 bitmap = &tmpBitmap;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000128 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap->config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000129 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000130 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000131
bsalomon@google.com7f4ad5a2013-05-07 19:36:43 +0000132 SkAutoLockPixels alp(*bitmap);
133 if (!bitmap->readyToDraw()) {
134 return NULL;
135 }
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000136 if (cache) {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000137 // This texture is likely to be used again so leave it in the cache
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000138 GrCacheID cacheID;
139 generate_bitmap_cache_id(origBitmap, &cacheID);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000140 return ctx->createTexture(params, desc, cacheID, bitmap->getPixels(), bitmap->rowBytes());
junov@google.com4ee7ae52011-06-30 17:30:49 +0000141 } else {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000142 // This texture is unlikely to be used again (in its present form) so
143 // just use a scratch texture. This will remove the texture from the
144 // cache so no one else can find it. Additionally, once unlocked, the
145 // scratch texture will go to the end of the list for purging so will
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000146 // likely be available for this volatile bitmap the next time around.
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000147 GrTexture* result = ctx->lockAndRefScratchTexture(desc, GrContext::kExact_ScratchTexMatch);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000148 result->writePixels(0, 0,
149 bitmap->width(), bitmap->height(),
150 desc.fConfig,
151 bitmap->getPixels(),
152 bitmap->rowBytes());
153 return result;
junov@google.com4ee7ae52011-06-30 17:30:49 +0000154 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000155}
156
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000157bool GrIsBitmapInCache(const GrContext* ctx,
158 const SkBitmap& bitmap,
159 const GrTextureParams* params) {
160 GrCacheID cacheID;
161 generate_bitmap_cache_id(bitmap, &cacheID);
162
163 GrTextureDesc desc;
164 generate_bitmap_texture_desc(bitmap, &desc);
165 return ctx->isTextureInCache(desc, cacheID, params);
166}
reed@google.comac10a2d2010-12-22 21:39:39 +0000167
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000168GrTexture* GrLockAndRefCachedBitmapTexture(GrContext* ctx,
169 const SkBitmap& bitmap,
170 const GrTextureParams* params) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000171 GrTexture* result = NULL;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000172
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000173 bool cache = !bitmap.isVolatile();
174
175 if (cache) {
176 // If the bitmap isn't changing try to find a cached copy first.
177
178 GrCacheID cacheID;
179 generate_bitmap_cache_id(bitmap, &cacheID);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000180
181 GrTextureDesc desc;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000182 generate_bitmap_texture_desc(bitmap, &desc);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000183
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000184 result = ctx->findAndRefTexture(desc, cacheID, params);
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000185 }
186 if (NULL == result) {
187 result = sk_gr_create_bitmap_texture(ctx, cache, params, bitmap);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000188 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000189 if (NULL == result) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000190 GrPrintf("---- failed to create texture for cache [%d %d]\n",
191 bitmap.width(), bitmap.height());
192 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000193 return result;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000194}
195
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000196void GrUnlockAndUnrefCachedBitmapTexture(GrTexture* texture) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000197 SkASSERT(NULL != texture->getContext());
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000198
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000199 texture->getContext()->unlockScratchTexture(texture);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000200 texture->unref();
rileya@google.com24f3ad12012-07-18 21:47:40 +0000201}
202
203///////////////////////////////////////////////////////////////////////////////
204
rileya@google.com24f3ad12012-07-18 21:47:40 +0000205GrPixelConfig SkBitmapConfig2GrPixelConfig(SkBitmap::Config config) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000206 switch (config) {
207 case SkBitmap::kA8_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000208 return kAlpha_8_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000209 case SkBitmap::kIndex8_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000210 return kIndex_8_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000211 case SkBitmap::kRGB_565_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000212 return kRGB_565_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000213 case SkBitmap::kARGB_4444_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000214 return kRGBA_4444_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000215 case SkBitmap::kARGB_8888_Config:
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000216 return kSkia8888_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000217 default:
reed@google.com2cb14802013-06-26 14:35:02 +0000218 // kNo_Config, kA1_Config missing
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000219 return kUnknown_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000220 }
221}