textures: add BC1 and BC3 compressors and recompression setting

This commit is contained in:
Liam 2023-05-20 17:15:36 -04:00
parent a51f148a04
commit 011dfe1db7
23 changed files with 1150 additions and 27 deletions

View file

@ -139,3 +139,7 @@ if (NOT TARGET LLVM::Demangle)
target_sources(demangle PRIVATE demangle/ItaniumDemangle.cpp)
add_library(LLVM::Demangle ALIAS demangle)
endif()
add_library(stb STATIC)
target_include_directories(stb PUBLIC ./stb)
target_sources(stb PRIVATE stb/stb_dxt.cpp)