diff options
author | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2023-12-18 20:51:17 +0100 |
---|---|---|
committer | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2023-12-19 17:49:05 +0100 |
commit | 50d33aac6c5e73381a878c424d12c63f05f881dc (patch) | |
tree | 072a6a0e5e318878bc468bd69cd48aaff83ad904 /thirdparty/etcpak/ProcessRGB.hpp | |
parent | bf8dd73e9d88d6ab146506699f43230b12c6a2b0 (diff) | |
download | redot-engine-50d33aac6c5e73381a878c424d12c63f05f881dc.tar.gz |
Implement ETC2_R and ETC2_RG compression to `etcpak`
Diffstat (limited to 'thirdparty/etcpak/ProcessRGB.hpp')
-rw-r--r-- | thirdparty/etcpak/ProcessRGB.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/thirdparty/etcpak/ProcessRGB.hpp b/thirdparty/etcpak/ProcessRGB.hpp index 043b46e636..050ea42562 100644 --- a/thirdparty/etcpak/ProcessRGB.hpp +++ b/thirdparty/etcpak/ProcessRGB.hpp @@ -9,5 +9,8 @@ void CompressEtc1Rgb( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_ void CompressEtc1RgbDither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); void CompressEtc2Rgb( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width, bool useHeuristics ); void CompressEtc2Rgba( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width, bool useHeuristics ); - +// -- GODOT start -- +void CompressEtc2R8( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); +void CompressEtc2RG8( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); +// -- GODOT end -- #endif |