Update 'src/blue_noise.cl'

Fix `twoToOne(...)` having variables with no types.
This commit is contained in:
stephenseo 2023-03-31 05:54:47 +00:00
parent 16ed743197
commit b40894f9d3

View file

@ -1,4 +1,4 @@
int twoToOne(x, y, width, height) {
int twoToOne(int x, int y, int width, int height) {
while(x < 0) {
x += width;
}