add sdl_image image_loader (untested)

This commit is contained in:
2024-04-16 00:45:12 +02:00
parent 3c7bd2e2cb
commit 43f8c22570
4 changed files with 131 additions and 0 deletions

View File

@ -29,6 +29,8 @@ add_executable(tomato
./image_loader_webp.cpp
./image_loader_qoi.hpp
./image_loader_qoi.cpp
./image_loader_sdl_image.hpp
./image_loader_sdl_image.cpp
./texture_uploader.hpp
./sdlrenderer_texture_uploader.hpp
@ -98,5 +100,6 @@ target_link_libraries(tomato PUBLIC
webpdemux
libwebpmux # the f why (needed for anim encode)
qoi
SDL3_image::SDL3_image
)