blob: 3624a064518e08064f854d2e07cbc709b38c2769 [file] [log] [blame]
/*
* Copyright 2020 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "src/core/SkCompressedDataUtils.h"
#include "include/core/SkColorPriv.h"
#include "include/core/SkData.h"
#include "include/private/SkColorData.h"
#include "src/core/SkMipMap.h"
struct ETC1Block {
uint32_t fHigh;
uint32_t fLow;
};
struct BC1Block {
uint16_t fColor0;
uint16_t fColor1;
uint32_t fIndices;
};
static SkPMColor from565(uint16_t rgb565) {
uint8_t r8 = SkR16ToR32((rgb565 >> 11) & 0x1F);
uint8_t g8 = SkG16ToG32((rgb565 >> 5) & 0x3F);
uint8_t b8 = SkB16ToB32(rgb565 & 0x1F);
return SkPackARGB32(0xFF, r8, g8, b8);
}
static int num_4x4_blocks(int size) {
return ((size + 3) & ~3) >> 2;
}
// return t*col0 + (1-t)*col1
static SkPMColor lerp(float t, SkPMColor col0, SkPMColor col1) {
SkASSERT(SkGetPackedA32(col0) == 0xFF && SkGetPackedA32(col1) == 0xFF);
// TODO: given 't' is only either 1/3 or 2/3 this could be done faster
uint8_t r8 = SkScalarRoundToInt(t * SkGetPackedR32(col0) + (1.0f - t) * SkGetPackedR32(col1));
uint8_t g8 = SkScalarRoundToInt(t * SkGetPackedG32(col0) + (1.0f - t) * SkGetPackedG32(col1));
uint8_t b8 = SkScalarRoundToInt(t * SkGetPackedB32(col0) + (1.0f - t) * SkGetPackedB32(col1));
return SkPackARGB32(0xFF, r8, g8, b8);
}
static bool decompress_bc1(SkISize dimensions, const uint8_t* srcData,
bool isOpaque, SkBitmap* dst) {
const BC1Block* srcBlocks = reinterpret_cast<const BC1Block*>(srcData);
int numXBlocks = num_4x4_blocks(dimensions.width());
int numYBlocks = num_4x4_blocks(dimensions.height());
SkPMColor colors[4];
for (int y = 0; y < numYBlocks; ++y) {
for (int x = 0; x < numXBlocks; ++x) {
const BC1Block* curBlock = &srcBlocks[y * numXBlocks + x];
colors[0] = from565(curBlock->fColor0);
colors[1] = from565(curBlock->fColor1);
if (isOpaque) {
colors[2] = lerp(2.0f/3.0f, colors[0], colors[1]);
colors[3] = lerp(1.0f/3.0f, colors[0], colors[1]);
} else {
colors[2] = SkPackARGB32(
0xFF,
(SkGetPackedR32(colors[0]) + SkGetPackedR32(colors[1])) >> 1,
(SkGetPackedG32(colors[0]) + SkGetPackedG32(colors[1])) >> 1,
(SkGetPackedB32(colors[0]) + SkGetPackedB32(colors[1])) >> 1);
colors[3] = SkPackARGB32(0, 0, 0, 0);
}
int shift = 0;
int offsetX = 4 * x, offsetY = 4 * y;
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j, shift += 2) {
if (offsetX + j >= dst->width() || offsetY + i >= dst->height()) {
// This can happen for the topmost levels of a mipmap and for
// non-multiple of 4 textures
continue;
}
int index = (curBlock->fIndices >> shift) & 0x3;
*dst->getAddr32(offsetX + j, offsetY + i) = colors[index];
}
}
}
}
return true;
}
// TODO: add decompression of ETC1
bool SkDecompress(sk_sp<SkData> data,
SkISize dimensions,
SkImage::CompressionType compressionType,
SkBitmap* dst) {
using Type = SkImage::CompressionType;
const uint8_t* bytes = data->bytes();
switch (compressionType) {
case Type::kNone: return false;
case Type::kETC2_RGB8_UNORM: return false;
case Type::kBC1_RGB8_UNORM: return decompress_bc1(dimensions, bytes, true, dst);
case Type::kBC1_RGBA8_UNORM: return decompress_bc1(dimensions, bytes, false, dst);
}
SkUNREACHABLE;
return false;
}
size_t SkCompressedDataSize(SkImage::CompressionType type, SkISize dimensions,
SkTArray<size_t>* individualMipOffsets, bool mipMapped) {
SkASSERT(!individualMipOffsets || !individualMipOffsets->count());
int numMipLevels = 1;
if (mipMapped) {
numMipLevels = SkMipMap::ComputeLevelCount(dimensions.width(), dimensions.height()) + 1;
}
size_t totalSize = 0;
switch (type) {
case SkImage::CompressionType::kNone:
break;
case SkImage::CompressionType::kETC2_RGB8_UNORM:
case SkImage::CompressionType::kBC1_RGB8_UNORM:
case SkImage::CompressionType::kBC1_RGBA8_UNORM: {
for (int i = 0; i < numMipLevels; ++i) {
int numBlocks = num_4x4_blocks(dimensions.width()) *
num_4x4_blocks(dimensions.height());
if (individualMipOffsets) {
individualMipOffsets->push_back(totalSize);
}
static_assert(sizeof(ETC1Block) == sizeof(BC1Block));
totalSize += numBlocks * sizeof(ETC1Block);
dimensions = {SkTMax(1, dimensions.width()/2), SkTMax(1, dimensions.height()/2)};
}
break;
}
}
return totalSize;
}
size_t SkCompressedFormatDataSize(SkImage::CompressionType compressionType,
SkISize dimensions, bool mipMapped) {
return SkCompressedDataSize(compressionType, dimensions, nullptr, mipMapped);
}