I am writing a 3D graphics engine and I have some doubts.
Everywhere you can hear about "how bad it is to use too much uniform variables in your shader program, it can cause slowdown".
On the other side, some people say that re-using some built-in variables like gl_TextureMatrix or any other is a kind of bad practice. ("in the future GLSL there will be no "magic gl_Normal"...")
Who is right then, how should I organize creating my shader programs ? Should I write plenty of uniforms for each mechanism or can I rely on those built-in variables ? (for example, should I use built-in gl_LightSource or define own uniform array with light source informations, so I can have more lights on my scene (I know about deferred shading but I want to do basic multiple lights first) )
Or maybe, which built-in variables are 'OK' to reuse ?
What are (dis)advantages of each of those practices ?
Thanks in advance,
Glorian.