Skip to content

Commit 71a1e64

Browse files
committed
unbreak buffer template type
1 parent 65062f8 commit 71a1e64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/render/templated_buffers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ std::vector<glm::vec4> getAttributeBufferDataRange<glm::vec4>(AttributeBuffer& b
233233
}
234234

235235
template <>
236-
std::vector<size_t> getAttributeBufferDataRange<uint64_t>(AttributeBuffer& buff, size_t ind, size_t count) {
236+
std::vector<uint64_t> getAttributeBufferDataRange<uint64_t>(AttributeBuffer& buff, size_t ind, size_t count) {
237237
std::vector<uint32_t> uint32Vals = buff.getDataRange_uint32(ind, count);
238238
std::vector<uint64_t> uint64Vals(count);
239239
for (size_t i = 0; i < count; i++) {

0 commit comments

Comments
 (0)