Fixed the flickering leftmost column.

This commit is contained in:
Rezmason
2021-11-01 08:49:33 -07:00
parent 348b07d237
commit 4294932d5f

View File

@@ -266,7 +266,7 @@ fn computeResult (isFirstFrame : bool, previousResult : vec4<f32>, glyphPos : ve
var row = i32(input.id.y); var row = i32(input.id.y);
var column = i32(input.id.x); var column = i32(input.id.x);
if (column > i32(config.gridSize.x)) { if (column >= i32(config.gridSize.x)) {
return; return;
} }