I'm going to ask a stupid question, so kill me not for it. ;) Based on the numerous previously unencountered issues you're having, try checking out from SVN again. I was having the hardest time compiling Cinelerra (a Linux video editor) one time --strange errors everywhere that no one had heard of and such- until I realized that my checkout was corrupt.
the code:
(html code tags don't seem to be working well, could be the semi-colons...)
void checkGLError(){
GLuint error;
error = glGetError();
if(error){
gcon.printf("OpenGL error : %s\n", getGLErrorString(error));
assert(false);
}
}
This is where the assert happened. Now what? What do I need to do to get a stack trace in VC++?
Thanks
I'm going to ask a stupid
I'm going to ask a stupid question, so kill me not for it. ;) Based on the numerous previously unencountered issues you're having, try checking out from SVN again. I was having the hardest time compiling Cinelerra (a Linux video editor) one time --strange errors everywhere that no one had heard of and such- until I realized that my checkout was corrupt.
Just a thought...