gpu.js icon indicating copy to clipboard operation
gpu.js copied to clipboard

GPU Accelerated JavaScript

Results 159 gpu.js issues
Sort by recently updated
recently updated
newest added

![A GIF or MEME to give some spice of the internet](https://media1.tenor.com/images/2ee3dd80805f64e9ddfadc36579c1758/tenor.gif) ## *What* is wrong? When trying to instance gpujs within a javascript worker using Firefox we get the error:...

![A GIF or MEME to give some spice of the internet](url) ## *What* is wrong? ## *Where* does it happen? ## *How* do we replicate the issue? ## *How* important...

Error: Error compiling fragment shader: ERROR: 0:404: '!' : wrong operand type - no operation '!' exists that takes an operand of type lowp int (or there is no acceptable...

![](https://media.giphy.com/media/B7ppUExX92PjW/giphy.gif) I'm currently writting a particle system, and following advice I have flattened all my particle position arrays so that they look like [x,y,z,x,y,z,x,y,z,..]. Nevertheless, an issue that I am...

This is not so much an issue report as a request for assistance. I've been working with GPU.js for a month or so, and *think* I understand it, but I'd...

## *What* is wrong? Multiplying this.thread.x (and y) by a float scale functions differently depending on the operand order. GPU interprets the scale as an integer in the form "this.thread.x...

When I try to pass a combinedKernel into combineKernels() to chain them, I got this: Uncaught TypeError: arguments[i].setCanvas is not a function at GPU.combineKernels

bug
enhancement
v1

Error: ``` Uncaught TypeError: Cannot read property 'kernel' of undefined at GPU.combineKernels (gpu-browser.js:18522) at gpuUtils.addFunctions (gpu-browser.js:14) at new gpuUtils (gpu-browser.js:14) at Object.parcelRequire.js/utils/eegworker.js../gpuUtils.js (gpu-browser.js:14) at newRequire (gpuUtils-functs.js:31) at eegworker.js:54 at gpuUtils.js:129...

## *What* is wrong? To make the loading time faster, I thought to prebuild my kernels once as JSON with toJSON(), and use this JSON to create my MapKernels. But...