From 71a1e64047d3a1bd8b15e039564752c196084d68 Mon Sep 17 00:00:00 2001 From: Nicholas Sharp Date: Wed, 27 Dec 2023 19:47:45 -0500 Subject: [PATCH] unbreak buffer template type --- src/render/templated_buffers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/templated_buffers.cpp b/src/render/templated_buffers.cpp index 71e67128..c6d374e5 100644 --- a/src/render/templated_buffers.cpp +++ b/src/render/templated_buffers.cpp @@ -233,7 +233,7 @@ std::vector getAttributeBufferDataRange(AttributeBuffer& b } template <> -std::vector getAttributeBufferDataRange(AttributeBuffer& buff, size_t ind, size_t count) { +std::vector getAttributeBufferDataRange(AttributeBuffer& buff, size_t ind, size_t count) { std::vector uint32Vals = buff.getDataRange_uint32(ind, count); std::vector uint64Vals(count); for (size_t i = 0; i < count; i++) {