ParaGraphL
ParaGraphL copied to clipboard
When trying out this library with a large network, I was encountering a texture size error
What does this line do? And does node count/edge count matter, and is there a texture size limit?
https://github.com/nblintao/ParaGraphL/blob/b5af0695c15b2dca9ddd8e31ebc8237728441780/sigma.layout.paragraphl.js#L90
Thanks
There is a texture size limit depending on your GPU and WebGL version. The current ParaGraphL is not robust for any large number of node/edge. Maybe you would like to use other solutions without WebGL.
What does this line do? And does node count/edge count matter, and is there a texture size limit?
https://github.com/nblintao/ParaGraphL/blob/b5af0695c15b2dca9ddd8e31ebc8237728441780/sigma.layout.paragraphl.js#L90
Thanks
Because only the first line of FBO is supported
gl.readPixels(0, 0, nodesCount, 1, gl.RGBA, gl.FLOAT, output_arr);
Several changes are required to support this, including GLSL code