diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-25 11:00:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 11:00:57 +0100 |
commit | 7c37ab53be4e47befe866cbf125e3aa18c27f4fe (patch) | |
tree | 8cda765c07afa5c45f60961b650e1c954d50ce37 /modules/basis_universal/SCsub | |
parent | 3990152f6b7fcbac39ed68f0cc0fd36131bc9e2f (diff) | |
parent | 3529141b4bf548218f70a713b4328220a566802d (diff) | |
download | redot-engine-7c37ab53be4e47befe866cbf125e3aa18c27f4fe.tar.gz |
Merge pull request #59503 from V-Sekai/basis-universal-update
Diffstat (limited to 'modules/basis_universal/SCsub')
-rw-r--r-- | modules/basis_universal/SCsub | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/basis_universal/SCsub b/modules/basis_universal/SCsub index 1f9fde966d..a3bd85089d 100644 --- a/modules/basis_universal/SCsub +++ b/modules/basis_universal/SCsub @@ -13,16 +13,15 @@ thirdparty_obj = [] thirdparty_dir = "#thirdparty/basis_universal/" # Sync list with upstream CMakeLists.txt encoder_sources = [ - "apg_bmp.c", - "basisu_astc_decomp.cpp", + "basisu_uastc_enc.cpp", "basisu_backend.cpp", "basisu_basis_file.cpp", "basisu_bc7enc.cpp", + "basisu_opencl.cpp", "basisu_comp.cpp", "basisu_enc.cpp", "basisu_etc.cpp", "basisu_frontend.cpp", - "basisu_global_selector_palette_helpers.cpp", "basisu_gpu_texture.cpp", "basisu_kernels_sse.cpp", "basisu_pvrtc1_4.cpp", @@ -31,7 +30,7 @@ encoder_sources = [ "basisu_ssim.cpp", "basisu_uastc_enc.cpp", "jpgd.cpp", - "lodepng.cpp", + "pvpngreader.cpp", ] encoder_sources = [thirdparty_dir + "encoder/" + file for file in encoder_sources] transcoder_sources = [thirdparty_dir + "transcoder/basisu_transcoder.cpp"] |