diff --git a/CMakeLists.txt b/CMakeLists.txt index cdd3275..73ef4bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(gpu-particles VERSION 0.0.13) +project(gpu-particles VERSION 0.0.14) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/include/vbo.h b/include/vbo.h index e891f40..f387b3d 100644 --- a/include/vbo.h +++ b/include/vbo.h @@ -109,7 +109,7 @@ namespace blt::gfx friend class detail::vbo_context_t; public: - explicit unique_vbo_t(const GLuint type): buffer_type(type) + explicit unique_vbo_t(const GLuint type): vboID(0), buffer_type(type) { glGenBuffers(1, &*vboID); }