Tutorial 11
Hi all,
Being a newbie to openGL I was using Nehe''s tutorials to learn openGL. Arriving at tutorial 11 I encountered an error. Within the DrawGLScene my compiler encounters an error as soon as x=12 and y=12. Does anyone know why I recieve an error message and if so, does he/she also knows how to solve this problem.
Thx,
Snikrot
Snikrot
When debugging I get the exception:
Unhandled exception in Tutorial11.exe (S3MICD.DLL): 0xC0000005: Access Violation.
Unhandled exception in Tutorial11.exe (S3MICD.DLL): 0xC0000005: Access Violation.
Snikrot
Seems like you''re trying to access outside of the array of points (we are talking about the flag tut right?)
but the array should be 45 in size not 12.
float points[ 45 ][ 45 ][3];
You havent changed this at all have you? Other than that i''m out of ideas.
Kazade.
Hyperdev
"To err is human, to really mess up requires a computer"
but the array should be 45 in size not 12.
float points[ 45 ][ 45 ][3];
You havent changed this at all have you? Other than that i''m out of ideas.
Kazade.
Hyperdev
"To err is human, to really mess up requires a computer"
"To err is human, to really mess up requires a computer"
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement