jacobi = gpu.createKernel(function(state, divergence) {
const n = state[this.thread.y + 1][this.thread.x];
const s = state[this.thread.y - 1][this.thread.x];
const e = state[this.thread.y][this.thread.x + 1];
const w = state[this.thread.y][this.thread.x - 1];
const div = divergence[this.thread.y][this.thread.x];
return 0.25 * (n + s + e + w - div);
})
.setArgumentTypes(["Array", "Array"])
.setConstants({ width, height })
.setOutput([velocityWidth, velocityHeight])