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

Replace return by discard

parent af8141b4
No related branches found
No related tags found
No related merge requests found
......@@ -33,8 +33,8 @@ void main() {
vec3 voxelCoordinates = worldToVoxelCoordinates(passPos, voxelInfo);
ivec3 voxelImageSize = imageSize(voxelImage);
ivec3 UV = voxelCoordinatesToUV(voxelCoordinates, voxelImageSize);
if(any(lessThan(UV, ivec3(0))) || any(greaterThanEqual(UV, voxelImageSize))){
return;
if (any(lessThan(UV, ivec3(0))) || any(greaterThanEqual(UV, voxelImageSize))){
discard;
}
uint flatIndex = flattenVoxelUVToIndex(UV, voxelImageSize);
......
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