diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c943a9..a53f064 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.25) -set(BLT_GRAPHICS_VERSION 0.13.20) +set(BLT_GRAPHICS_VERSION 0.13.21) set(BLT_GRAPHICS_TEST_VERSION 0.0.1) project(BLT_WITH_GRAPHICS VERSION ${BLT_GRAPHICS_VERSION}) diff --git a/examples/basic/basic.cpp b/examples/basic/basic.cpp index b022a7d..fde7ddf 100644 --- a/examples/basic/basic.cpp +++ b/examples/basic/basic.cpp @@ -22,7 +22,7 @@ blt::gfx::matrix_state_manager global_matrices; blt::gfx::resource_manager resources; -blt::gfx::batch_renderer_2d renderer_2d(resources); +blt::gfx::batch_renderer_2d renderer_2d(resources, global_matrices); blt::gfx::first_person_camera camera; void init(const blt::gfx::window_data&)