Skip to content

Instantly share code, notes, and snippets.

@jt0dd
Created September 1, 2018 13:27
Show Gist options
  • Save jt0dd/e2bbcdc24d09e97c8b644f6517309291 to your computer and use it in GitHub Desktop.
Save jt0dd/e2bbcdc24d09e97c8b644f6517309291 to your computer and use it in GitHub Desktop.
var tryConst = gpu.createKernel(
function() {
var pixel = this.constants.image[this.thread.x][this.thread.y];
this.color(pixel.r, pixel.g, pixel.b, pixel.a);
},
{
constants: { image }
}
).setOutput([width, height]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment