Skip to content
Snippets Groups Projects
Verified Commit 9820e437 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#70] Fixed type mismatch

parent 47cf5e37
No related branches found
No related tags found
1 merge request!57Resolve "Basic voxelization"
Pipeline #25832 passed
......@@ -415,8 +415,8 @@ int main(int argc, const char** argv) {
const uint32_t gammaCorrectionLocalGroupSize = 8;
const uint32_t gammaCorrectionDispatchCount[3] = {
glm::ceil(windowWidth / float(gammaCorrectionLocalGroupSize)),
glm::ceil(windowHeight / float(gammaCorrectionLocalGroupSize)),
static_cast<uint32_t>(glm::ceil(windowWidth / static_cast<float>(gammaCorrectionLocalGroupSize))),
static_cast<uint32_t>(glm::ceil(windowHeight / static_cast<float>(gammaCorrectionLocalGroupSize))),
1
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment