Hi all,
I’m the creator of the Gephi project, an open-source network visualization software using JOGL. The project have been accepted as a mentoring organization by Google for the Summer of Code. I think I have an interesting proposal to share here: Shader Engine. You may already know how Google SoC works, basically a student will receive payment for working on mentoring open-source projects.
For interested students, see our forum. You can also suggest ideas, until April 3 however. Thanks.
Here is the short version of the proposal:
This proposal is an experimental work about drawing large networks using GPU Shaders technology to improve performances and scalability. The aim is to create a basic 3D engine using suggested technologies and use it for drawing as many nodes and edges as possible.
Existing Gephi 3D engine is intended to be used with old hardware and so don’t profit from GPU revolution. Basically the engine draw only very basic shapes (sphere or cube for nodes and lines for edges), but a LOT of them. Drawing millions of objects, even if it is the same object is currently far from possible.
Shaders technologies have interesting features for our topic. For instance Geometry Shaders and (Pseudo-)Instancing techniques enhance performance when duplicating objects. Other techniques could be explored to reduce the amount of needed vertices or computing.
We suggest this draft roadmap:
* Getting started with loading and executing vertex and fragment shaders within a JOGL routine in a sample application.
* Try pseudo-instancing techniques for duplicating an existing shape, for instance a sphere.
* If available, use Geometry Shaders to implement an instancing test case.
* Try to create a Shader which will help to reduce sphere mesh size. For instance see if it is possible to create a sphere from only few triangles.
* Experimentation for increasing edge drawing performance using Shaders.
* Propose nice post-processing effects if you like!
I’m interested with comments about feasability of this project and so on