diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d6721b..94b4e5a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.25) include(FetchContent) -set(BLT_GRAPHICS_VERSION 1.1.4) +set(BLT_GRAPHICS_VERSION 1.1.5) set(BLT_GRAPHICS_TEST_VERSION 0.0.1) project(BLT_WITH_GRAPHICS VERSION ${BLT_GRAPHICS_VERSION}) diff --git a/include/blt/gfx/gl_includes.h b/include/blt/gfx/gl_includes.h index 90df392..e3dd8e3 100644 --- a/include/blt/gfx/gl_includes.h +++ b/include/blt/gfx/gl_includes.h @@ -8,7 +8,7 @@ #ifndef BLT_GL_INCLUDES_H #define BLT_GL_INCLUDES_H -#include +#include // emscripten provides its own gl bindings. #ifndef __EMSCRIPTEN__ diff --git a/include/blt/gfx/texture.h b/include/blt/gfx/texture.h index a9a7120..dac3397 100644 --- a/include/blt/gfx/texture.h +++ b/include/blt/gfx/texture.h @@ -20,7 +20,7 @@ #define BLT_TEXTURE_H #include -#include +#include #include #include #include diff --git a/libraries/BLT b/libraries/BLT index d32b5d3..04a5c01 160000 --- a/libraries/BLT +++ b/libraries/BLT @@ -1 +1 @@ -Subproject commit d32b5d398a8bded92409d7dc889ca752bb001d0c +Subproject commit 04a5c01704bbf126ef623d57af61359cdf3d659c diff --git a/src/blt/gfx/font/font.cpp b/src/blt/gfx/font/font.cpp index dfb9ae6..957689c 100644 --- a/src/blt/gfx/font/font.cpp +++ b/src/blt/gfx/font/font.cpp @@ -16,7 +16,7 @@ * along with this program. If not, see . */ #include -#include +#include #include #include #include "blt/std/assert.h" diff --git a/src/blt/gfx/model.cpp b/src/blt/gfx/model.cpp index 5115e58..d72c93e 100644 --- a/src/blt/gfx/model.cpp +++ b/src/blt/gfx/model.cpp @@ -17,7 +17,7 @@ */ #include #include -#include "blt/std/logging.h" +#include "blt/logging/logging.h" namespace blt::gfx { diff --git a/src/blt/gfx/raycast.cpp b/src/blt/gfx/raycast.cpp index 6ee0e31..956662b 100644 --- a/src/blt/gfx/raycast.cpp +++ b/src/blt/gfx/raycast.cpp @@ -16,7 +16,7 @@ */ #include #include -#include +#include #include namespace blt::gfx diff --git a/src/blt/gfx/renderer/camera.cpp b/src/blt/gfx/renderer/camera.cpp index d8cc32e..0b0e0cf 100644 --- a/src/blt/gfx/renderer/camera.cpp +++ b/src/blt/gfx/renderer/camera.cpp @@ -17,7 +17,7 @@ */ #include #include -#include +#include #include void blt::gfx::first_person_camera::update() diff --git a/src/blt/gfx/renderer/resource_manager.cpp b/src/blt/gfx/renderer/resource_manager.cpp index 57cccac..9f38ba0 100644 --- a/src/blt/gfx/renderer/resource_manager.cpp +++ b/src/blt/gfx/renderer/resource_manager.cpp @@ -16,7 +16,7 @@ * along with this program. If not, see . */ #include -#include +#include #include #include diff --git a/src/blt/gfx/state.cpp b/src/blt/gfx/state.cpp index 3f5e6cf..398e8d1 100644 --- a/src/blt/gfx/state.cpp +++ b/src/blt/gfx/state.cpp @@ -16,7 +16,7 @@ * along with this program. If not, see . */ #include -#include +#include #include "blt/std/assert.h" void blt::gfx::matrix_state_manager::update() diff --git a/src/blt/gfx/window.cpp b/src/blt/gfx/window.cpp index f5b5eec..f9e5729 100644 --- a/src/blt/gfx/window.cpp +++ b/src/blt/gfx/window.cpp @@ -5,7 +5,7 @@ */ #include #include -#include +#include #include #include #include