From a1c14f4cf584e7330fd76e3d67cf69631bccf67a Mon Sep 17 00:00:00 2001 From: rkrolib Date: Fri, 31 Oct 2003 06:20:07 +0000 Subject: [PATCH] Cleansed fgCloseWindow(): * say-nothing-new comments axed. * de-TABbed. * Made the white-space to be consistant. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@276 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/freeglut/src/freeglut_window.c | 28 +++++++------------------ 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/freeglut/freeglut/src/freeglut_window.c b/freeglut/freeglut/src/freeglut_window.c index 6fc6ade..6125032 100644 --- a/freeglut/freeglut/src/freeglut_window.c +++ b/freeglut/freeglut/src/freeglut_window.c @@ -561,31 +561,19 @@ void fgCloseWindow( SFG_Window* window ) freeglut_assert_ready; #if TARGET_HOST_UNIX_X11 - /* - * As easy as kill bunnies with axes. Destroy the context first: - */ + glXDestroyContext( fgDisplay.Display, window->Window.Context ); - - /* - * Then have the window killed: - */ XDestroyWindow( fgDisplay.Display, window->Window.Handle ); - - /* - * Finally, flush the rests down the stream - */ XFlush( fgDisplay.Display ); #elif TARGET_HOST_WIN32 - /* - * Send the WM_CLOSE message to the window now - */ - SendMessage( - window->Window.Handle, - WM_CLOSE, - 0, - 0 - ); + + SendMessage( + window->Window.Handle, + WM_CLOSE, + 0, + 0 + ); #endif }