summaryrefslogtreecommitdiff
path: root/lib/glBuffers.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/glBuffers.h')
-rw-r--r--lib/glBuffers.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/glBuffers.h b/lib/glBuffers.h
index e91293c..e2c09df 100644
--- a/lib/glBuffers.h
+++ b/lib/glBuffers.h
@@ -2,6 +2,7 @@
#define GLBUFFERS_H
#include <GL/glew.h>
+#include <algorithm> // IWYU pragma: keep
#include <array>
#include <cstddef>
#include <special_members.hpp>
@@ -25,7 +26,7 @@ public:
}
NO_COPY(glBuffers);
- NO_MOVE(glBuffers);
+ CUSTOM_MOVE(glBuffers);
// NOLINTNEXTLINE(hicpp-explicit-conversions)
operator GLuint() const
@@ -43,6 +44,21 @@ public:
private:
std::array<GLuint, N> ids {};
};
+
+template<size_t N> glBuffers<N>::glBuffers(glBuffers<N> && src) noexcept : ids {src.ids}
+{
+ std::fill(src.ids.begin(), src.ids.end(), -1);
+}
+
+template<size_t N>
+glBuffers<N> &
+glBuffers<N>::operator=(glBuffers<N> && src) noexcept
+{
+ ids = src.ids;
+ std::fill(src.ids.begin(), src.ids.end(), -1);
+ return *this;
+}
+
using glBuffer = glBuffers<1>;
#endif