This is how i have declared my light values and their positions

is this correct or is there another more officiant way?

// Lighting values
GLfloat  greenLight[] = { 0.0f, 0.6f, 0.0f, 1.0f };
GLfloat  redLight[] = { 0.6f, 0.0f, 0.0f, 1.0f };
GLfloat  blueLight[] = { 0.0f, 0.6f, 0.0f, 1.0f };
GLfloat  whiteLight[] = { 0.2f, 0.2f, 0.2f, 1.0f };
GLfloat  sourceLight[] = { 0.9f, 0.9f, 0.9f, 1.0f };


GLfloat  lightPos[] = { 0.0f, 0.0f, 0.0f, 1.0f };
GLfloat  lightPos1[] = { 5.0f, -5.0f, 0.0f, 0.0f };
GLfloat  lightPos2[] = { -5.0f, 5.0f, 0.0f, 0.0f };
GLfloat  lightPos3[] = { 5.0f, 5.0f, 0.0f, 0.0f };
link|improve this question

56% accept rate
feedback

1 Answer

up vote 0 down vote accepted

There really isn't any other way to do it using fixed-function OpenGL. Setting the parameters is a small part of the cost of lighting. If you want something more efficient, I would recommend you learn non-deprecated OpenGL and implement lighting in a shader, which will probably be faster than fixed-function lighting.

link|improve this answer
Thanks for the info Rob i think I will look into that actually always wondered how to implement lighting in a shader :) always good to know extra info – Led K Jan 8 at 9:31
Here's a good guide to starting with GLSL and it includes a phong lighting shader: web.cs.wpi.edu/~emmanuel/courses/cs543/slides/… – Robert Rouhani Jan 8 at 9:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.