diff options
| author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2026-03-06 14:11:38 +0000 |
|---|---|---|
| committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2026-03-06 14:11:38 +0000 |
| commit | 182f823116458ad357823f4cc56638980aafa0f6 (patch) | |
| tree | b6937e27e6d2875d8242e40645929f12138712c4 /gfx/gl | |
| parent | Define SequentialCollection in terms of contiguous_range (diff) | |
| download | ilt-182f823116458ad357823f4cc56638980aafa0f6.tar.bz2 ilt-182f823116458ad357823f4cc56638980aafa0f6.tar.xz ilt-182f823116458ad357823f4cc56638980aafa0f6.zip | |
Replace generic glBuffer type alias with a full implementation
Adds wrappers for DSA storage and data uploads.
Diffstat (limited to 'gfx/gl')
| -rw-r--r-- | gfx/gl/glBuffer.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gfx/gl/glBuffer.h b/gfx/gl/glBuffer.h new file mode 100644 index 0000000..f43c223 --- /dev/null +++ b/gfx/gl/glBuffer.h @@ -0,0 +1,27 @@ +#pragma once + +#include "glArrays.h" + +namespace Impl { + // NOLINTNEXTLINE(readability-identifier-naming) + struct glBuffer : Detail::glNamed { + void + storage(const std::ranges::contiguous_range auto & data, GLenum flags) + { + glNamedBufferStorage( + name, static_cast<GLsizeiptr>(data.size() * sizeof(decltype(*data.data()))), data.data(), flags); + } + + void + data(const std::ranges::contiguous_range auto & data, GLenum flags) + { + glNamedBufferData( + name, static_cast<GLsizeiptr>(data.size() * sizeof(decltype(*data.data()))), data.data(), flags); + } + }; +} + +// NOLINTBEGIN(readability-identifier-naming) +template<size_t N> using glBuffers = glManagedArray<Impl::glBuffer, N, &glCreateBuffers, &glDeleteBuffers>; +using glBuffer = glManagedSingle<Impl::glBuffer, &glCreateBuffers, &glDeleteBuffers>; +// NOLINTEND(readability-identifier-naming) |
