My game application has four states. First state showing car to choose, second state showing track to choose and third state is loading the track and car data and fourth state is game play. I am setting light as given in code initially
float lightAmbient[] = { 0.0f, 0.0f, 0.0f, 1.0f };
float lightDiffuse[] = { 1.0f, 0.0f, 0.0f, 1.0f };
float matAmbient[] = { 0.0f, 0.0f, 0.0f, 1.0f };
float matDiffuse[] = { 0.6f, 0.0f, 0.0f, 1.0f };
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, matAmbient);
glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, matDiffuse);
glLightfv(GL_LIGHT0, GL_AMBIENT, lightAmbient);
glLightfv(GL_LIGHT0, GL_DIFFUSE, lightDiffuse);
GLfloat position[] = { 0, 0, 1, 0.0 };
glLightfv(GL_LIGHT0, GL_POSITION, position);
On state one and two its work fine but as the game goes to state four the light effect shows only for first frame and then light default setting sets, i am not using gldisable anywhere in the code. Any suggestions will be of great help