Skip to content

Commit

Permalink
unbreak buffer template type
Browse files Browse the repository at this point in the history
  • Loading branch information
nmwsharp committed Dec 28, 2023
1 parent 65062f8 commit 71a1e64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/templated_buffers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ std::vector<glm::vec4> getAttributeBufferDataRange<glm::vec4>(AttributeBuffer& b
}

template <>
std::vector<size_t> getAttributeBufferDataRange<uint64_t>(AttributeBuffer& buff, size_t ind, size_t count) {
std::vector<uint64_t> getAttributeBufferDataRange<uint64_t>(AttributeBuffer& buff, size_t ind, size_t count) {
std::vector<uint32_t> uint32Vals = buff.getDataRange_uint32(ind, count);
std::vector<uint64_t> uint64Vals(count);
for (size_t i = 0; i < count; i++) {
Expand Down

0 comments on commit 71a1e64

Please sign in to comment.