123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /**************************************************************************/
- /* image_compress_etcpak.cpp */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #include "image_compress_etcpak.h"
- #include "core/os/os.h"
- #include "core/string/print_string.h"
- #include <ProcessDxtc.hpp>
- #include <ProcessRGB.hpp>
- EtcpakType _determine_etc_type(Image::UsedChannels p_channels) {
- switch (p_channels) {
- case Image::USED_CHANNELS_L:
- return EtcpakType::ETCPAK_TYPE_ETC2;
- case Image::USED_CHANNELS_LA:
- return EtcpakType::ETCPAK_TYPE_ETC2_ALPHA;
- case Image::USED_CHANNELS_R:
- return EtcpakType::ETCPAK_TYPE_ETC2_R;
- case Image::USED_CHANNELS_RG:
- return EtcpakType::ETCPAK_TYPE_ETC2_RG;
- case Image::USED_CHANNELS_RGB:
- return EtcpakType::ETCPAK_TYPE_ETC2;
- case Image::USED_CHANNELS_RGBA:
- return EtcpakType::ETCPAK_TYPE_ETC2_ALPHA;
- default:
- return EtcpakType::ETCPAK_TYPE_ETC2_ALPHA;
- }
- }
- EtcpakType _determine_dxt_type(Image::UsedChannels p_channels) {
- switch (p_channels) {
- case Image::USED_CHANNELS_L:
- return EtcpakType::ETCPAK_TYPE_DXT1;
- case Image::USED_CHANNELS_LA:
- return EtcpakType::ETCPAK_TYPE_DXT5;
- case Image::USED_CHANNELS_R:
- return EtcpakType::ETCPAK_TYPE_RGTC_R;
- case Image::USED_CHANNELS_RG:
- return EtcpakType::ETCPAK_TYPE_RGTC_RG;
- case Image::USED_CHANNELS_RGB:
- return EtcpakType::ETCPAK_TYPE_DXT1;
- case Image::USED_CHANNELS_RGBA:
- return EtcpakType::ETCPAK_TYPE_DXT5;
- default:
- return EtcpakType::ETCPAK_TYPE_DXT5;
- }
- }
- void _compress_etc1(Image *r_img) {
- _compress_etcpak(EtcpakType::ETCPAK_TYPE_ETC1, r_img);
- }
- void _compress_etc2(Image *r_img, Image::UsedChannels p_channels) {
- EtcpakType type = _determine_etc_type(p_channels);
- _compress_etcpak(type, r_img);
- }
- void _compress_bc(Image *r_img, Image::UsedChannels p_channels) {
- EtcpakType type = _determine_dxt_type(p_channels);
- _compress_etcpak(type, r_img);
- }
- void _compress_etcpak(EtcpakType p_compresstype, Image *r_img) {
- uint64_t start_time = OS::get_singleton()->get_ticks_msec();
- Image::Format img_format = r_img->get_format();
- if (Image::is_format_compressed(img_format)) {
- return; // Do not compress, already compressed.
- }
- if (img_format > Image::FORMAT_RGBA8) {
- // TODO: we should be able to handle FORMAT_RGBA4444 and FORMAT_RGBA5551 eventually
- return;
- }
- // Use RGBA8 to convert.
- if (img_format != Image::FORMAT_RGBA8) {
- r_img->convert(Image::FORMAT_RGBA8);
- }
- // Determine output format based on Etcpak type.
- Image::Format target_format = Image::FORMAT_RGBA8;
- if (p_compresstype == EtcpakType::ETCPAK_TYPE_ETC1) {
- target_format = Image::FORMAT_ETC;
- r_img->convert_rgba8_to_bgra8(); // It's badly documented but ETCPAK seems to be expected BGRA8 for ETC.
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_ETC2) {
- target_format = Image::FORMAT_ETC2_RGB8;
- r_img->convert_rgba8_to_bgra8(); // It's badly documented but ETCPAK seems to be expected BGRA8 for ETC.
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_ETC2_R) {
- target_format = Image::FORMAT_ETC2_R11;
- r_img->convert_rgba8_to_bgra8(); // It's badly documented but ETCPAK seems to be expected BGRA8 for ETC.
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_ETC2_RG) {
- target_format = Image::FORMAT_ETC2_RG11;
- r_img->convert_rgba8_to_bgra8(); // It's badly documented but ETCPAK seems to be expected BGRA8 for ETC.
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_ETC2_RA_AS_RG) {
- target_format = Image::FORMAT_ETC2_RA_AS_RG;
- r_img->convert_rg_to_ra_rgba8();
- r_img->convert_rgba8_to_bgra8(); // It's badly documented but ETCPAK seems to be expected BGRA8 for ETC.
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_ETC2_ALPHA) {
- target_format = Image::FORMAT_ETC2_RGBA8;
- r_img->convert_rgba8_to_bgra8(); // It's badly documented but ETCPAK seems to be expected BGRA8 for ETC.
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_DXT1) {
- target_format = Image::FORMAT_DXT1;
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_DXT5_RA_AS_RG) {
- target_format = Image::FORMAT_DXT5_RA_AS_RG;
- r_img->convert_rg_to_ra_rgba8();
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_DXT5) {
- target_format = Image::FORMAT_DXT5;
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_RGTC_R) {
- target_format = Image::FORMAT_RGTC_R;
- } else if (p_compresstype == EtcpakType::ETCPAK_TYPE_RGTC_RG) {
- target_format = Image::FORMAT_RGTC_RG;
- } else {
- ERR_FAIL_MSG("Invalid or unsupported etcpak compression format, not ETC or DXT.");
- }
- // Compress image data and (if required) mipmaps.
- const bool mipmaps = r_img->has_mipmaps();
- int width = r_img->get_width();
- int height = r_img->get_height();
- /*
- The first mipmap level of a compressed texture must be a multiple of 4. Quote from D3D11.3 spec:
- BC format surfaces are always multiples of full blocks, each block representing 4x4 pixels.
- For mipmaps, the top level map is required to be a multiple of 4 size in all dimensions.
- The sizes for the lower level maps are computed as they are for all mipmapped surfaces,
- and thus may not be a multiple of 4, for example a top level map of 20 results in a second level
- map size of 10. For these cases, there is a differing 'physical' size and a 'virtual' size.
- The virtual size is that computed for each mip level without adjustment, which is 10 for the example.
- The physical size is the virtual size rounded up to the next multiple of 4, which is 12 for the example,
- and this represents the actual memory size. The sampling hardware will apply texture address
- processing based on the virtual size (using, for example, border color if specified for accesses
- beyond 10), and thus for the example case will not access the 11th and 12th row of the resource.
- So for mipmap chains when an axis becomes < 4 in size, only texels 'a','b','e','f'
- are used for a 2x2 map, and texel 'a' is used for 1x1. Note that this is similar to, but distinct from,
- the surface pitch, which can encompass additional padding beyond the physical surface size.
- */
- int next_width = width <= 2 ? width : (width + 3) & ~3;
- int next_height = height <= 2 ? height : (height + 3) & ~3;
- if (next_width != width || next_height != height) {
- r_img->resize(next_width, next_height, Image::INTERPOLATE_LANCZOS);
- width = r_img->get_width();
- height = r_img->get_height();
- }
- // ERR_FAIL_COND(width % 4 != 0 || height % 4 != 0); // FIXME: No longer guaranteed.
- // Multiple-of-4 should be guaranteed by above.
- // However, power-of-two 3d textures will create Nx2 and Nx1 mipmap levels,
- // which are individually compressed Image objects that violate the above rule.
- // Hence, we allow Nx1 and Nx2 images through without forcing to multiple-of-4.
- const uint8_t *src_read = r_img->get_data().ptr();
- print_verbose(vformat("etcpak: Encoding image size %dx%d to format %s%s.", width, height, Image::get_format_name(target_format), mipmaps ? ", with mipmaps" : ""));
- int dest_size = Image::get_image_data_size(width, height, target_format, mipmaps);
- Vector<uint8_t> dest_data;
- dest_data.resize(dest_size);
- uint8_t *dest_write = dest_data.ptrw();
- int mip_count = mipmaps ? Image::get_image_required_mipmaps(width, height, target_format) : 0;
- Vector<uint32_t> padded_src;
- for (int i = 0; i < mip_count + 1; i++) {
- // Get write mip metrics for target image.
- int orig_mip_w, orig_mip_h;
- int mip_ofs = Image::get_image_mipmap_offset_and_dimensions(width, height, target_format, i, orig_mip_w, orig_mip_h);
- // Ensure that mip offset is a multiple of 8 (etcpak expects uint64_t pointer).
- ERR_FAIL_COND(mip_ofs % 8 != 0);
- uint64_t *dest_mip_write = (uint64_t *)&dest_write[mip_ofs];
- // Block size. Align stride to multiple of 4 (RGBA8).
- int mip_w = (orig_mip_w + 3) & ~3;
- int mip_h = (orig_mip_h + 3) & ~3;
- const uint32_t blocks = mip_w * mip_h / 16;
- // Get mip data from source image for reading.
- int src_mip_ofs = r_img->get_mipmap_offset(i);
- const uint32_t *src_mip_read = (const uint32_t *)&src_read[src_mip_ofs];
- // Pad textures to nearest block by smearing.
- if (mip_w != orig_mip_w || mip_h != orig_mip_h) {
- padded_src.resize(mip_w * mip_h);
- uint32_t *ptrw = padded_src.ptrw();
- int x = 0, y = 0;
- for (y = 0; y < orig_mip_h; y++) {
- for (x = 0; x < orig_mip_w; x++) {
- ptrw[mip_w * y + x] = src_mip_read[orig_mip_w * y + x];
- }
- // First, smear in x.
- for (; x < mip_w; x++) {
- ptrw[mip_w * y + x] = ptrw[mip_w * y + x - 1];
- }
- }
- // Then, smear in y.
- for (; y < mip_h; y++) {
- for (x = 0; x < mip_w; x++) {
- ptrw[mip_w * y + x] = ptrw[mip_w * y + x - mip_w];
- }
- }
- // Override the src_mip_read pointer to our temporary Vector.
- src_mip_read = padded_src.ptr();
- }
- switch (p_compresstype) {
- case EtcpakType::ETCPAK_TYPE_ETC1:
- CompressEtc1RgbDither(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- case EtcpakType::ETCPAK_TYPE_ETC2:
- CompressEtc2Rgb(src_mip_read, dest_mip_write, blocks, mip_w, true);
- break;
- case EtcpakType::ETCPAK_TYPE_ETC2_ALPHA:
- case EtcpakType::ETCPAK_TYPE_ETC2_RA_AS_RG:
- CompressEtc2Rgba(src_mip_read, dest_mip_write, blocks, mip_w, true);
- break;
- case EtcpakType::ETCPAK_TYPE_ETC2_R:
- CompressEacR(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- case EtcpakType::ETCPAK_TYPE_ETC2_RG:
- CompressEacRg(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- case EtcpakType::ETCPAK_TYPE_DXT1:
- CompressDxt1Dither(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- case EtcpakType::ETCPAK_TYPE_DXT5:
- case EtcpakType::ETCPAK_TYPE_DXT5_RA_AS_RG:
- CompressDxt5(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- case EtcpakType::ETCPAK_TYPE_RGTC_R:
- CompressBc4(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- case EtcpakType::ETCPAK_TYPE_RGTC_RG:
- CompressBc5(src_mip_read, dest_mip_write, blocks, mip_w);
- break;
- default:
- ERR_FAIL_MSG("etcpak: Invalid or unsupported compression format.");
- break;
- }
- }
- // Replace original image with compressed one.
- r_img->set_data(width, height, mipmaps, target_format, dest_data);
- print_verbose(vformat("etcpak: Encoding took %d ms.", OS::get_singleton()->get_ticks_msec() - start_time));
- }
|