Skip to content
Snippets Groups Projects
Commit 38e22ec2 authored by Alexander Gauggel's avatar Alexander Gauggel
Browse files

[#87] Attempt to fix Mac compile error

parent 67865802
No related branches found
No related tags found
1 merge request!74Resolve "Mesh Shader Implementation"
Pipeline #26585 passed
...@@ -334,7 +334,7 @@ int main(int argc, const char** argv) { ...@@ -334,7 +334,7 @@ int main(int argc, const char** argv) {
uint32_t matrixIndex; uint32_t matrixIndex;
uint32_t meshletCount; uint32_t meshletCount;
}; };
PushConstants pushConstants{ 0, meshShaderModelData.meshlets.size() }; PushConstants pushConstants{ 0, static_cast<uint32_t>(meshShaderModelData.meshlets.size()) };
if (updateFrustumPlanes) { if (updateFrustumPlanes) {
const CameraPlanes cameraPlanes = computeCameraPlanes(camera); const CameraPlanes cameraPlanes = computeCameraPlanes(camera);
......
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