From 57c64359bd759ca23ec56affe561ea7fd97909a5 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 15 Mar 2025 13:42:49 +0000 Subject: Tidy glArrays, fixes warnings --- lib/glArrays.h | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/glArrays.h b/lib/glArrays.h index 787ea17..842a593 100644 --- a/lib/glArrays.h +++ b/lib/glArrays.h @@ -6,6 +6,7 @@ #include #include +// NOLINTNEXTLINE(readability-identifier-naming) template class glArraysBase { static_assert(N > 0); @@ -15,20 +16,30 @@ public: CUSTOM_MOVE(glArraysBase); // NOLINTNEXTLINE(hicpp-explicit-conversions) - inline operator GLuint() const + requires(N == 1) { - static_assert(N == 1, "Implicit cast only if N == 1"); return ids.front(); } - inline auto + GLuint + operator*() const + requires(N == 1) + { + return ids.front(); + } + + const auto & operator[](size_t n) const { return ids[n]; } - constexpr static auto size {N}; + constexpr static auto + size() + { + return N; + } protected: glArraysBase() noexcept = default; @@ -49,6 +60,7 @@ glArraysBase::operator=(glArraysBase && src) noexcept return *this; } +// NOLINTNEXTLINE(readability-identifier-naming) template class glArrays : public glArraysBase { public: using glArraysBase::glArraysBase; @@ -56,12 +68,12 @@ public: DEFAULT_MOVE_COPY(glArrays); - inline glArrays() noexcept + glArrays() noexcept { (*Gen)(N, this->ids.data()); } - inline ~glArrays() noexcept + ~glArrays() noexcept { if (this->ids.front()) { (*Del)(N, this->ids.data()); @@ -69,6 +81,7 @@ public: } }; +// NOLINTBEGIN(readability-identifier-naming) template using glVertexArrays = glArrays; using glVertexArray = glVertexArrays<1>; template using glBuffers = glArrays; @@ -79,3 +92,4 @@ template using glFrameBuffers = glArrays; template using glRenderBuffers = glArrays; using glRenderBuffer = glRenderBuffers<1>; +// NOLINTEND(readability-identifier-naming) -- cgit v1.2.3