From 6724c68a103c1547050f5e58340e0f5af855dcae Mon Sep 17 00:00:00 2001 From: dcnieho Date: Fri, 23 Nov 2012 05:35:31 +0000 Subject: [PATCH] also added note about glutWMCloseFunc to docs, and forgot to put glugCloseFunc in the index. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1472 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/web-src/docs/api.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/freeglut/web-src/docs/api.php b/freeglut/web-src/docs/api.php index 2eb8d49..3b65981 100644 --- a/freeglut/web-src/docs/api.php +++ b/freeglut/web-src/docs/api.php @@ -133,6 +133,7 @@ contained herein.
  • glutDisplayFunc
  • glutOverlayDisplayFunc
  • glutReshapeFunc
  • +
  • glutCloseFunc
  • glutKeyboardFunc
  • glutSpecialFunc
  • glutKeyboardUpFunc
  • @@ -896,6 +897,10 @@ is not invoked from the glutDestroyWindow call, but at a later time point. Freeglut sets the current window to the window which is about to be closed when the callback is invoked. +Please note that other further developments of GLUT provide a +glutWMCloseFunc. For compatibility, FreeGLUT also +provides this function. It is however an alias to +glutCloseFunc.

    Changes From GLUT