diff options
Diffstat (limited to 'gfx')
| -rw-r--r-- | gfx/gl/glVertexArray.h | 15 | ||||
| -rw-r--r-- | gfx/models/mesh.h | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/gfx/gl/glVertexArray.h b/gfx/gl/glVertexArray.h new file mode 100644 index 0000000..891f21d --- /dev/null +++ b/gfx/gl/glVertexArray.h @@ -0,0 +1,15 @@ +#pragma once + +#include "config/types.h" +#include "glArrays.h" + +namespace Impl { + // NOLINTNEXTLINE(readability-identifier-naming) + struct glVertexArray : Detail::glNamed { }; +} + +// NOLINTBEGIN(readability-identifier-naming) +template<size_t N> +using glVertexArrays = glManagedArray<Impl::glVertexArray, N, &glCreateVertexArrays, &glDeleteVertexArrays>; +using glVertexArray = glManagedSingle<Impl::glVertexArray, &glCreateVertexArrays, &glDeleteVertexArrays>; +// NOLINTEND(readability-identifier-naming) diff --git a/gfx/models/mesh.h b/gfx/models/mesh.h index 8791aed..d6ac171 100644 --- a/gfx/models/mesh.h +++ b/gfx/models/mesh.h @@ -2,7 +2,7 @@ #include "config/types.h" #include "gfx/gl/vertexArrayObject.h" -#include <glArrays.h> +#include <gfx/gl/glVertexArray.h> #include <glad/gl.h> #include <ranges> #include <span> |
