enabling lighting makes ugly

Started by
3 comments, last by stefu 22 years, 9 months ago
I have a proble with no idea where it comes from. I enabled lightin in OpenGL and it messed my graphics. Look at the screenshot below. http://www.geocities.com/stefankjb/ogl/lerror.html I don''t know if it has something to do with trianglesize, because car seems to be ok but track is ugly. It''d be strange still because lighting disabled everything is ok. Help me anyone who knows what caused the mess. Here''s how I set up material and light:
  
GLfloat Ambient[4] = {1.0f,1.0f,1.0f,1.0f};
GLfloat Diffuse[4] = {1.0f,1.0f,1.0f,1.0f};
GLfloat Emission[4] = {0.0f,0.0f,0.0f,0.0f};
GLfloat Specular[4] = {0.0f,0.0f,0.0f,0.0f};
GLfloat Shininess = 64;

glMaterialfv(GL_FRONT,GL_AMBIENT,Ambient);
glMaterialfv(GL_FRONT,GL_DIFFUSE,Diffuse);
glMaterialfv(GL_FRONT,GL_EMISSION,Emission);
glMaterialfv(GL_FRONT, GL_SPECULAR,Specular);
glMaterialf(GL_FRONT, GL_SHININESS,Shininess);


GLfloat LightAmbient[4] = {0.5f,0.5f,0.5f,1.0f};
GLfloat LightDiffuse[4] = {1.0f,1.0f,1.0f,1.0f};
GLfloat LightSpecular[4] = {0.0f,0.0f,0.0f,0.0f};
float LightDirectionalPos[4] = { 0.0f, 0.0f, 1.0f, 0.0f };
float LightDirection[3] = { 1.0f, -1.0f, 1.0f };

glLightfv(GL_LIGHT0,GL_AMBIENT,LightAmbient);
glLightfv(GL_LIGHT0,GL_DIFFUSE,LightDiffuse);
glLightfv(GL_LIGHT0,GL_SPECULAR,LightSpecular);
glLightfv(GL_LIGHT0,GL_POSITION,LightDirectionalPos);
glLightfv(GL_LIGHT0,GL_SPOT_DIRECTION,LightDirection);
glLightf(GL_LIGHT0,GL_CONSTANT_ATTENUATION,  1.0f);
glLightf(GL_LIGHT0,GL_LINEAR_ATTENUATION,    0.0f);
glLightf(GL_LIGHT0,GL_QUADRATIC_ATTENUATION, 0.0f);
glEnable(GL_LIGHT0);
  
Net Racing Demo: http://www.geocities.com/stefankjb/download.html
Advertisement
More informaion:
Ugly graphics happens only in screen edges. Triangles that are totally visible seems to be ok.
I use vertex arrays for rendering.

Net Racing Demo:
http://www.geocities.com/stefankjb/download.html
i dont see anything wrong with that picture with the lighting. though the texture coordinates seem very screwed up.
can u show a ''good'' screenshot alongside a ''bad'' screenshot

http://members.xoom.com/myBollux
Sorry if I didn''t explain my problem good enough. Lighting is not the actual problem. It works well. But when I enable lighting the all triangles that are clipped by screen edges seems go messy.

I updated the page and added also good picture there.
http://www.geocities.com/stefankjb/ogl/lerror.html



Net Racing Demo:
http://www.geocities.com/stefankjb/download.html
Doesn''t bother any more. Just setting light position (or direction since it directional light) everyframe solved the problem. But still I''m very amazed.

This topic is closed to new replies.

Advertisement