Added LoadTexture function

- Added stb_image for image loading
This commit is contained in:
TheCherno
2025-04-21 16:18:38 +10:00
parent 9e6f7d5e8d
commit 87873485f3
5 changed files with 8039 additions and 1 deletions

View File

@@ -9,10 +9,15 @@ set(SOURCES
Source/Shader.cpp
Source/Renderer.h
Source/Renderer.cpp
vendor/stb/stb_image.h
vendor/stb/stb_image.cpp
)
# Add the executable target
add_executable(App ${SOURCES})
target_link_libraries(App glfw)
target_link_libraries(App glad)
target_link_libraries(App glm)
target_link_libraries(App glm)
target_include_directories(App PRIVATE vendor/stb)