Fixing "fgDestroyWindow" error per e-mail from John Tsiombikas dated Wed, 26 May 2010 13:16:28 +0200
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@876 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
142e76b216
commit
c7aaa1bc6b
@ -1282,7 +1282,10 @@ void fgCloseWindow( SFG_Window* window )
|
||||
if( window->Window.Context )
|
||||
glXDestroyContext( fgDisplay.Display, window->Window.Context );
|
||||
XFree( window->Window.FBConfig );
|
||||
XDestroyWindow( fgDisplay.Display, window->Window.Handle );
|
||||
|
||||
if( window->Window.Handle ) {
|
||||
XDestroyWindow( fgDisplay.Display, window->Window.Handle );
|
||||
}
|
||||
/* XFlush( fgDisplay.Display ); */ /* XXX Shouldn't need this */
|
||||
|
||||
#elif TARGET_HOST_MS_WINDOWS
|
||||
|
Reference in New Issue
Block a user