freeglut should be spelled lowercase, fixed up all documentation

(cherry picked from commit 16e941b2a2)

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1807 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2017-06-14 20:51:30 +00:00
parent 75854e0698
commit 1941df93b9
7 changed files with 96 additions and 96 deletions

View File

@ -10,7 +10,7 @@ generateHeader($_SERVER['PHP_SELF']);
<p> <p>
FreeGLUT 3.0 introduces support for the Android platform.<br /> freeglut 3.0 introduces support for the Android platform.<br />
This platform is different than traditional desktop platforms, requiring cross-compilation, interfacing with a touchscreen, and ability for your application to be paused and resumed at any time.<br /> This platform is different than traditional desktop platforms, requiring cross-compilation, interfacing with a touchscreen, and ability for your application to be paused and resumed at any time.<br />
@ -50,7 +50,7 @@ generateHeader($_SERVER['PHP_SELF']);
</li> </li>
<li>Compile FreeGLUT and install it in your Android cross-compiler <li>Compile freeglut and install it in your Android cross-compiler
path: path:
<pre> <pre>
@ -111,7 +111,7 @@ generateHeader($_SERVER['PHP_SELF']);
make install make install
</pre> </pre>
<p>Check <code>progs/test-shapes-gles1/</code> in the FreeGLUT <p>Check <code>progs/test-shapes-gles1/</code> in the freeglut
source distribution for a complete, stand-alone example.</p> source distribution for a complete, stand-alone example.</p>
<h2>Compile your own project using the NDK build-system</h2> <h2>Compile your own project using the NDK build-system</h2>
@ -120,7 +120,7 @@ generateHeader($_SERVER['PHP_SELF']);
<li> <li>
Create a module hierarchy pointing to FreeGLUT, with our Android.mk: Create a module hierarchy pointing to freeglut, with our Android.mk:
<pre> <pre>
mkdir freeglut-gles/ mkdir freeglut-gles/
@ -218,7 +218,7 @@ New functions will be necessary to :
ready to accept <code>onCreate</code> event to become active ready to accept <code>onCreate</code> event to become active
again.<br /> again.<br />
By default, FreeGLUT <code>exit()</code>s when the last window is By default, freeglut <code>exit()</code>s when the last window is
closed (without returning to your <code>main</code>). But this closed (without returning to your <code>main</code>). But this
behavior can be changed behavior can be changed
with <code>glutSetOption(GLUT_ACTION_ON_WINDOW_CLOSE, ...)</code>, with <code>glutSetOption(GLUT_ACTION_ON_WINDOW_CLOSE, ...)</code>,
@ -240,7 +240,7 @@ New functions will be necessary to :
Real buttons such as the Back button appear to work correctly Real buttons such as the Back button appear to work correctly
(series of down events with proper getRepeatCount value).<br /> (series of down events with proper getRepeatCount value).<br />
To work around this, FreeGLUT provides its own minimal virtual To work around this, freeglut provides its own minimal virtual
keypad. It may be replaced by a virtual (touchscreen) joystick. keypad. It may be replaced by a virtual (touchscreen) joystick.
</li> </li>

View File

@ -246,7 +246,7 @@ contained herein.
<ol> <ol>
<li><a href="#ImplementationNotes">Implementation Notes</a></li> <li><a href="#ImplementationNotes">Implementation Notes</a></li>
<li><a href="#GLUT_State">GLUT State</a></li> <li><a href="#GLUT_State">GLUT State</a></li>
<li><a href="#Freeglut.h_Header">"freeglut.h" Header File</a></li> <li><a href="#freeglut.h_Header">"freeglut.h" Header File</a></li>
<li><a href="#References">References</a></li> <li><a href="#References">References</a></li>
<li><a href="#Index">Index</a></li> <li><a href="#Index">Index</a></li>
</ol> </ol>
@ -293,7 +293,7 @@ specifies the application program interface to the <i>freeglut</i> library.
In developing the <i>freeglut</i> library, we have taken careful steps In developing the <i>freeglut</i> library, we have taken careful steps
to ensure consistency in function operation across the board, in such a to ensure consistency in function operation across the board, in such a
manner as to maintain compatibility with GLUT's behavior whenever manner as to maintain compatibility with GLUT's behavior whenever
possible. In this section some of the important conventions of FreeGLUT, possible. In this section some of the important conventions of freeglut,
and their compatibility with GLUT, are made explicit. and their compatibility with GLUT, are made explicit.
</p> </p>
@ -444,7 +444,7 @@ functions specify a desired position and size for windows that
<i>freeglut</i> will create in the future. <i>freeglut</i> will create in the future.
The position is measured in pixels from the upper left hand corner of the The position is measured in pixels from the upper left hand corner of the
screen, with "x" increasing to the right and "y" increasing towards the bottom screen, with "x" increasing to the right and "y" increasing towards the bottom
of the screen. The size is measured in pixels. <i>Freeglut</i> of the screen. The size is measured in pixels. <i>freeglut</i>
does not promise to follow these specifications in creating its windows, does not promise to follow these specifications in creating its windows,
but it certainly makes an attempt to. but it certainly makes an attempt to.
</p> </p>
@ -459,7 +459,7 @@ left-hand corner of the window's decorations. Also for both operating
systems, the size of the window is the size of the usable interior.<br> systems, the size of the window is the size of the usable interior.<br>
With <tt>glutGet</tt> information can be acquired about the current With <tt>glutGet</tt> information can be acquired about the current
window's size, position and decorations. Note however that according to window's size, position and decorations. Note however that according to
<a href="#Conventions">FreeGLUT's conventions</a>, the information <a href="#Conventions">freeglut's conventions</a>, the information
returned about the window coordinates does not correspond to the returned about the window coordinates does not correspond to the
coordinates used when setting window position. In addition, GLUT only coordinates used when setting window position. In addition, GLUT only
accepts positive window coordinates, and ignores all negative window accepts positive window coordinates, and ignores all negative window
@ -502,7 +502,7 @@ will accept negative window coordinates.
<p> <p>
glutInitDisplayString support is limited: any of the tokens recognized glutInitDisplayString support is limited: any of the tokens recognized
by GLUT are also recognized by <i>FreeGLUT</i>, but any statements with by GLUT are also recognized by <i>freeglut</i>, but any statements with
comparators cannot (yet: do <a href="../help.php">help develop comparators cannot (yet: do <a href="../help.php">help develop
this!</a>) be handled. Any spec (comparator and value) after the token this!</a>) be handled. Any spec (comparator and value) after the token
is ignored. However, many of these values can be set with glutSetOption is ignored. However, many of these values can be set with glutSetOption
@ -513,7 +513,7 @@ for now...
<p> <p>
The <tt>glutInitErrorFunc</tt> and <tt>glutInitWarningFunc</tt> The <tt>glutInitErrorFunc</tt> and <tt>glutInitWarningFunc</tt>
functions specify callbacks that will be called upon warnings and errors functions specify callbacks that will be called upon warnings and errors
issued from within <i>FreeGLUT</i> so that the user can deal with these. issued from within <i>freeglut</i> so that the user can deal with these.
Useful for rerouting to another output sink (e.g., logging) and also to Useful for rerouting to another output sink (e.g., logging) and also to
avoid exit(1) being called upon error. As with other glutInit* avoid exit(1) being called upon error. As with other glutInit*
functions, these can be set before glutInit is called, so any output functions, these can be set before glutInit is called, so any output
@ -530,7 +530,7 @@ The users callback is passed a format string and a variable argument
list that can be passed to functions such as <tt>printf</tt>.<br /> list that can be passed to functions such as <tt>printf</tt>.<br />
Note that there are the preprocessor definitions Note that there are the preprocessor definitions
<tt>FREEGLUT_PRINT_ERRORS</tt> and <tt>FREEGLUT_PRINT_WARNINGS</tt>, <tt>FREEGLUT_PRINT_ERRORS</tt> and <tt>FREEGLUT_PRINT_WARNINGS</tt>,
which affect <i>FreeGLUT</i>'s warning and error behavior when no user which affect <i>freeglut</i>'s warning and error behavior when no user
callback is defined. If defined at library (not client app!) compile callback is defined. If defined at library (not client app!) compile
time--by default it is, warnings and errors are printed to time--by default it is, warnings and errors are printed to
<tt>stderr</tt>. If not defined, warnings and errors are muted (not <tt>stderr</tt>. If not defined, warnings and errors are muted (not
@ -559,7 +559,7 @@ the event loop (as invoked by the <tt>glutMainLoop</tt> function) to the
calling function. This prevented an application from having re-entrant calling function. This prevented an application from having re-entrant
code, in which GLUT could be invoked from within a callback, and it prevented code, in which GLUT could be invoked from within a callback, and it prevented
the application from doing any post-processing (such as freeing allocated the application from doing any post-processing (such as freeing allocated
memory) after GLUT had closed down. <i>Freeglut</i> allows the application memory) after GLUT had closed down. <i>freeglut</i> allows the application
programmer to specify more direct control over the event loop by means of programmer to specify more direct control over the event loop by means of
two new functions. The first, <tt>glutMainLoopEvent</tt>, processes two new functions. The first, <tt>glutMainLoopEvent</tt>, processes
a single iteration of the event loop and allows the application to use a different a single iteration of the event loop and allows the application to use a different
@ -592,7 +592,7 @@ and so on.
<p> <p>
In GLUT, there was absolutely no way for the application programmer to In GLUT, there was absolutely no way for the application programmer to
have control return from the <tt>glutMainLoop</tt> function to the have control return from the <tt>glutMainLoop</tt> function to the
calling function. <i>Freeglut</i> allows the programmer calling function. <i>freeglut</i> allows the programmer
to force this by setting the <tt>GLUT_ACTION_ON_WINDOW_CLOSE</tt> option to force this by setting the <tt>GLUT_ACTION_ON_WINDOW_CLOSE</tt> option
and invoking the <tt>glutLeaveMainLoop</tt> function from one of the callbacks. and invoking the <tt>glutLeaveMainLoop</tt> function from one of the callbacks.
Stopping the program this way is preferable to simply calling <tt>exit</tt> Stopping the program this way is preferable to simply calling <tt>exit</tt>
@ -650,9 +650,9 @@ will exit.
<p> <p>
If the application has two nested calls to <tt>glutMainLoop</tt> and calls If the application has two nested calls to <tt>glutMainLoop</tt> and calls
<tt>glutLeaveMainLoop</tt>, the behaviour <tt>glutLeaveMainLoop</tt>, the behaviour
of <i>FreeGLUT</i> is undefined. It may leave only the inner nested of <i>freeglut</i> is undefined. It may leave only the inner nested
loop or it may leave both loops. If the reader has a strong preference loop or it may leave both loops. If the reader has a strong preference
for one behaviour over the other he should contact the <i>FreeGLUT</i> Programming for one behaviour over the other he should contact the <i>freeglut</i> Programming
Consortium and ask for the code to be fixed. Consortium and ask for the code to be fixed.
</p> </p>
@ -728,7 +728,7 @@ an iconified state respectively.
Normally a window system displays a title for every top-level window in Normally a window system displays a title for every top-level window in
the system. The initial title is set when you call glutCreateWindow(). the system. The initial title is set when you call glutCreateWindow().
By means of the <tt>glutSetWindowTitle</tt> function you can set the By means of the <tt>glutSetWindowTitle</tt> function you can set the
titles for your top-level <i>FreeGLUT</i> windows. If you just want one titles for your top-level <i>freeglut</i> windows. If you just want one
title for the window over the window's entire life, you should set it title for the window over the window's entire life, you should set it
when you open the window with glutCreateWindow().<br> when you open the window with glutCreateWindow().<br>
<tt>glutSetIconTitle</tt> sets the title to be displayed for the window <tt>glutSetIconTitle</tt> sets the title to be displayed for the window
@ -738,7 +738,7 @@ when it is in iconified (minimized) state.
<p><b>Changes From GLUT</b></p> <p><b>Changes From GLUT</b></p>
<p><tt>glutSetIconTitle</tt> does nothing in GLUT on Windows, but is <p><tt>glutSetIconTitle</tt> does nothing in GLUT on Windows, but is
emulated on Windows by <i>FreeGLUT</i>.</p> emulated on Windows by <i>freeglut</i>.</p>
<h2>6.6 glutReshapeWindow</h2> <h2>6.6 glutReshapeWindow</h2>
@ -800,7 +800,7 @@ current window.
<h1>9. <a name="Overlay"></a>Overlay Functions</h1> <h1>9. <a name="Overlay"></a>Overlay Functions</h1>
<p> <p>
<i>Freeglut</i> does not allow overlays, although it does "answer the mail" <i>freeglut</i> does not allow overlays, although it does "answer the mail"
with function stubs so that GLUT-based programs can compile and link against with function stubs so that GLUT-based programs can compile and link against
<i>freeglut</i> without modification. <i>freeglut</i> without modification.
</p> </p>
@ -993,7 +993,7 @@ stroke font, or an unknown font.
<p> <p>
The <tt>glutIdleFunc</tt> function sets the global idle callback. <i> The <tt>glutIdleFunc</tt> function sets the global idle callback. <i>
Freeglut</i> calls the idle callback when there are no inputs from the user. freeglut</i> calls the idle callback when there are no inputs from the user.
</p> </p>
<p><b>Usage</b></p> <p><b>Usage</b></p>
@ -1012,7 +1012,7 @@ specifies the function that <i>freeglut</i> will call to perform background
processing tasks such as continuous animation when window system events are processing tasks such as continuous animation when window system events are
not being received. If enabled, this function is called continuously not being received. If enabled, this function is called continuously
from <i>freeglut</i> while no events are received. The callback function from <i>freeglut</i> while no events are received. The callback function
has no parameters and returns no value. <i>Freeglut</i> does not change has no parameters and returns no value. <i>freeglut</i> does not change
the <i>current window</i> or the <i>current menu</i> before invoking the idle the <i>current window</i> or the <i>current menu</i> before invoking the idle
callback; programs with multiple windows or menus must explicitly set the callback; programs with multiple windows or menus must explicitly set the
<i>current window</i> and <i>current menu</i> <i>current window</i> and <i>current menu</i>
@ -1056,7 +1056,7 @@ the idle callback. </p>
<p> <p>
The <tt>glutPositionFunc</tt> function sets the window's position The <tt>glutPositionFunc</tt> function sets the window's position
callback. <i>Freeglut</i> calls the position callback when the window is callback. <i>freeglut</i> calls the position callback when the window is
repositioned/moved programatically or by the user. repositioned/moved programatically or by the user.
</p> </p>
@ -1067,12 +1067,12 @@ repositioned/moved programatically or by the user.
<p><b>Description</b></p> <p><b>Description</b></p>
<p>When <i>FreeGLUT</i> calls this callback, it provides the new <p>When <i>freeglut</i> calls this callback, it provides the new
position on the screen of the top-left of the <u>non-client area</u>, position on the screen of the top-left of the <u>non-client area</u>,
that is, the same coordinates used by <tt>glutInitPosition</tt> and that is, the same coordinates used by <tt>glutInitPosition</tt> and
<tt>glutPositionWindow</tt>. To get the position on the screen of the <tt>glutPositionWindow</tt>. To get the position on the screen of the
top-left of the client area, use <tt>glutGet(GLUT_WINDOW_X)</tt> and top-left of the client area, use <tt>glutGet(GLUT_WINDOW_X)</tt> and
<tt>glutGet(GLUT_WINDOW_Y)</tt>. See <a href="#Conventions">FreeGLUT's <tt>glutGet(GLUT_WINDOW_Y)</tt>. See <a href="#Conventions">freeglut's
conventions</a> for more information.</p> conventions</a> for more information.</p>
<p><b>Changes From GLUT</b></p> <p><b>Changes From GLUT</b></p>
@ -1083,7 +1083,7 @@ conventions</a> for more information.</p>
<p> <p>
The <tt>glutCloseFunc</tt> function sets the window's close The <tt>glutCloseFunc</tt> function sets the window's close
callback. <i>Freeglut</i> calls the close callback when the window is callback. <i>freeglut</i> calls the close callback when the window is
about to be destroyed. about to be destroyed.
</p> </p>
@ -1105,10 +1105,10 @@ window header (for top-level windows only), or due to a pending closure
of a subwindow's parent window. In the first case, the closure callback of a subwindow's parent window. In the first case, the closure callback
is not invoked from the <tt>glutDestroyWindow</tt> call, but at a is not invoked from the <tt>glutDestroyWindow</tt> call, but at a
later time point.<br /> later time point.<br />
<i>Freeglut</i> sets the <i>current window</i> to the window <i>freeglut</i> sets the <i>current window</i> to the window
which is about to be closed when the callback is invoked. The window can which is about to be closed when the callback is invoked. The window can
thus be retrieved in the callback using <tt>glutGetWindow</tt>.<br /> thus be retrieved in the callback using <tt>glutGetWindow</tt>.<br />
Users looking to prevent <i>FreeGLUT</i> from exiting when a window is Users looking to prevent <i>freeglut</i> from exiting when a window is
closed, should look into using glutSetOption to set closed, should look into using glutSetOption to set
<tt>GLUT_ACTION_ON_WINDOW_CLOSE</tt>. Some settings will prevent the <tt>GLUT_ACTION_ON_WINDOW_CLOSE</tt>. Some settings will prevent the
application from exiting when a window is closed.<br /> application from exiting when a window is closed.<br />
@ -1125,7 +1125,7 @@ alias to <tt>glutCloseFunc</tt>.
<p> <p>
The <tt>glutSpecialFunc</tt> function sets the window's special key press The <tt>glutSpecialFunc</tt> function sets the window's special key press
callback. <i>Freeglut</i> calls the special key press callback when the callback. <i>freeglut</i> calls the special key press callback when the
user presses a special key. user presses a special key.
</p> </p>
@ -1153,7 +1153,7 @@ that <i>freeglut</i> will call when the user
presses a special key on the keyboard. The callback function has one presses a special key on the keyboard. The callback function has one
argument: the name of the function to be invoked ("called back") at argument: the name of the function to be invoked ("called back") at
the time at which the special key is pressed. The function returns no the time at which the special key is pressed. The function returns no
value. <i>Freeglut</i> sets the <i>current window</i> to the window value. <i>freeglut</i> sets the <i>current window</i> to the window
which is active when the callback is invoked. "Special keys" are the which is active when the callback is invoked. "Special keys" are the
function keys, the arrow keys, the Page Up and Page Down keys, and the Insert function keys, the arrow keys, the Page Up and Page Down keys, and the Insert
key. The Delete key is considered to be a regular key. <br/> key. The Delete key is considered to be a regular key. <br/>
@ -1180,7 +1180,7 @@ The <tt>key</tt> argument may take one of the following defined constant values:
<p> <p>
The <tt>glutKeyboardUpFunc</tt> function sets the window's key release The <tt>glutKeyboardUpFunc</tt> function sets the window's key release
callback. <i>Freeglut</i> calls the key release callback when the user releases callback. <i>freeglut</i> calls the key release callback when the user releases
a key. a key.
</p> </p>
@ -1214,7 +1214,7 @@ for upper or lower case letters, it does not do so for non-alphabetical
characters. Nor does it account for the Caps-Lock key being on. characters. Nor does it account for the Caps-Lock key being on.
The operating system may send some unexpected characters to The operating system may send some unexpected characters to
<i>freeglut</i>, such as "8" when the user is pressing the Shift <i>freeglut</i>, such as "8" when the user is pressing the Shift
key. <i>Freeglut</i> also invokes the callback when the user key. <i>freeglut</i> also invokes the callback when the user
releases the Control, Alt, or Shift keys, among others. Releasing releases the Control, Alt, or Shift keys, among others. Releasing
the Delete key causes this function to be invoked with a value of the Delete key causes this function to be invoked with a value of
127 for <tt>key</tt>. <br/> Calling <tt>glutKeyboardUpFunc</tt> with 127 for <tt>key</tt>. <br/> Calling <tt>glutKeyboardUpFunc</tt> with
@ -1232,7 +1232,7 @@ as possible. Users who find differences should contact the
<p> <p>
The <tt>glutSpecialUpFunc</tt> function sets the window's special key The <tt>glutSpecialUpFunc</tt> function sets the window's special key
release callback. <i>Freeglut</i> calls the special key release callback release callback. <i>freeglut</i> calls the special key release callback
when the user releases a special key. when the user releases a special key.
</p> </p>
@ -1259,7 +1259,7 @@ The <tt>glutSpecialUpFunc</tt>function specifies the function that <i>freeglut</
user releases a special key from the keyboard. The callback function user releases a special key from the keyboard. The callback function
has one argument: the name of the function to be invoked ("called back") has one argument: the name of the function to be invoked ("called back")
at the time at which the special key is released. The function returns at the time at which the special key is released. The function returns
no value. <i>Freeglut</i> sets the <i>current window</i> to the window no value. <i>freeglut</i> sets the <i>current window</i> to the window
which is active when the callback is invoked. "Special keys" are the which is active when the callback is invoked. "Special keys" are the
function keys, the arrow keys, the Page Up and Page Down keys, and the Insert function keys, the arrow keys, the Page Up and Page Down keys, and the Insert
key. The Delete key is considered to be a regular key. <br/> key. The Delete key is considered to be a regular key. <br/>
@ -1295,7 +1295,7 @@ have them fixed.
<p> <p>
The <tt>glutMouseWheelFunc</tt> function sets the window's mouse wheel The <tt>glutMouseWheelFunc</tt> function sets the window's mouse wheel
callback. <i>Freeglut</i> calls the mouse wheel callback when the user callback. <i>freeglut</i> calls the mouse wheel callback when the user
spins the mouse wheel. spins the mouse wheel.
</p> </p>
@ -1306,7 +1306,7 @@ direction, int x, int y ));</tt></p>
<p><b>Description</b></p> <p><b>Description</b></p>
<p>If the mouse wheel is spun over your (sub)window, <i>FreeGLUT</i> <p>If the mouse wheel is spun over your (sub)window, <i>freeglut</i>
will report this via the MouseWheel callback. <tt>wheel</tt> is the wheel will report this via the MouseWheel callback. <tt>wheel</tt> is the wheel
number, <tt>direction</tt> is +/- 1, and <tt>x</tt> and <tt>y</tt> are number, <tt>direction</tt> is +/- 1, and <tt>x</tt> and <tt>y</tt> are
the mouse coordinates.<br><br> the mouse coordinates.<br><br>
@ -1330,7 +1330,7 @@ The <tt>glutSpaceballMotionFunc</tt> function is implemented in
provided so that GLUT-based programs can compile and link against provided so that GLUT-based programs can compile and link against
<i>freeglut</i> without modification. <i>freeglut</i> without modification.
</p> </p>
<p>The <tt>glutSpaceballMotionFunc</tt> function sets the window's Spaceball motion callback. <i>Freeglut</i> invokes this callback when the user push/pull Spaceball cap in <i>x</i>, <i>y</i>, and <i>z</i> directions. <p>The <tt>glutSpaceballMotionFunc</tt> function sets the window's Spaceball motion callback. <i>freeglut</i> invokes this callback when the user push/pull Spaceball cap in <i>x</i>, <i>y</i>, and <i>z</i> directions.
</p> </p>
<p><b>Usage</b></p> <p><b>Usage</b></p>
@ -1350,7 +1350,7 @@ The <tt>glutSpaceballRotateFunc</tt> function is implemented in
provided so that GLUT-based programs can compile and link against provided so that GLUT-based programs can compile and link against
<i>freeglut</i> without modification. <i>freeglut</i> without modification.
</p> </p>
<p>The <tt>glutSpaceballRotateFunc</tt> function sets the window's Spaceball rotation callback. <i>Freeglut</i> invokes this callback when the user rotates/twists Spaceball cap. <p>The <tt>glutSpaceballRotateFunc</tt> function sets the window's Spaceball rotation callback. <i>freeglut</i> invokes this callback when the user rotates/twists Spaceball cap.
</p> </p>
<p><b>Usage</b></p> <p><b>Usage</b></p>
@ -1371,7 +1371,7 @@ provided so that GLUT-based programs can compile and link against
<i>freeglut</i> without modification. <i>freeglut</i> without modification.
</p> </p>
<p> <p>
The <tt>glutSpaceballButtonFunc</tt> function sets the window's Spaceball button callback. <i>Freeglut</i> invokes this callback when the user presses/releases one of the Spaceball buttons. The <tt>glutSpaceballButtonFunc</tt> function sets the window's Spaceball button callback. <i>freeglut</i> invokes this callback when the user presses/releases one of the Spaceball buttons.
</p> </p>
<p><b>Usage</b></p> <p><b>Usage</b></p>
@ -1409,7 +1409,7 @@ are the same.
<h2>12.18 glutButtonBoxFunc</h2> <h2>12.18 glutButtonBoxFunc</h2>
<p> <p>
The <tt>glutDialsFunc</tt> function sets the global dials&buttons box callback. Freeglut calls the callback when there is input from the box buttons. The <tt>glutDialsFunc</tt> function sets the global dials&buttons box callback. freeglut calls the callback when there is input from the box buttons.
</p> </p>
<p><b>Usage</b></p> <p><b>Usage</b></p>
@ -1434,7 +1434,7 @@ for instance.
<h2>12.19 glutDialsFunc</h2> <h2>12.19 glutDialsFunc</h2>
<p> <p>
The <tt>glutDialsFunc</tt> function sets the global dials&buttons box callback. Freeglut calls the callback when there is input from the box dials. The <tt>glutDialsFunc</tt> function sets the global dials&buttons box callback. freeglut calls the callback when there is input from the box dials.
</p> </p>
<p><b>Usage</b></p> <p><b>Usage</b></p>
@ -1507,7 +1507,7 @@ is not implemented in <i>freeglut</i>.
<p> <p>
The <tt>glutVisibilityFunc</tt> and the <tt>glutWindowStatusFunc</tt> The <tt>glutVisibilityFunc</tt> and the <tt>glutWindowStatusFunc</tt>
functions set the window's visibility and windowStatus callbacks for the functions set the window's visibility and windowStatus callbacks for the
current window. Setting one overwrites the other. <i>Freeglut</i> calls current window. Setting one overwrites the other. <i>freeglut</i> calls
these callbacks when the visibility status of a window changes. these callbacks when the visibility status of a window changes.
</p> </p>
@ -1555,7 +1555,7 @@ discarded.<br>
Not all window managers support such finegrained callback messages or Not all window managers support such finegrained callback messages or
can even ensure basic correctness. On Windows, there are no can even ensure basic correctness. On Windows, there are no
notifications if the visibility status of a window changes and notifications if the visibility status of a window changes and
<i>FreeGLUT</i> might be in visible state even if the window is fully <i>freeglut</i> might be in visible state even if the window is fully
obscured by other windows. obscured by other windows.
</p> </p>
@ -1608,7 +1608,7 @@ windows if GLUT_AUX was set in the displayMode.</li>
<li>GLUT_MULTISAMPLE - Set the number of samples to request for new <li>GLUT_MULTISAMPLE - Set the number of samples to request for new
windows if GLUT_MULTISAMPLE was set in the displayMode.</li> windows if GLUT_MULTISAMPLE was set in the displayMode.</li>
<li>GLUT_GEOMETRY_VISUALIZE_NORMALS - Set whether <a <li>GLUT_GEOMETRY_VISUALIZE_NORMALS - Set whether <a
href="#GeometricObject"><i>FreeGLUT</i>'s geometric object rendering href="#GeometricObject"><i>freeglut</i>'s geometric object rendering
functions</a> also visualize the object's normals or not.</li> functions</a> also visualize the object's normals or not.</li>
<li>GLUT_STROKE_FONT_DRAW_JOIN_DOTS - Set whether join dots are drawn <li>GLUT_STROKE_FONT_DRAW_JOIN_DOTS - Set whether join dots are drawn
between line segments when drawing letters of stroke fonts or not.</li> between line segments when drawing letters of stroke fonts or not.</li>
@ -1639,10 +1639,10 @@ These queries are with respect to the current window:
</p> </p>
<ul> <ul>
<li>GLUT_WINDOW_X - window X position, see <a href="#Conventions">FreeGLUT's conventions</a></li> <li>GLUT_WINDOW_X - window X position, see <a href="#Conventions">freeglut's conventions</a></li>
<li>GLUT_WINDOW_Y - window Y position, see <a href="#Conventions">FreeGLUT's conventions</a></li> <li>GLUT_WINDOW_Y - window Y position, see <a href="#Conventions">freeglut's conventions</a></li>
<li>GLUT_WINDOW_WIDTH - window width, see <a href="#Conventions">FreeGLUT's conventions</a></li> <li>GLUT_WINDOW_WIDTH - window width, see <a href="#Conventions">freeglut's conventions</a></li>
<li>GLUT_WINDOW_HEIGHT - window height, see <a href="#Conventions">FreeGLUT's conventions</a></li> <li>GLUT_WINDOW_HEIGHT - window height, see <a href="#Conventions">freeglut's conventions</a></li>
<li>GLUT_WINDOW_BORDER_WIDTH - window border width</li> <li>GLUT_WINDOW_BORDER_WIDTH - window border width</li>
<li>GLUT_WINDOW_BORDER_HEIGHT - height of non-client area above window, <li>GLUT_WINDOW_BORDER_HEIGHT - height of non-client area above window,
including both border and caption (if any)</li> including both border and caption (if any)</li>
@ -1740,7 +1740,7 @@ functions can be queried with this function.
<h1>14. <a name="FontRendering"></a>Font Rendering Functions</h1> <h1>14. <a name="FontRendering"></a>Font Rendering Functions</h1>
<p> <p>
<i>Freeglut</i> supports two types of font rendering: bitmap fonts, <i>freeglut</i> supports two types of font rendering: bitmap fonts,
which are rendered using the <tt>glBitmap</tt> function call, and stroke which are rendered using the <tt>glBitmap</tt> function call, and stroke
fonts, which are rendered as sequences of OpenGL line segments. Because fonts, which are rendered as sequences of OpenGL line segments. Because
they are rendered as bitmaps, the bitmap fonts tend to render more quickly they are rendered as bitmaps, the bitmap fonts tend to render more quickly
@ -1757,7 +1757,7 @@ At the moment, <i>freeglut</i> fonts do not support the "`" (backquote) and
</p> </p>
<p> <p>
<i>Freeglut</i> supports the following bitmap fonts: <i>freeglut</i> supports the following bitmap fonts:
</p> </p>
<ul> <ul>
@ -1771,13 +1771,13 @@ At the moment, <i>freeglut</i> fonts do not support the "`" (backquote) and
</ul> </ul>
<p> <p>
<i>Freeglut</i> calls <tt>glRasterPos4v</tt> to advance the cursor by <i>freeglut</i> calls <tt>glRasterPos4v</tt> to advance the cursor by
the width of a character and to render carriage returns when appropriate. the width of a character and to render carriage returns when appropriate.
It does not use any display lists in it rendering in bitmap fonts. It does not use any display lists in it rendering in bitmap fonts.
</p> </p>
<p> <p>
<i>Freeglut</i> supports <i>freeglut</i> supports
the following stroke fonts: the following stroke fonts:
</p> </p>
@ -1787,7 +1787,7 @@ the following stroke fonts:
</ul> </ul>
<p> <p>
<i>Freeglut</i> does not use any display lists in its rendering of stroke <i>freeglut</i> does not use any display lists in its rendering of stroke
fonts. It calls <tt>glTranslatef</tt> to advance the cursor by the fonts. It calls <tt>glTranslatef</tt> to advance the cursor by the
width of a character and to render carriage returns when appropriate. width of a character and to render carriage returns when appropriate.
</p> </p>
@ -1814,7 +1814,7 @@ code of the character to be rendered </p>
<p> <p>
The <tt>glutBitmapCharacter</tt> function renders the given character in the specified bitmap font. The <tt>glutBitmapCharacter</tt> function renders the given character in the specified bitmap font.
<i>Freeglut</i> automatically sets the necessary <i>freeglut</i> automatically sets the necessary
pixel unpack storage modes and restores the existing modes when it has finished. pixel unpack storage modes and restores the existing modes when it has finished.
Before the first call to <tt>glutBitMapCharacter</tt> the application Before the first call to <tt>glutBitMapCharacter</tt> the application
program should call <tt>glRasterPos*</tt> to set the position of the character program should call <tt>glRasterPos*</tt> to set the position of the character
@ -1853,7 +1853,7 @@ of characters to be rendered </p>
<p> <p>
The <tt>glutBitmapString</tt> function renders the given character The <tt>glutBitmapString</tt> function renders the given character
string in the specified bitmap font. string in the specified bitmap font.
<i>Freeglut</i> automatically sets the necessary <i>freeglut</i> automatically sets the necessary
pixel unpack storage modes and restores the existing modes when it has finished. pixel unpack storage modes and restores the existing modes when it has finished.
Before calling <tt>glutBitMapString</tt> the application program should Before calling <tt>glutBitMapString</tt> the application program should
call <tt>glRasterPos*</tt> to set the position of the string in the window. call <tt>glRasterPos*</tt> to set the position of the string in the window.
@ -2110,7 +2110,7 @@ whose width is to be calculated </p>
<p> <p>
The <tt>glutStrokeLength</tt> function returns the width in model units of the given character string in The <tt>glutStrokeLength</tt> function returns the width in model units of the given character string in
the specified stroke font. Because the font is a stroke font, the width the specified stroke font. Because the font is a stroke font, the width
of an individual character is a floating-point number. <i>Freeglut</i> of an individual character is a floating-point number. <i>freeglut</i>
adds the floating-point widths and rounds the final result to return the adds the floating-point widths and rounds the final result to return the
integer value. Thus the return value may differ from the sum of the integer value. Thus the return value may differ from the sum of the
character widths returned by a series of calls to <tt>glutStrokeWidth</tt>. character widths returned by a series of calls to <tt>glutStrokeWidth</tt>.
@ -2184,7 +2184,7 @@ are designed such that all characters have (nominally) the same height. </p>
<h1>15. <a name="GeometricObject"></a>Geometric Object Rendering Functions</h1> <h1>15. <a name="GeometricObject"></a>Geometric Object Rendering Functions</h1>
<p> <p>
<i>Freeglut</i> includes twenty two routines for generating <i>freeglut</i> includes twenty two routines for generating
easily-recognizable 3-d geometric objects. These routines are easily-recognizable 3-d geometric objects. These routines are
effectively the same ones that are included in the GLUT library, and effectively the same ones that are included in the GLUT library, and
reflect the functionality available in the <i>aux</i> toolkit described reflect the functionality available in the <i>aux</i> toolkit described
@ -2566,7 +2566,7 @@ To draw shapes with shaders (OpenGL 2 and later), one need to upload
vertices and associated normal vectors and texture coordinates to vertices and associated normal vectors and texture coordinates to
vertex attributes of your shaders. Use these functions to set the vertex attributes of your shaders. Use these functions to set the
indices (addresses) of the vertex attributes in your currently active indices (addresses) of the vertex attributes in your currently active
shaders before calling the above geometry functions, and <i>FreeGLUT</i> shaders before calling the above geometry functions, and <i>freeglut</i>
will upload the object geometry there. Texture coordinates are only will upload the object geometry there. Texture coordinates are only
generated for the teapot, teacup and teaspoon. generated for the teapot, teacup and teaspoon.
</p> </p>
@ -2786,7 +2786,7 @@ the windows for which you don't want it.</p>
<p><b>Changes From GLUT</b></p> <p><b>Changes From GLUT</b></p>
<p>Nate Robbins' port of GLUT to win32 did not implement <p>Nate Robbins' port of GLUT to win32 did not implement
<tt>glutSetKeyRepeat</tt>, but <i>FreeGLUT</i>'s behavior should conform on all <tt>glutSetKeyRepeat</tt>, but <i>freeglut</i>'s behavior should conform on all
platforms to GLUT's behavior on X11.</p> platforms to GLUT's behavior on X11.</p>
<h2>21.2 glutForceJoystickFunc</h2> <h2>21.2 glutForceJoystickFunc</h2>
@ -2822,7 +2822,7 @@ icon as an example.
<h2>21.2 <a name="GLUT_State"></a>GLUT State</h2> <h2>21.2 <a name="GLUT_State"></a>GLUT State</h2>
<h2>21.3 <a name="Freeglut.h_Header"></a>"freeglut.h" Header File</h2> <h2>21.3 <a name="freeglut.h_Header"></a>"freeglut.h" Header File</h2>
<p> <p>
Application programmers who are porting their GLUT programs to <i>freeglut</i> may continue Application programmers who are porting their GLUT programs to <i>freeglut</i> may continue
@ -2843,7 +2843,7 @@ Programs which use the <i>freeglut</i>-specific extensions to GLUT should includ
It was initially planned to It was initially planned to
define <code>FREEGLUT_VERSION_2_0</code>, <code>FREEGLUT_VERSION_2_1</code>, <code>FREEGLUT_VERSION_2_2</code>, define <code>FREEGLUT_VERSION_2_0</code>, <code>FREEGLUT_VERSION_2_1</code>, <code>FREEGLUT_VERSION_2_2</code>,
etc., but this was only done for <code>FREEGLUT_VERSION_2_0</code>. etc., but this was only done for <code>FREEGLUT_VERSION_2_0</code>.
This constant still exist in current FreeGLUT releases but is This constant still exist in current freeglut releases but is
deprecated. deprecated.
</p> </p>

View File

@ -17,7 +17,7 @@ generateHeader($_SERVER['PHP_SELF']);
<a name="intro"></a> <a name="intro"></a>
<h1>Introduction</h1> <h1>Introduction</h1>
<p>FreeGLUT can initialize an OpenGL ES (GLES) context. It works under platforms that supports EGL:</p> <p>freeglut can initialize an OpenGL ES (GLES) context. It works under platforms that supports EGL:</p>
<ul> <ul>
<li>Android (see <a href="android.php">dedicated page</a>)</li> <li>Android (see <a href="android.php">dedicated page</a>)</li>
<li>BlackBerry 10/BlackBerry PlayBook</li> <li>BlackBerry 10/BlackBerry PlayBook</li>
@ -30,7 +30,7 @@ generateHeader($_SERVER['PHP_SELF']);
</li> </li>
</ul> </ul>
<p>FreeGLUT ES is provided as a separate library, because OpenGL ES <p>freeglut ES is provided as a separate library, because OpenGL ES
has a distinct library from plain OpenGL (<tt>-lGLESv1_CM has a distinct library from plain OpenGL (<tt>-lGLESv1_CM
-lGLESv2</tt> instead of <tt>-lGL</tt>, and different headers too). -lGLESv2</tt> instead of <tt>-lGL</tt>, and different headers too).
We could consider dynamically loading the OpenGL symbols we need, We could consider dynamically loading the OpenGL symbols we need,
@ -44,7 +44,7 @@ window.</p>
<a name="compiling"></a> <a name="compiling"></a>
<h1>Compiling</h1> <h1>Compiling</h1>
<p>The following explains how to use FreeGLUT ES for Mesa EGL.<br /> <p>The following explains how to use freeglut ES for Mesa EGL.<br />
See also the <a href="android.php">Android page</a>.</p> See also the <a href="android.php">Android page</a>.</p>
<p>First, check <tt>README.cmake</tt> to install the dependencies for your system.</p> <p>First, check <tt>README.cmake</tt> to install the dependencies for your system.</p>
@ -95,7 +95,7 @@ PKG_CONFIG_PATH=/tmp/freeglut-native-gles/share/pkgconfig/ cmake ..
<a href="https://gitorious.org/wikibooks-opengl/modern-tutorials/source/HEAD:tut04_transform-gles2"><tt>tut04_transform-gles2</tt> <a href="https://gitorious.org/wikibooks-opengl/modern-tutorials/source/HEAD:tut04_transform-gles2"><tt>tut04_transform-gles2</tt>
example</a>: it uses a basic Makefile targeting <tt>freeglut-gles</tt></li> example</a>: it uses a basic Makefile targeting <tt>freeglut-gles</tt></li>
<li><tt>progs/test-shapes-gles1/</tt> in the source distribution: <li><tt>progs/test-shapes-gles1/</tt> in the source distribution:
it is a standalone CMake app that uses FreeGLUT GLES (v1).</li> it is a standalone CMake app that uses freeglut GLES (v1).</li>
</ul> </ul>
<?php generateFooter(); ?> <?php generateFooter(); ?>

View File

@ -13,11 +13,11 @@ This is OpenGL at its finest.
</div> </div>
<div class="textheader">This is better than GLUT.</div> <div class="textheader">This is better than GLUT.</div>
<p>FreeGLUT started out as a GLUT clone, but now it's something much <p>freeglut started out as a GLUT clone, but now it's something much
better than that. It's a GLUT replacement. Here are the features you better than that. It's a GLUT replacement. Here are the features you
have wanted -- and if you have ideas for more, share them (see below), have wanted -- and if you have ideas for more, share them (see below),
or fork our <a href="https://github.com/dcnieho/FreeGLUT">github or fork our <a href="https://github.com/dcnieho/FreeGLUT">github
repository</a> and implement them! FreeGLUT is under continuous repository</a> and implement them! freeglut is under continuous
development. Currently, work on 3.0 is in full swing. See <a development. Currently, work on 3.0 is in full swing. See <a
href=progress.php>here</a> for the list of work that is still to be href=progress.php>here</a> for the list of work that is still to be
done.</p> done.</p>
@ -51,10 +51,10 @@ But simply, become involved!
The project is not just software, it's the people that contribute, too. The project is not just software, it's the people that contribute, too.
</p> </p>
<div class="textheader">FreeGLUT 3.0</div> <div class="textheader">freeglut 3.0</div>
<p> <p>
<a href=progress.php>Click here</a> for an overview of the major work, <a href=progress.php>Click here</a> for an overview of the major work,
its status and planned milestones for FreeGLUT 3.0 and beyond. Help on its status and planned milestones for freeglut 3.0 and beyond. Help on
any of these plans, as well as suggestions and/or patches for anything any of these plans, as well as suggestions and/or patches for anything
else are very welcome! else are very welcome!
</p> </p>

View File

@ -10,24 +10,24 @@ generateHeader($_SERVER['PHP_SELF']);
<div class="img-right"> <div class="img-right">
<img src="images/chessdemo.png" alt="chess demo"/><br/> <img src="images/chessdemo.png" alt="chess demo"/><br/>
GLUT's "Chess" demo<br/> GLUT's "Chess" demo<br/>
running with FreeGLUT. running with freeglut.
</div> </div>
<p></p> <p></p>
<div class="textheader">What?</div> <div class="textheader">What?</div>
<p>FreeGLUT is a free-software/open-source alternative to the OpenGL Utility <p>freeglut is a free-software/open-source alternative to the OpenGL Utility
Toolkit (GLUT) library. GLUT was originally written by Mark Kilgard to support Toolkit (GLUT) library. GLUT was originally written by Mark Kilgard to support
the sample programs in the second edition OpenGL 'RedBook'. Since then, GLUT has the sample programs in the second edition OpenGL 'RedBook'. Since then, GLUT has
been used in a wide variety of practical applications because it is simple, been used in a wide variety of practical applications because it is simple,
widely available and highly portable.</p> widely available and highly portable.</p>
<p>GLUT (and hence FreeGLUT) takes care of all the system-specific chores <p>GLUT (and hence freeglut) takes care of all the system-specific chores
required for creating windows, initializing OpenGL contexts, and handling input required for creating windows, initializing OpenGL contexts, and handling input
events, to allow for trully portable OpenGL programs.</p> events, to allow for trully portable OpenGL programs.</p>
<p>FreeGLUT is released under the X-Consortium license.</p> <p>freeglut is released under the X-Consortium license.</p>
<div class="textheader">Why?</div> <div class="textheader">Why?</div>
@ -39,20 +39,20 @@ with some software distributions (e.g., XFree86).</p>
<div class="textheader">Who?</div> <div class="textheader">Who?</div>
<p>FreeGLUT was originally written by Pawel W. Olszta with contributions from <p>freeglut was originally written by Pawel W. Olszta with contributions from
Andreas Umbach and Steve Baker.</p> Andreas Umbach and Steve Baker.</p>
<p>John F. Fay, John Tsiombikas, and Diederick C. Niehorster are the current <p>John F. Fay, John Tsiombikas, and Diederick C. Niehorster are the current
maintainers of the FreeGLUT project.</p> maintainers of the freeglut project.</p>
<div class="textheader">When?</div> <div class="textheader">When?</div>
<p>Pawel started FreeGLUT development on December 1st, 1999. The project is now <p>Pawel started freeglut development on December 1st, 1999. The project is now
virtually a 100% replacement for the original GLUT with only a few departures virtually a 100% replacement for the original GLUT with only a few departures
(such as the abandonment of SGI-specific features such as the Dials&amp;Buttons (such as the abandonment of SGI-specific features such as the Dials&amp;Buttons
box and Dynamic Video Resolution) and a shrinking set of bugs.</p> box and Dynamic Video Resolution) and a shrinking set of bugs.</p>
<p>FreeGLUT adds some additional features over the basic GLUT functionality, <p>freeglut adds some additional features over the basic GLUT functionality,
such as a larger set of predefined objects to use, the ability to run single such as a larger set of predefined objects to use, the ability to run single
iterations of the event loop, or exit from it gracefully, mousewheel input iterations of the event loop, or exit from it gracefully, mousewheel input
callbacks, optional OpenGL core/compatibility profile context creation, callbacks, optional OpenGL core/compatibility profile context creation,
@ -79,7 +79,7 @@ href="mailto:freeglut-developer@lists.sourceforge.net">freeglut-developer</a>
mailing list.</p> mailing list.</p>
<div class="textheader"><a name="download"></a>Downloads...</div> <div class="textheader"><a name="download"></a>Downloads...</div>
<p>Below are file links for the FreeGLUT project. README files are included. Have fun!</p> <p>Below are file links for the freeglut project. README files are included. Have fun!</p>
<div class="indent"> <div class="indent">
<div class="textheader">Testing Releases</div> <div class="textheader">Testing Releases</div>
@ -87,7 +87,7 @@ mailing list.</p>
href="https://sourceforge.net/p/freeglut/code/HEAD/tarball?path=/trunk/freeglut/freeglut">tarball href="https://sourceforge.net/p/freeglut/code/HEAD/tarball?path=/trunk/freeglut/freeglut">tarball
of current trunk</a>, or <a href="help.php#svn">grabbing a copy from of current trunk</a>, or <a href="help.php#svn">grabbing a copy from
svn</a>, and give us feedback on how it worked for you. All this svn</a>, and give us feedback on how it worked for you. All this
will eventually become a FreeGLUT 3.1 release.</p> will eventually become a freeglut 3.1 release.</p>
<p>There are no presently active testing releases.</p> <p>There are no presently active testing releases.</p>
</div> </div>
@ -95,18 +95,18 @@ mailing list.</p>
<div class="indent"> <div class="indent">
<div class="textheader">Stable Releases</div> <div class="textheader">Stable Releases</div>
<p> <p>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-3.0.0.tar.gz?download">Freeglut 3.0.0</a> [<i>Released: 7 March 2015</i>]<br/> <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-3.0.0.tar.gz?download">freeglut 3.0.0</a> [<i>Released: 7 March 2015</i>]<br/>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.8.1.tar.gz?download">Freeglut 2.8.1</a> [<i>Released: 5 April 2013</i>]<br/> <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.8.1.tar.gz?download">freeglut 2.8.1</a> [<i>Released: 5 April 2013</i>]<br/>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.8.0.tar.gz?download">Freeglut 2.8.0</a> [<i>Released: 2 January 2012</i>]<br/> <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.8.0.tar.gz?download">freeglut 2.8.0</a> [<i>Released: 2 January 2012</i>]<br/>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.6.0.tar.gz?download">Freeglut 2.6.0</a> [<i>Released: 27 November 2009</i>]<br/> <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.6.0.tar.gz?download">freeglut 2.6.0</a> [<i>Released: 27 November 2009</i>]<br/>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.4.0.tar.gz?download">Freeglut 2.4.0</a> [<i>Released: 9 June 2005</i>]<br/> <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.4.0.tar.gz?download">freeglut 2.4.0</a> [<i>Released: 9 June 2005</i>]<br/>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.2.0.tar.gz?download">Freeglut 2.2.0</a> [<i>Released: 12 December 2003</i>]<br/> <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.2.0.tar.gz?download">freeglut 2.2.0</a> [<i>Released: 12 December 2003</i>]<br/>
<a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.0.1.tar.gz?download">Freeglut 2.0.1</a> [<i>Released: 23 October 2003</i>] <a href="http://prdownloads.sourceforge.net/freeglut/freeglut-2.0.1.tar.gz?download">freeglut 2.0.1</a> [<i>Released: 23 October 2003</i>]
</p> </p>
<div class="textheader">Prepackaged Releases</div> <div class="textheader">Prepackaged Releases</div>
<p>The FreeGLUT project does not support packaged versions of FreeGLUT <p>The freeglut project does not support packaged versions of freeglut
excepting, of course, the tarballs distributed here. However, various members of excepting, of course, the tarballs distributed here. However, various members of
the community have put time and effort into providing source or binary rollups, the community have put time and effort into providing source or binary rollups,
and we thank them for their efforts. Here's a list which is likely and we thank them for their efforts. Here's a list which is likely
@ -124,7 +124,7 @@ incomplete:</p>
<a href="http://tisch.sf.net/freeglut-2.6.0-mpx-latest.patch">Florian Echtler's MPX Patch</a> <a href="http://tisch.sf.net/freeglut-2.6.0-mpx-latest.patch">Florian Echtler's MPX Patch</a>
</p> </p>
<p>If you have problems with these packages, please contact their maintainers - we of the FreeGLUT team probably can't help.</p> <p>If you have problems with these packages, please contact their maintainers - we of the freeglut team probably can't help.</p>
<div class="textheader">Development Releases</div> <div class="textheader">Development Releases</div>
<p> <p>
@ -135,7 +135,7 @@ incomplete:</p>
<div class="textheader">Questions?</div> <div class="textheader">Questions?</div>
<p>Don't be afraid to ask for help. We don't bite. Much.</p> <p>Don't be afraid to ask for help. We don't bite. Much.</p>
<p>Send FreeGLUT related questions to the appropriate FreeGLUT mailing list:</p> <p>Send freeglut related questions to the appropriate freeglut mailing list:</p>
<ul> <ul>
<li><a href="mailto:freeglut-developer@lists.sourceforge.net">freeglut-developer</a> [<a href="http://lists.sourceforge.net/lists/listinfo/freeglut-developer">Subscribe</a>],</li> <li><a href="mailto:freeglut-developer@lists.sourceforge.net">freeglut-developer</a> [<a href="http://lists.sourceforge.net/lists/listinfo/freeglut-developer">Subscribe</a>],</li>

View File

@ -8,7 +8,7 @@ setPageTitle("A Look At Progress");
generateHeader($_SERVER['PHP_SELF']); generateHeader($_SERVER['PHP_SELF']);
?> ?>
<div class="textheader">FreeGLUT 3.0 an onwards</div> <div class="textheader">freeglut 3.0 an onwards</div>
<p> <p>
Major work, its status and planned milestone. <a Major work, its status and planned milestone. <a
href="help.php">Help</a> on any of these plans is very welcome! Fork the href="help.php">Help</a> on any of these plans is very welcome! Fork the
@ -37,7 +37,7 @@ invocation.</td><td>3.2</td></tr>
<tr><td>Windows 8 touch support</td><td>Windows 8 replaced how touch <tr><td>Windows 8 touch support</td><td>Windows 8 replaced how touch
input works, so we need to implement support for that.</td><td>3.2</td></tr> input works, so we need to implement support for that.</td><td>3.2</td></tr>
<tr><td>10bit display formats</td><td>GLUT supports that but FreeGLUT <tr><td>10bit display formats</td><td>GLUT supports that but freeglut
currently does not. Unfinished effort to implement <a currently does not. Unfinished effort to implement <a
href="https://github.com/dcnieho/FreeGLUT/tree/feature_30bit_framebuffer">here</a>.</td><td>3.0 href="https://github.com/dcnieho/FreeGLUT/tree/feature_30bit_framebuffer">here</a>.</td><td>3.0
or later.</td></tr> or later.</td></tr>
@ -54,7 +54,7 @@ for 3.2</td></tr>
<tr><td>option to not deinitialize when mainloop terminates</td><td>As <tr><td>option to not deinitialize when mainloop terminates</td><td>As
is often requested, in some usage cases, it would be advantageous if is often requested, in some usage cases, it would be advantageous if
FreeGLUT did not automatically deinitialize when its last window is freeglut did not automatically deinitialize when its last window is
closed. This has been implemented, but is awaiting testing on platforms closed. This has been implemented, but is awaiting testing on platforms
other than windows. Discussed <a other than windows. Discussed <a
href="http://sourceforge.net/p/freeglut/mailman/message/32926301/">here</a>.</td><td>As href="http://sourceforge.net/p/freeglut/mailman/message/32926301/">here</a>.</td><td>As
@ -65,7 +65,7 @@ leave this feature until after 3.0.</td></tr>
href="http://sourceforge.net/p/freeglut/mailman/message/30859054/">here</a>, href="http://sourceforge.net/p/freeglut/mailman/message/30859054/">here</a>,
it is unclear what should be done. See also associated <a it is unclear what should be done. See also associated <a
href="https://github.com/dcnieho/FreeGLUT/tree/feature_DPI_awareness">github href="https://github.com/dcnieho/FreeGLUT/tree/feature_DPI_awareness">github
branch</a>, though in the end maybe no code has to be added to FreeGLUT branch</a>, though in the end maybe no code has to be added to freeglut
for this at all, its the host program's responsibility to decide on DPI for this at all, its the host program's responsibility to decide on DPI
awareness for his work.</td><td>Figure this out for 3.2</td></tr> awareness for his work.</td><td>Figure this out for 3.2</td></tr>
@ -102,10 +102,10 @@ together.</td><td>Undecided</td></tr>
carefully on the mailing list first to minimize impact on the carefully on the mailing list first to minimize impact on the
API.</td><td>Undecided</td></tr> API.</td><td>Undecided</td></tr>
<tr><td>Complete glutInitDisplayString support</td><td>FreeGLUT now only <tr><td>Complete glutInitDisplayString support</td><td>freeglut now only
partially supports glutInitDisplayString, any spec (comparator and partially supports glutInitDisplayString, any spec (comparator and
value) after each token are ignored. This is a significant way in which value) after each token are ignored. This is a significant way in which
FreeGLUT is not compatible with GLUT. Could be a nice project for freeglut is not compatible with GLUT. Could be a nice project for
someone who want to become familiar with the intricacies of requesting someone who want to become familiar with the intricacies of requesting
specific display formats on at least one of the various window servers specific display formats on at least one of the various window servers
(Windows, X11 and Android/BlackBerry 10/EGL at the (Windows, X11 and Android/BlackBerry 10/EGL at the

View File

@ -1,5 +1,5 @@
<?php <?php
# Freeglut Web Page # freeglut Web Page
# This block ensures that template.php is always hit, no matter what subdirectory # This block ensures that template.php is always hit, no matter what subdirectory
$slashes=substr_count ( $_SERVER['PHP_SELF'], "/"); $slashes=substr_count ( $_SERVER['PHP_SELF'], "/");
$require_target=""; $require_target="";