[Lunar-commits] <moonbase> freeglut: version bumped to 2.6.0.
Florin Braescu
florin at lunar-linux.org
Tue Feb 16 00:20:30 CET 2010
commit 579c6c06236ddc5fb36e02db7091ef432b55ada0
Author: Florin Braescu <florin at lunar-linux.org>
Date: Tue Feb 16 01:20:30 2010 +0200
freeglut: version bumped to 2.6.0.
Changes:
* Tons of bug fixes
* Added deprecated, but working Joystick API.
* Added new constant GLUT_INIT_STATE for glutGet() to check if freeglut is
already initialized.
* Added new API entry for full-screen mode
void glutFullScreenToggle( void );
with a related new constant GLUT_FULL_SCREEN for glutGet().
* Added new API entry to de-initialize freeglut:
void glutExit( void );
* Added more special keys: GLUT_KEY_NUM_LOCK, GLUT_KEY_BEGIN GLUT_KEY_DELETE
* Added support for windows without captions and/or borders via two new
constants GLUT_CAPTIONLESS and GLUT_BORDERLESS for glutInitDisplayMode
(currently works for Windows only).
* Added support for multisampling: The number of samples per pixel to use
when GLUT_MULTISAMPLE is specified in glutInitDisplayMode() can be set via
glutSetOption() with parameter GLUT_MULTISAMPLE now. glutGet() with the
same token retrieves that value. The possible number of samples per pixels
can be queried via the new API entry
int *glutGetModeValues( GLenum mode, int *size );
with mode GLUT_MULTISAMPLE. (glutGetModeValues() currently only works for
X11)
* Added new constant GLUT_AUX for glutSetOption() to set the number of
auxiliary buffers. The possible number of auxiliary buffers can be
queried via glutGetModeValues with mode GLUT_AUX.
* Added support for versioned (i.e. 3.0) OpenGL contexts: New API entries
void glutInitContextVersion( int majorVersion, int minorVersion );
void glutInitContextFlags( int flags );
with related new constants GLUT_DEBUG and GLUT_FORWARD_COMPATIBLE for
the latter API entry. Added new constants GLUT_INIT_MAJOR_VERSION,
GLUT_INIT_MINOR_VERSION and GLUT_INIT_FLAGS for glutGet().
---
graphics/freeglut/DETAILS | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/graphics/freeglut/DETAILS b/graphics/freeglut/DETAILS
index 8e7fb08..6af0413 100644
--- a/graphics/freeglut/DETAILS
+++ b/graphics/freeglut/DETAILS
@@ -1,12 +1,13 @@
MODULE=freeglut
- VERSION=2.4.0
+ VERSION=2.6.0
SOURCE=$MODULE-$VERSION.tar.gz
- SOURCE_URL=$SFORGE_URL/$MODULE/
- SOURCE_VFY=sha1:91a528aa72758b7288a0d69a964b1b7e3f322a12
+ SOURCE_URL=$SFORGE_URL/$MODULE
+ SOURCE_VFY=sha1:68306c4486c13d005a4e4d54035e0c0b1bdc220b
WEB_SITE=http://freeglut.sourceforge.net
ENTERED=20060227
- UPDATED=20060227
+ UPDATED=20100216
SHORT="OpenGL Utility Toolkit (GLUT) library"
+
cat << EOF
freeglut is a completely OpenSourced alternative to the OpenGL Utility
Toolkit (GLUT) library.
More information about the Lunar-commits
mailing list