Goofy icon indicating copy to clipboard operation
Goofy copied to clipboard

Goofy - Realtime DXT1/ETC1 encoder

Results 1 Goofy issues
Sort by recently updated
recently updated
newest added

https://github.com/SergeyMakeev/Goofy/blob/master/GoofyTC/goofy_tc.h#L1453 `blRangeY.m128i_u8[0]` is not available outside MSVC. Possible replacement (and I am no expert in using processor intrinsics): ```cpp alignas(16) unsigned char m128i_u8[16]; _mm_storeu_si128((__m128i*)m128i_u8, blRangeY); const uint32_t block0a = etc1BrighnessRangeTocontrolByte[m128i_u8[0]]...