adding segs to +1 too many partitions, fix
This commit is contained in:
parent
83706a2429
commit
d0014270dc
1 changed files with 1 additions and 1 deletions
|
@ -1114,7 +1114,7 @@ proc partitionSegments(
|
||||||
else:
|
else:
|
||||||
var
|
var
|
||||||
atPartition = max(0, segment.at.y - result.startY.float32).uint32
|
atPartition = max(0, segment.at.y - result.startY.float32).uint32
|
||||||
toPartition = max(0, ceil(segment.to.y - result.startY.float32)).uint32
|
toPartition = max(0, segment.to.y - result.startY.float32).uint32
|
||||||
atPartition = atPartition div result.partitionHeight
|
atPartition = atPartition div result.partitionHeight
|
||||||
toPartition = toPartition div result.partitionHeight
|
toPartition = toPartition div result.partitionHeight
|
||||||
atPartition = clamp(atPartition, 0, result.partitions.high.uint32)
|
atPartition = clamp(atPartition, 0, result.partitions.high.uint32)
|
||||||
|
|
Loading…
Reference in a new issue