I made It!

Hi Everyone,

I just recently started programming with OpenGL and almost jump off in my chair after my first OpenGL application ran. I got some problem with the application though. I cannot close it, even after I clicked the X button on the window. What went wrong with it?

That would depend on the windowing library you are using, and how you is done the messages handling.
Is that Glut, winapi, GLX, … ?

I already found the problem. It’s the WM_CLOSE I forgot to include in my win32 message handler procedure. Thanks for the reply!