Skip to content

Commit

Permalink
Fix macos CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sguionni committed May 22, 2024
1 parent c7b6887 commit a2abd2d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/renderer/src/renderer/renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1006,12 +1006,12 @@ namespace VTX::Renderer
ComputePass::Data bufferAtomGridDataSorted { atomGridDataSorted.size() * sizeof( Range<uint> ),
atomGridDataSorted.data(),
1 };
ComputePass::Data bufferAtomIndexSorted(
atomIndexSorted.size() * sizeof( uint ), atomIndexSorted.data(), 2
);
ComputePass::Data bufferAtomPosition(
atomPositionsVdW.size() * sizeof( Vec4f ), atomPositionsVdW.data(), 3
);
ComputePass::Data bufferAtomIndexSorted { atomIndexSorted.size() * sizeof( uint ),
atomIndexSorted.data(),
2 };
ComputePass::Data bufferAtomPosition { atomPositionsVdW.size() * sizeof( Vec4f ),
atomPositionsVdW.data(),
3 };

const size_t sizeCreateSDF = bufferSesGridData.size + bufferAtomGridDataSorted.size
+ bufferAtomIndexSorted.size + bufferAtomPosition.size;
Expand Down

0 comments on commit a2abd2d

Please sign in to comment.