blob: fac18e969e606686024982afc2f744704c2c2a61 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#include "SkGr.h"
12
13/* Fill out buffer with the compressed format Ganesh expects from a colortable
14 based bitmap. [palette (colortable) + indices].
bsalomon@google.com5782d712011-01-21 21:03:59 +000015
16 At the moment Ganesh only supports 8bit version. If Ganesh allowed we others
reed@google.comac10a2d2010-12-22 21:39:39 +000017 we could detect that the colortable.count is <= 16, and then repack the
18 indices as nibbles to save RAM, but it would take more time (i.e. a lot
19 slower than memcpy), so skipping that for now.
bsalomon@google.com5782d712011-01-21 21:03:59 +000020
reed@google.comac10a2d2010-12-22 21:39:39 +000021 Ganesh wants a full 256 palette entry, even though Skia's ctable is only as big
22 as the colortable.count says it is.
23 */
24static void build_compressed_data(void* buffer, const SkBitmap& bitmap) {
25 SkASSERT(SkBitmap::kIndex8_Config == bitmap.config());
bsalomon@google.com5782d712011-01-21 21:03:59 +000026
reed@google.comac10a2d2010-12-22 21:39:39 +000027 SkAutoLockPixels apl(bitmap);
28 if (!bitmap.readyToDraw()) {
tomhudson@google.com0c00f212011-12-28 14:59:50 +000029 SkDEBUGFAIL("bitmap not ready to draw!");
reed@google.comac10a2d2010-12-22 21:39:39 +000030 return;
31 }
32
33 SkColorTable* ctable = bitmap.getColorTable();
34 char* dst = (char*)buffer;
bsalomon@google.com5782d712011-01-21 21:03:59 +000035
reed@google.comac10a2d2010-12-22 21:39:39 +000036 memcpy(dst, ctable->lockColors(), ctable->count() * sizeof(SkPMColor));
37 ctable->unlockColors(false);
bsalomon@google.com5782d712011-01-21 21:03:59 +000038
reed@google.comac10a2d2010-12-22 21:39:39 +000039 // always skip a full 256 number of entries, even if we memcpy'd fewer
bsalomon@google.comfea37b52011-04-25 15:51:06 +000040 dst += kGrColorTableSize;
reed@google.comac10a2d2010-12-22 21:39:39 +000041
42 if (bitmap.width() == bitmap.rowBytes()) {
43 memcpy(dst, bitmap.getPixels(), bitmap.getSize());
44 } else {
45 // need to trim off the extra bytes per row
46 size_t width = bitmap.width();
47 size_t rowBytes = bitmap.rowBytes();
48 const char* src = (const char*)bitmap.getPixels();
49 for (int y = 0; y < bitmap.height(); y++) {
50 memcpy(dst, src, width);
51 src += rowBytes;
52 dst += width;
53 }
54 }
55}
56
57////////////////////////////////////////////////////////////////////////////////
58
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000059static void generate_bitmap_cache_id(const SkBitmap& bitmap, GrCacheID* id) {
60 // Our id includes the offset, width, and height so that bitmaps created by extractSubset()
61 // are unique.
62 uint32_t genID = bitmap.getGenerationID();
63 size_t offset = bitmap.pixelRefOffset();
64 int16_t width = static_cast<int16_t>(bitmap.width());
65 int16_t height = static_cast<int16_t>(bitmap.height());
66
skia.committer@gmail.com2859eb72012-12-21 02:01:28 +000067 GrCacheID::Key key;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000068 memcpy(key.fData8, &genID, 4);
69 memcpy(key.fData8 + 4, &width, 2);
70 memcpy(key.fData8 + 6, &height, 2);
71 memcpy(key.fData8 + 8, &offset, sizeof(size_t));
bsalomon@google.com10a9fb82013-01-02 19:29:57 +000072 static const size_t kKeyDataSize = 8 + sizeof(size_t);
73 memset(key.fData8 + kKeyDataSize, 0, sizeof(key) - kKeyDataSize);
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000074 GR_STATIC_ASSERT(sizeof(key) >= 8 + sizeof(size_t));
75 static const GrCacheID::Domain gBitmapTextureDomain = GrCacheID::GenerateDomain();
76 id->reset(gBitmapTextureDomain, key);
77}
78
79static void generate_bitmap_texture_desc(const SkBitmap& bitmap, GrTextureDesc* desc) {
80 desc->fFlags = kNone_GrTextureFlags;
81 desc->fWidth = bitmap.width();
82 desc->fHeight = bitmap.height();
83 desc->fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
84 desc->fSampleCnt = 0;
85}
86
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000087static GrTexture* sk_gr_create_bitmap_texture(GrContext* ctx,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +000088 bool cache,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000089 const GrTextureParams* params,
90 const SkBitmap& origBitmap) {
reed@google.comac10a2d2010-12-22 21:39:39 +000091 SkAutoLockPixels alp(origBitmap);
bsalomon@google.com50398bf2011-07-26 20:45:30 +000092
reed@google.comac10a2d2010-12-22 21:39:39 +000093 if (!origBitmap.readyToDraw()) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000094 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +000095 }
96
97 SkBitmap tmpBitmap;
98
99 const SkBitmap* bitmap = &origBitmap;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000100
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000101 GrTextureDesc desc;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000102 generate_bitmap_texture_desc(*bitmap, &desc);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000103
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 if (SkBitmap::kIndex8_Config == bitmap->config()) {
105 // build_compressed_data doesn't do npot->pot expansion
106 // and paletted textures can't be sub-updated
bsalomon@google.comb8670992012-07-25 21:27:09 +0000107 if (ctx->supportsIndex8PixelConfig(params,
reed@google.comac10a2d2010-12-22 21:39:39 +0000108 bitmap->width(), bitmap->height())) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000109 size_t imagesize = bitmap->width() * bitmap->height() +
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000110 kGrColorTableSize;
reed@google.comac10a2d2010-12-22 21:39:39 +0000111 SkAutoMalloc storage(imagesize);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000112
reed@google.comac10a2d2010-12-22 21:39:39 +0000113 build_compressed_data(storage.get(), origBitmap);
114
115 // our compressed data will be trimmed, so pass width() for its
116 // "rowBytes", since they are the same now.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000117
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000118 if (cache) {
119 GrCacheID cacheID;
120 generate_bitmap_cache_id(origBitmap, &cacheID);
121 return ctx->createTexture(params, desc, cacheID,
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000122 storage.get(),
123 bitmap->width());
junov@google.com4ee7ae52011-06-30 17:30:49 +0000124 } else {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000125 GrTexture* result = ctx->lockScratchTexture(desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000126 GrContext::kExact_ScratchTexMatch);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000127 result->writePixels(0, 0, bitmap->width(),
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000128 bitmap->height(), desc.fConfig,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000129 storage.get());
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000130 return result;
junov@google.com4ee7ae52011-06-30 17:30:49 +0000131 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000132 } else {
133 origBitmap.copyTo(&tmpBitmap, SkBitmap::kARGB_8888_Config);
134 // now bitmap points to our temp, which has been promoted to 32bits
135 bitmap = &tmpBitmap;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000136 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap->config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000137 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000138 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000139
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000140 if (cache) {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000141 // This texture is likely to be used again so leave it in the cache
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000142 GrCacheID cacheID;
143 generate_bitmap_cache_id(origBitmap, &cacheID);
144 return ctx->createTexture(params, desc, cacheID,
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000145 bitmap->getPixels(),
146 bitmap->rowBytes());
junov@google.com4ee7ae52011-06-30 17:30:49 +0000147 } else {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000148 // This texture is unlikely to be used again (in its present form) so
149 // just use a scratch texture. This will remove the texture from the
150 // cache so no one else can find it. Additionally, once unlocked, the
151 // scratch texture will go to the end of the list for purging so will
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000152 // likely be available for this volatile bitmap the next time around.
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000153 GrTexture* result = ctx->lockScratchTexture(desc, GrContext::kExact_ScratchTexMatch);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000154 result->writePixels(0, 0,
155 bitmap->width(), bitmap->height(),
156 desc.fConfig,
157 bitmap->getPixels(),
158 bitmap->rowBytes());
159 return result;
junov@google.com4ee7ae52011-06-30 17:30:49 +0000160 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000161}
162
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000163bool GrIsBitmapInCache(const GrContext* ctx,
164 const SkBitmap& bitmap,
165 const GrTextureParams* params) {
166 GrCacheID cacheID;
167 generate_bitmap_cache_id(bitmap, &cacheID);
168
169 GrTextureDesc desc;
170 generate_bitmap_texture_desc(bitmap, &desc);
171 return ctx->isTextureInCache(desc, cacheID, params);
172}
reed@google.comac10a2d2010-12-22 21:39:39 +0000173
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000174GrTexture* GrLockCachedBitmapTexture(GrContext* ctx,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000175 const SkBitmap& bitmap,
176 const GrTextureParams* params) {
177 GrTexture* result = NULL;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000178
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000179 bool cache = !bitmap.isVolatile();
180
181 if (cache) {
182 // If the bitmap isn't changing try to find a cached copy first.
183
184 GrCacheID cacheID;
185 generate_bitmap_cache_id(bitmap, &cacheID);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000186
187 GrTextureDesc desc;
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000188 generate_bitmap_texture_desc(bitmap, &desc);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000189
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000190 result = ctx->findTexture(desc, cacheID, params);
191 }
192 if (NULL == result) {
193 result = sk_gr_create_bitmap_texture(ctx, cache, params, bitmap);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000194 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000195 if (NULL == result) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000196 GrPrintf("---- failed to create texture for cache [%d %d]\n",
197 bitmap.width(), bitmap.height());
198 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000199 return result;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000200}
201
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000202void GrUnlockCachedBitmapTexture(GrTexture* texture) {
203 GrAssert(NULL != texture->getContext());
204
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000205 texture->getContext()->unlockScratchTexture(texture);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000206}
207
208///////////////////////////////////////////////////////////////////////////////
209
rileya@google.com24f3ad12012-07-18 21:47:40 +0000210GrPixelConfig SkBitmapConfig2GrPixelConfig(SkBitmap::Config config) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000211 switch (config) {
212 case SkBitmap::kA8_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000213 return kAlpha_8_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000214 case SkBitmap::kIndex8_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000215 return kIndex_8_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000216 case SkBitmap::kRGB_565_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000217 return kRGB_565_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000218 case SkBitmap::kARGB_4444_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000219 return kRGBA_4444_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000220 case SkBitmap::kARGB_8888_Config:
bsalomon@google.comc4364992011-11-07 15:54:49 +0000221 return kSkia8888_PM_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000222 default:
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000223 // kNo_Config, kA1_Config missing, and kRLE_Index8_Config
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000224 return kUnknown_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000225 }
226}
227