I am working on an arbitrary-precision Mandelbrot fractal browser, and I want to take advantage of the GPU in order to do so. However; I don't really want to use anyone else's library for a few different reasons, and when i looked into gpu.js, nowhere does it say how it works. I've looked at the source code, but it's mangled beyond comprehension. If anybody could explain how it manipulates GPU threads, I would be elated!
-
The source code on github seems like it's not compressed or mangled. github.com/gpujs/gpu.js. Also, be wary of NIH (Not Invented Here) bias. Especially in Javascript, it's almost always better to use a library than to try to 'roll your own'.g.d.d.c– g.d.d.c2020-07-01 22:51:16 +00:00Commented Jul 1, 2020 at 22:51
Add a comment
|