| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554 |
- /*
- * Copyright 2011-2017 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
- */
- #include <bimg/encode.h>
- #include "bimg_p.h"
- #include <libsquish/squish.h>
- #include <etc1/etc1.h>
- #include <etc2/ProcessRGB.hpp>
- #include <nvtt/nvtt.h>
- #include <pvrtc/PvrTcEncoder.h>
- #include <edtaa3/edtaa3func.h>
- BX_PRAGMA_DIAGNOSTIC_PUSH();
- BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4100) // warning C4100: 'alloc_context': unreferenced formal parameter
- BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4702) // warning C4702: unreachable code
- BX_PRAGMA_DIAGNOSTIC_IGNORED_CLANG_GCC("-Wunused-parameter") // warning: unused parameter ‘alloc_context’ [-Wunused-parameter]
- #define STB_IMAGE_RESIZE_IMPLEMENTATION
- #include <stb/stb_image_resize.h>
- BX_PRAGMA_DIAGNOSTIC_POP();
- extern "C" {
- #include <iqa.h>
- }
- namespace bimg
- {
- static uint32_t s_squishQuality[] =
- {
- squish::kColourClusterFit, // Default
- squish::kColourIterativeClusterFit, // Highest
- squish::kColourRangeFit, // Fastest
- };
- BX_STATIC_ASSERT(Quality::Count == BX_COUNTOF(s_squishQuality) );
- void imageEncodeFromRgba8(void* _dst, const void* _src, uint32_t _width, uint32_t _height, uint32_t _depth, TextureFormat::Enum _format, Quality::Enum _quality, bx::Error* _err)
- {
- const uint8_t* src = (const uint8_t*)_src;
- uint8_t* dst = (uint8_t*)_dst;
- const uint32_t srcPitch = _width*4;
- const uint32_t srcSlice = _height*srcPitch;
- const uint32_t dstBpp = getBitsPerPixel(_format);
- const uint32_t dstPitch = _width*dstBpp/8;
- const uint32_t dstSlice = _height*dstPitch;
- for (uint32_t zz = 0; zz < _depth && _err->isOk(); ++zz, src += srcSlice, dst += dstSlice)
- {
- switch (_format)
- {
- case TextureFormat::BC1:
- case TextureFormat::BC2:
- case TextureFormat::BC3:
- case TextureFormat::BC4:
- case TextureFormat::BC5:
- squish::CompressImage(src, _width, _height, dst
- , s_squishQuality[_quality]
- | (_format == TextureFormat::BC2 ? squish::kDxt3
- : _format == TextureFormat::BC3 ? squish::kDxt5
- : _format == TextureFormat::BC4 ? squish::kBc4
- : _format == TextureFormat::BC5 ? squish::kBc5
- : squish::kDxt1)
- );
- break;
- case TextureFormat::BC6H:
- case TextureFormat::BC7:
- BX_ERROR_SET(_err, BIMG_ERROR, "Unable to convert between input/output formats!");
- break;
- case TextureFormat::ETC1:
- etc1_encode_image(src, _width, _height, 4, _width*4, dst);
- break;
- case TextureFormat::ETC2:
- {
- const uint32_t blockWidth = (_width +3)/4;
- const uint32_t blockHeight = (_height+3)/4;
- uint64_t* dstBlock = (uint64_t*)dst;
- for (uint32_t yy = 0; yy < blockHeight; ++yy)
- {
- for (uint32_t xx = 0; xx < blockWidth; ++xx)
- {
- uint8_t block[4*4*4];
- const uint8_t* ptr = &src[(yy*srcPitch+xx*4)*4];
- for (uint32_t ii = 0; ii < 16; ++ii)
- { // BGRx
- bx::memCopy(&block[ii*4], &ptr[(ii%4)*srcPitch + (ii&~3)], 4);
- bx::xchg(block[ii*4+0], block[ii*4+2]);
- }
- *dstBlock++ = ProcessRGB_ETC2(block);
- }
- }
- }
- break;
- case TextureFormat::PTC14:
- {
- using namespace Javelin;
- RgbaBitmap bmp;
- bmp.width = _width;
- bmp.height = _height;
- bmp.data = const_cast<uint8_t*>(src);
- PvrTcEncoder::EncodeRgb4Bpp(dst, bmp);
- bmp.data = NULL;
- }
- break;
- case TextureFormat::PTC14A:
- {
- using namespace Javelin;
- RgbaBitmap bmp;
- bmp.width = _width;
- bmp.height = _height;
- bmp.data = const_cast<uint8_t*>(src);
- PvrTcEncoder::EncodeRgba4Bpp(dst, bmp);
- bmp.data = NULL;
- }
- break;
- case TextureFormat::BGRA8:
- imageSwizzleBgra8(dst, dstPitch, _width, _height, src, srcPitch);
- break;
- case TextureFormat::RGBA8:
- bx::memCopy(_dst, _src, srcPitch, _height, srcPitch, dstPitch);
- break;
- default:
- if (!imageConvert(dst, _format, src, TextureFormat::RGBA8, _width, _height, 1) )
- {
- BX_ERROR_SET(_err, BIMG_ERROR, "Unable to convert between input/output formats!");
- }
- break;
- }
- }
- }
- void imageEncodeFromRgba32f(bx::AllocatorI* _allocator, void* _dst, const void* _src, uint32_t _width, uint32_t _height, uint32_t _depth, TextureFormat::Enum _dstFormat, Quality::Enum _quality, bx::Error* _err)
- {
- BX_ERROR_SCOPE(_err);
- const uint8_t* src = (const uint8_t*)_src;
- switch (_dstFormat)
- {
- case TextureFormat::BC6H:
- nvtt::compressBC6H(src, _width, _height, _width*16, _dst);
- break;
- case TextureFormat::BC7:
- nvtt::compressBC7(src, _width, _height, _width*16, _dst);
- break;
- default:
- if (!imageConvert(_dst, _dstFormat, _src, TextureFormat::RGBA32F, _width, _height, _depth) )
- {
- uint8_t* temp = (uint8_t*)BX_ALLOC(_allocator, _width*_height*_depth*4);
- if (imageConvert(temp, TextureFormat::RGBA8, _src, TextureFormat::RGBA32F, _width, _height, _depth) )
- {
- for (uint32_t zz = 0; zz < _depth; ++zz)
- {
- const uint32_t zoffset = zz*_width*_height;
- for (uint32_t yy = 0; yy < _height; ++yy)
- {
- const uint32_t yoffset = zoffset + yy*_width;
- for (uint32_t xx = 0; xx < _width; ++xx)
- {
- const uint32_t offset = yoffset + xx;
- const float* input = (const float*)&src[offset * 16];
- uint8_t* output = &temp[offset * 4];
- output[0] = uint8_t(bx::clamp(input[0], 0.0f, 1.0f)*255.0f + 0.5f);
- output[1] = uint8_t(bx::clamp(input[1], 0.0f, 1.0f)*255.0f + 0.5f);
- output[2] = uint8_t(bx::clamp(input[2], 0.0f, 1.0f)*255.0f + 0.5f);
- output[3] = uint8_t(bx::clamp(input[3], 0.0f, 1.0f)*255.0f + 0.5f);
- }
- }
- }
- imageEncodeFromRgba8(_dst, temp, _width, _height, _depth, _dstFormat, _quality, _err);
- }
- else
- {
- BX_ERROR_SET(_err, BIMG_ERROR, "Unable to convert between input/output formats!");
- }
- BX_FREE(_allocator, temp);
- }
- break;
- }
- }
- void imageEncode(bx::AllocatorI* _allocator, void* _dst, const void* _src, TextureFormat::Enum _srcFormat, uint32_t _width, uint32_t _height, uint32_t _depth, TextureFormat::Enum _dstFormat, Quality::Enum _quality, bx::Error* _err)
- {
- switch (_dstFormat)
- {
- case bimg::TextureFormat::BC1:
- case bimg::TextureFormat::BC2:
- case bimg::TextureFormat::BC3:
- case bimg::TextureFormat::BC4:
- case bimg::TextureFormat::BC5:
- case bimg::TextureFormat::ETC1:
- case bimg::TextureFormat::ETC2:
- case bimg::TextureFormat::PTC14:
- case bimg::TextureFormat::PTC14A:
- {
- uint8_t* temp = (uint8_t*)BX_ALLOC(_allocator, _width*_height*_depth*4);
- imageDecodeToRgba8(temp, _src, _width, _height, _width*4, _srcFormat);
- imageEncodeFromRgba8(_dst, temp, _width, _height, _depth, _dstFormat, _quality, _err);
- BX_FREE(_allocator, temp);
- }
- break;
- case bimg::TextureFormat::BC6H:
- case bimg::TextureFormat::BC7:
- {
- uint8_t* temp = (uint8_t*)BX_ALLOC(_allocator, _width*_height*_depth*16);
- imageDecodeToRgba32f(_allocator, temp, _src, _width, _height, _depth, _width*16, _srcFormat);
- imageEncodeFromRgba32f(_allocator, _dst, temp, _width, _height, _depth, _dstFormat, _quality, _err);
- BX_FREE(_allocator, temp);
- }
- break;
- default:
- BX_ERROR_SET(_err, BIMG_ERROR, "Unable to convert between input/output formats!");
- break;
- }
- }
- ImageContainer* imageEncode(bx::AllocatorI* _allocator, TextureFormat::Enum _dstFormat, Quality::Enum _quality, const ImageContainer& _input)
- {
- ImageContainer* output = imageAlloc(_allocator
- , _dstFormat
- , uint16_t(_input.m_width)
- , uint16_t(_input.m_height)
- , uint16_t(_input.m_depth)
- , _input.m_numLayers
- , _input.m_cubeMap
- , 1 < _input.m_numMips
- );
- const uint16_t numSides = _input.m_numLayers * (_input.m_cubeMap ? 6 : 1);
- bx::Error err;
- for (uint16_t side = 0; side < numSides && err.isOk(); ++side)
- {
- for (uint8_t lod = 0, num = _input.m_numMips; lod < num && err.isOk(); ++lod)
- {
- ImageMip mip;
- if (imageGetRawData(_input, side, lod, _input.m_data, _input.m_size, mip) )
- {
- ImageMip dstMip;
- imageGetRawData(*output, side, lod, output->m_data, output->m_size, dstMip);
- uint8_t* dstData = const_cast<uint8_t*>(dstMip.m_data);
- imageEncode(_allocator
- , dstData
- , mip.m_data
- , mip.m_format
- , mip.m_width
- , mip.m_height
- , mip.m_depth
- , _dstFormat
- , _quality
- , &err
- );
- }
- }
- }
- if (err.isOk() )
- {
- return output;
- }
- imageFree(output);
- return NULL;
- }
- void imageRgba32f11to01(void* _dst, uint32_t _width, uint32_t _height, uint32_t _depth, uint32_t _pitch, const void* _src)
- {
- const uint8_t* src = (const uint8_t*)_src;
- uint8_t* dst = (uint8_t*)_dst;
- for (uint32_t zz = 0; zz < _depth; ++zz)
- {
- for (uint32_t yy = 0; yy < _height; ++yy)
- {
- for (uint32_t xx = 0; xx < _width; ++xx)
- {
- const uint32_t offset = yy*_pitch + xx * 16;
- const float* input = (const float*)&src[offset];
- float* output = (float*)&dst[offset];
- output[0] = input[0]*0.5f + 0.5f;
- output[1] = input[1]*0.5f + 0.5f;
- output[2] = input[2]*0.5f + 0.5f;
- output[3] = input[3]*0.5f + 0.5f;
- }
- }
- }
- }
- static void edtaa3(bx::AllocatorI* _allocator, double* _dst, uint32_t _width, uint32_t _height, double* _src)
- {
- const uint32_t numPixels = _width*_height;
- short* xdist = (short *)BX_ALLOC(_allocator, numPixels*sizeof(short) );
- short* ydist = (short *)BX_ALLOC(_allocator, numPixels*sizeof(short) );
- double* gx = (double*)BX_ALLOC(_allocator, numPixels*sizeof(double) );
- double* gy = (double*)BX_ALLOC(_allocator, numPixels*sizeof(double) );
- ::computegradient(_src, _width, _height, gx, gy);
- ::edtaa3(_src, gx, gy, _width, _height, xdist, ydist, _dst);
- for (uint32_t ii = 0; ii < numPixels; ++ii)
- {
- if (_dst[ii] < 0.0)
- {
- _dst[ii] = 0.0;
- }
- }
- BX_FREE(_allocator, xdist);
- BX_FREE(_allocator, ydist);
- BX_FREE(_allocator, gx);
- BX_FREE(_allocator, gy);
- }
- void imageMakeDist(bx::AllocatorI* _allocator, void* _dst, uint32_t _width, uint32_t _height, uint32_t _srcPitch, float _edge, const void* _src)
- {
- const uint32_t numPixels = _width*_height;
- double* imgIn = (double*)BX_ALLOC(_allocator, numPixels*sizeof(double) );
- double* outside = (double*)BX_ALLOC(_allocator, numPixels*sizeof(double) );
- double* inside = (double*)BX_ALLOC(_allocator, numPixels*sizeof(double) );
- for (uint32_t yy = 0; yy < _height; ++yy)
- {
- const uint8_t* src = (const uint8_t*)_src + yy*_srcPitch;
- double* dst = &imgIn[yy*_width];
- for (uint32_t xx = 0; xx < _width; ++xx)
- {
- dst[xx] = double(src[xx])/255.0;
- }
- }
- edtaa3(_allocator, outside, _width, _height, imgIn);
- for (uint32_t ii = 0; ii < numPixels; ++ii)
- {
- imgIn[ii] = 1.0 - imgIn[ii];
- }
- edtaa3(_allocator, inside, _width, _height, imgIn);
- BX_FREE(_allocator, imgIn);
- uint8_t* dst = (uint8_t*)_dst;
- double edgeOffset = _edge*0.5;
- double invEdge = 1.0/_edge;
- for (uint32_t ii = 0; ii < numPixels; ++ii)
- {
- double dist = bx::clamp( ( (outside[ii] - inside[ii])+edgeOffset) * invEdge, 0.0, 1.0);
- dst[ii] = 255-uint8_t(dist * 255.0);
- }
- BX_FREE(_allocator, inside);
- BX_FREE(_allocator, outside);
- }
- static const iqa_ssim_args s_iqaArgs =
- {
- 0.39f, // alpha
- 0.731f, // beta
- 1.12f, // gamma
- 187, // L
- 0.025987f, // K1
- 0.0173f, // K2
- 1 // factor
- };
- float imageQualityRgba8(
- const void* _reference
- , const void* _data
- , uint16_t _width
- , uint16_t _height
- )
- {
- float result = iqa_ssim( (const uint8_t*)_reference
- , (const uint8_t*)_data
- , _width
- , _height
- , _width*4
- , 0
- , &s_iqaArgs
- );
- return result;
- }
- bool imageResizeRgba32fLinear(ImageContainer* _dst, const ImageContainer* _src)
- {
- const uint16_t numSides = _src->m_numLayers * (_src->m_cubeMap ? 6 : 1);
- for (uint16_t side = 0; side < numSides; ++side)
- {
- bimg::ImageMip srcMip;
- bimg::imageGetRawData(*_src, side, 0, _src->m_data, _src->m_size, srcMip);
- const float* srcData = (const float*)(srcMip.m_data);
- bimg::ImageMip dstMip;
- bimg::imageGetRawData(*_dst, side, 0, _dst->m_data, _dst->m_size, dstMip);
- float* dstData = (float*)(dstMip.m_data);
- int result = stbir_resize_float_generic(
- (const float*)srcData, _src->m_width, _src->m_height, _src->m_width*16
- , ( float*)dstData, _dst->m_width, _dst->m_height, _dst->m_width*16
- , 4, 3
- , STBIR_FLAG_ALPHA_PREMULTIPLIED
- , STBIR_EDGE_CLAMP
- , STBIR_FILTER_DEFAULT
- , STBIR_COLORSPACE_LINEAR
- , NULL
- );
- if (1 != result)
- {
- return false;
- }
- }
- return true;
- }
- static float getAlpha(UnpackFn _unpack, const void* _data)
- {
- float rgba[4];
- _unpack(rgba, _data);
- return rgba[3];
- }
- float imageAlphaTestCoverage(TextureFormat::Enum _format, uint32_t _width, uint32_t _height, uint32_t _srcPitch, const void* _src, float _alphaRef, float _scale)
- {
- UnpackFn unpack = getUnpack(_format);
- if (NULL == unpack)
- {
- return 0.0f;
- }
- float coverage = 0.0f;
- const uint8_t* src = (const uint8_t*)_src;
- const uint32_t xstep = getBitsPerPixel(_format) / 8;
- const float numSamples = 8.0f;
- for (uint32_t yy = 0, ystep = _srcPitch; yy < _height-1; ++yy, src += ystep)
- {
- const uint8_t* data = src;
- for (uint32_t xx = 0; xx < _width-1; ++xx, data += xstep)
- {
- float alpha00 = _scale * getAlpha(unpack, data);
- float alpha10 = _scale * getAlpha(unpack, data+xstep);
- float alpha01 = _scale * getAlpha(unpack, data+ystep);
- float alpha11 = _scale * getAlpha(unpack, data+ystep+xstep);
- for (float fy = 0.5f/numSamples; fy < 1.0f; fy += 1.0f)
- {
- for (float fx = 0.5f/numSamples; fx < 1.0f; fx += 1.0f)
- {
- float alpha = 0.0f
- + alpha00 * (1.0f - fx) * (1.0f - fy)
- + alpha10 * ( fx) * (1.0f - fy)
- + alpha01 * (1.0f - fx) * ( fy)
- + alpha11 * ( fx) * ( fy)
- ;
- if (alpha > _alphaRef)
- {
- coverage += 1.0f;
- }
- }
- }
- }
- }
- return coverage / float(_width*_height*numSamples*numSamples);
- }
- void imageScaleAlphaToCoverage(TextureFormat::Enum _format, uint32_t _width, uint32_t _height, uint32_t _srcPitch, void* _src, float _desiredCoverage, float _alphaRef)
- {
- PackFn pack = getPack(_format);
- UnpackFn unpack = getUnpack(_format);
- if (NULL == pack
- || NULL == unpack)
- {
- return;
- }
- float min = 0.0f;
- float max = 4.0f;
- float scale = 1.0f;
- for (uint32_t ii = 0; ii < 8; ++ii)
- {
- float coverage = imageAlphaTestCoverage(
- _format
- , _width
- , _height
- , _srcPitch
- , _src
- , _alphaRef
- , scale
- );
- if (coverage < _desiredCoverage)
- {
- min = scale;
- }
- else if (coverage > _desiredCoverage)
- {
- max = scale;
- }
- else
- {
- break;
- }
- scale = (min + max) * 0.5f;
- }
- uint8_t* src = (uint8_t*)_src;
- const uint32_t xstep = getBitsPerPixel(_format) / 8;
- for (uint32_t yy = 0, ystep = _srcPitch; yy < _height; ++yy, src += ystep)
- {
- uint8_t* data = src;
- for (uint32_t xx = 0; xx < _width; ++xx, data += xstep)
- {
- float rgba[4];
- unpack(rgba, data);
- rgba[3] = bx::clamp(rgba[3]*scale, 0.0f, 1.0f);
- pack(data, rgba);
- }
- }
- }
- } // namespace bimg
|