blob: 8240eb1acecd71792adbd6f9cfc96c628f7a223f [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
rileya@google.com24f3ad12012-07-18 21:47:40 +000059static GrContext::TextureCacheEntry sk_gr_create_bitmap_texture(GrContext* ctx,
robertphillips@google.com75b3c962012-06-07 12:08:45 +000060 uint64_t key,
bsalomon@google.comb8670992012-07-25 21:27:09 +000061 const GrTextureParams* params,
bsalomon@google.com50398bf2011-07-26 20:45:30 +000062 const SkBitmap& origBitmap) {
reed@google.comac10a2d2010-12-22 21:39:39 +000063 SkAutoLockPixels alp(origBitmap);
bsalomon@google.com50398bf2011-07-26 20:45:30 +000064 GrContext::TextureCacheEntry entry;
65
reed@google.comac10a2d2010-12-22 21:39:39 +000066 if (!origBitmap.readyToDraw()) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +000067 return entry;
reed@google.comac10a2d2010-12-22 21:39:39 +000068 }
69
70 SkBitmap tmpBitmap;
71
72 const SkBitmap* bitmap = &origBitmap;
bsalomon@google.com5782d712011-01-21 21:03:59 +000073
robertphillips@google.com75b3c962012-06-07 12:08:45 +000074 GrTextureDesc desc;
75 desc.fWidth = bitmap->width();
76 desc.fHeight = bitmap->height();
rileya@google.com24f3ad12012-07-18 21:47:40 +000077 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap->config());
robertphillips@google.com9c2ea842012-08-13 17:47:59 +000078
79 GrCacheData cacheData(key);
bsalomon@google.com5782d712011-01-21 21:03:59 +000080
reed@google.comac10a2d2010-12-22 21:39:39 +000081 if (SkBitmap::kIndex8_Config == bitmap->config()) {
82 // build_compressed_data doesn't do npot->pot expansion
83 // and paletted textures can't be sub-updated
bsalomon@google.comb8670992012-07-25 21:27:09 +000084 if (ctx->supportsIndex8PixelConfig(params,
reed@google.comac10a2d2010-12-22 21:39:39 +000085 bitmap->width(), bitmap->height())) {
bsalomon@google.com5782d712011-01-21 21:03:59 +000086 size_t imagesize = bitmap->width() * bitmap->height() +
bsalomon@google.comfea37b52011-04-25 15:51:06 +000087 kGrColorTableSize;
reed@google.comac10a2d2010-12-22 21:39:39 +000088 SkAutoMalloc storage(imagesize);
bsalomon@google.com5782d712011-01-21 21:03:59 +000089
reed@google.comac10a2d2010-12-22 21:39:39 +000090 build_compressed_data(storage.get(), origBitmap);
91
92 // our compressed data will be trimmed, so pass width() for its
93 // "rowBytes", since they are the same now.
junov@google.com4ee7ae52011-06-30 17:30:49 +000094
robertphillips@google.com9c2ea842012-08-13 17:47:59 +000095 if (GrCacheData::kScratch_CacheID != key) {
96 return ctx->createAndLockTexture(params, desc, cacheData,
97 storage.get(),
junov@google.com4ee7ae52011-06-30 17:30:49 +000098 bitmap->width());
99 } else {
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000100 entry = ctx->lockScratchTexture(desc,
101 GrContext::kExact_ScratchTexMatch);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000102 entry.texture()->writePixels(0, 0, bitmap->width(),
103 bitmap->height(), desc.fConfig,
104 storage.get(), 0);
junov@google.com4ee7ae52011-06-30 17:30:49 +0000105 return entry;
106 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000107
108 } else {
109 origBitmap.copyTo(&tmpBitmap, SkBitmap::kARGB_8888_Config);
110 // now bitmap points to our temp, which has been promoted to 32bits
111 bitmap = &tmpBitmap;
112 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000113 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000114
rileya@google.com24f3ad12012-07-18 21:47:40 +0000115 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap->config());
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000116 if (GrCacheData::kScratch_CacheID != key) {
117 // This texture is likely to be used again so leave it in the cache
118 // but locked.
119 return ctx->createAndLockTexture(params, desc, cacheData,
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000120 bitmap->getPixels(),
121 bitmap->rowBytes());
junov@google.com4ee7ae52011-06-30 17:30:49 +0000122 } else {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000123 // This texture is unlikely to be used again (in its present form) so
124 // just use a scratch texture. This will remove the texture from the
125 // cache so no one else can find it. Additionally, once unlocked, the
126 // scratch texture will go to the end of the list for purging so will
127 // likely be available for this volatile bitmap the next time around.
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000128 entry = ctx->lockScratchTexture(desc,
129 GrContext::kExact_ScratchTexMatch);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000130 entry.texture()->writePixels(0, 0,
131 bitmap->width(), bitmap->height(),
132 desc.fConfig,
133 bitmap->getPixels(),
134 bitmap->rowBytes());
junov@google.com4ee7ae52011-06-30 17:30:49 +0000135 return entry;
136 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000137}
138
reed@google.comac10a2d2010-12-22 21:39:39 +0000139///////////////////////////////////////////////////////////////////////////////
140
rileya@google.com24f3ad12012-07-18 21:47:40 +0000141GrContext::TextureCacheEntry GrLockCachedBitmapTexture(GrContext* ctx,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000142 const SkBitmap& bitmap,
143 const GrTextureParams* params) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000144 GrContext::TextureCacheEntry entry;
145
146 if (!bitmap.isVolatile()) {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000147 // If the bitmap isn't changing try to find a cached copy first
rileya@google.com24f3ad12012-07-18 21:47:40 +0000148 uint64_t key = bitmap.getGenerationID();
149 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
150
151 GrTextureDesc desc;
152 desc.fWidth = bitmap.width();
153 desc.fHeight = bitmap.height();
154 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
rileya@google.com24f3ad12012-07-18 21:47:40 +0000155
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000156 GrCacheData cacheData(key);
157
158 entry = ctx->findAndLockTexture(desc, cacheData, params);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000159 if (NULL == entry.texture()) {
bsalomon@google.comb8670992012-07-25 21:27:09 +0000160 entry = sk_gr_create_bitmap_texture(ctx, key, params, bitmap);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000161 }
162 } else {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000163 entry = sk_gr_create_bitmap_texture(ctx, GrCacheData::kScratch_CacheID, params, bitmap);
rileya@google.com24f3ad12012-07-18 21:47:40 +0000164 }
165 if (NULL == entry.texture()) {
166 GrPrintf("---- failed to create texture for cache [%d %d]\n",
167 bitmap.width(), bitmap.height());
168 }
169 return entry;
170}
171
172void GrUnlockCachedBitmapTexture(GrContext* ctx, GrContext::TextureCacheEntry cache) {
173 ctx->unlockTexture(cache);
174}
175
176///////////////////////////////////////////////////////////////////////////////
177
rileya@google.com24f3ad12012-07-18 21:47:40 +0000178GrPixelConfig SkBitmapConfig2GrPixelConfig(SkBitmap::Config config) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000179 switch (config) {
180 case SkBitmap::kA8_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000181 return kAlpha_8_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000182 case SkBitmap::kIndex8_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000183 return kIndex_8_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000184 case SkBitmap::kRGB_565_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000185 return kRGB_565_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000186 case SkBitmap::kARGB_4444_Config:
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000187 return kRGBA_4444_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000188 case SkBitmap::kARGB_8888_Config:
bsalomon@google.comc4364992011-11-07 15:54:49 +0000189 return kSkia8888_PM_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000190 default:
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000191 // kNo_Config, kA1_Config missing, and kRLE_Index8_Config
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000192 return kUnknown_GrPixelConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000193 }
194}
195