diff --git a/include/GL/glfw.h b/include/GL/glfw.h index 63313db3..286de6b5 100644 --- a/include/GL/glfw.h +++ b/include/GL/glfw.h @@ -1,6 +1,6 @@ /************************************************************************ * GLFW - An OpenGL framework - * API version: 2.7 + * API version: 3.0 * WWW: http://www.glfw.org/ *------------------------------------------------------------------------ * Copyright (c) 2002-2006 Marcus Geelnard @@ -170,8 +170,8 @@ extern "C" { * GLFW version *************************************************************************/ -#define GLFW_VERSION_MAJOR 2 -#define GLFW_VERSION_MINOR 7 +#define GLFW_VERSION_MAJOR 3 +#define GLFW_VERSION_MINOR 0 #define GLFW_VERSION_REVISION 0 diff --git a/lib/carbon/carbon_enable.c b/lib/carbon/carbon_enable.c index 76b18fef..2368b46d 100644 --- a/lib/carbon/carbon_enable.c +++ b/lib/carbon/carbon_enable.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/carbon_fullscreen.c b/lib/carbon/carbon_fullscreen.c index 2fd54570..db221cd5 100644 --- a/lib/carbon/carbon_fullscreen.c +++ b/lib/carbon/carbon_fullscreen.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/carbon_glext.c b/lib/carbon/carbon_glext.c index 2a1018fc..b905edf9 100644 --- a/lib/carbon/carbon_glext.c +++ b/lib/carbon/carbon_glext.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/carbon_init.c b/lib/carbon/carbon_init.c index 6a6d09ad..e09cb5c2 100644 --- a/lib/carbon/carbon_init.c +++ b/lib/carbon/carbon_init.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/carbon_joystick.c b/lib/carbon/carbon_joystick.c index 3cf47ac5..12a29d9f 100644 --- a/lib/carbon/carbon_joystick.c +++ b/lib/carbon/carbon_joystick.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/carbon_time.c b/lib/carbon/carbon_time.c index 64de6d70..31623ece 100644 --- a/lib/carbon/carbon_time.c +++ b/lib/carbon/carbon_time.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/carbon_window.c b/lib/carbon/carbon_window.c index 4c709ede..d8cb946e 100644 --- a/lib/carbon/carbon_window.c +++ b/lib/carbon/carbon_window.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/carbon/libglfw.pc.cmake b/lib/carbon/libglfw.pc.cmake index 2700c59d..c46d7c8d 100644 --- a/lib/carbon/libglfw.pc.cmake +++ b/lib/carbon/libglfw.pc.cmake @@ -5,7 +5,7 @@ includedir=@PREFIX@/include Name: GLFW Description: A portable framework for OpenGL development -Version: 2.7 +Version: 3.0 URL: http://glfw.sourceforge.net/ Libs: -L${libdir} -lglfw -framework AGL -framework OpenGL -framework Carbon Cflags: -I${includedir} diff --git a/lib/carbon/platform.h b/lib/carbon/platform.h index f39751c7..fd4ea658 100644 --- a/lib/carbon/platform.h +++ b/lib/carbon/platform.h @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Carbon/AGL/CGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/cocoa/cocoa_enable.m b/lib/cocoa/cocoa_enable.m index 7e194766..4f7ddad6 100644 --- a/lib/cocoa/cocoa_enable.m +++ b/lib/cocoa/cocoa_enable.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/cocoa_fullscreen.m b/lib/cocoa/cocoa_fullscreen.m index e716cee7..b9bdf6bb 100644 --- a/lib/cocoa/cocoa_fullscreen.m +++ b/lib/cocoa/cocoa_fullscreen.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/cocoa_glext.m b/lib/cocoa/cocoa_glext.m index 860b0041..a30988e9 100644 --- a/lib/cocoa/cocoa_glext.m +++ b/lib/cocoa/cocoa_glext.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/cocoa_init.m b/lib/cocoa/cocoa_init.m index 94cf1293..2f71a54f 100644 --- a/lib/cocoa/cocoa_init.m +++ b/lib/cocoa/cocoa_init.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/cocoa_joystick.m b/lib/cocoa/cocoa_joystick.m index bd3ea640..d266768d 100644 --- a/lib/cocoa/cocoa_joystick.m +++ b/lib/cocoa/cocoa_joystick.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/cocoa_time.m b/lib/cocoa/cocoa_time.m index df68b24b..a3671d29 100644 --- a/lib/cocoa/cocoa_time.m +++ b/lib/cocoa/cocoa_time.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/cocoa_window.m b/lib/cocoa/cocoa_window.m index 7bc0b996..7c69edb4 100644 --- a/lib/cocoa/cocoa_window.m +++ b/lib/cocoa/cocoa_window.m @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/cocoa/libglfw.pc.cmake b/lib/cocoa/libglfw.pc.cmake index 2700c59d..c46d7c8d 100644 --- a/lib/cocoa/libglfw.pc.cmake +++ b/lib/cocoa/libglfw.pc.cmake @@ -5,7 +5,7 @@ includedir=@PREFIX@/include Name: GLFW Description: A portable framework for OpenGL development -Version: 2.7 +Version: 3.0 URL: http://glfw.sourceforge.net/ Libs: -L${libdir} -lglfw -framework AGL -framework OpenGL -framework Carbon Cflags: -I${includedir} diff --git a/lib/cocoa/platform.h b/lib/cocoa/platform.h index 844f0c4f..f1e97f7a 100644 --- a/lib/cocoa/platform.h +++ b/lib/cocoa/platform.h @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Cocoa/NSOpenGL -// API Version: 2.7 +// API Version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2009-2010 Camilla Berglund diff --git a/lib/enable.c b/lib/enable.c index afafd89f..ffef2cb4 100644 --- a/lib/enable.c +++ b/lib/enable.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/fullscreen.c b/lib/fullscreen.c index 0e363cc6..c4e1a631 100644 --- a/lib/fullscreen.c +++ b/lib/fullscreen.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/glext.c b/lib/glext.c index 5287e3f2..c088dbe0 100644 --- a/lib/glext.c +++ b/lib/glext.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/init.c b/lib/init.c index f3d3dee7..7460aa07 100644 --- a/lib/init.c +++ b/lib/init.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/input.c b/lib/input.c index faf47cc2..702995be 100644 --- a/lib/input.c +++ b/lib/input.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/internal.h b/lib/internal.h index 3aeb081a..0b23ca6a 100644 --- a/lib/internal.h +++ b/lib/internal.h @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/joystick.c b/lib/joystick.c index 32841a75..393f073d 100644 --- a/lib/joystick.c +++ b/lib/joystick.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/time.c b/lib/time.c index f7ea31c5..fb459bcb 100644 --- a/lib/time.c +++ b/lib/time.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/libglfw.pc.cmake b/lib/win32/libglfw.pc.cmake index 684b4ba2..ac36d542 100644 --- a/lib/win32/libglfw.pc.cmake +++ b/lib/win32/libglfw.pc.cmake @@ -5,7 +5,7 @@ includedir=${prefix}/include Name: GLFW Description: A portable framework for OpenGL development -Version: 2.7 +Version: 3.0 URL: http://glfw.sourceforge.net/ Libs: -L${libdir} -lglfw @GLFW_LIBRARIES@ Cflags: -I${includedir} -mwin32 diff --git a/lib/win32/platform.h b/lib/win32/platform.h index 46cef336..0d3e702f 100644 --- a/lib/win32/platform.h +++ b/lib/win32/platform.h @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_dllmain.c b/lib/win32/win32_dllmain.c index d7a9c1a9..63bdba6e 100644 --- a/lib/win32/win32_dllmain.c +++ b/lib/win32/win32_dllmain.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_enable.c b/lib/win32/win32_enable.c index 3e72b787..9bcfad1b 100644 --- a/lib/win32/win32_enable.c +++ b/lib/win32/win32_enable.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_fullscreen.c b/lib/win32/win32_fullscreen.c index 5784d797..b5523842 100644 --- a/lib/win32/win32_fullscreen.c +++ b/lib/win32/win32_fullscreen.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_glext.c b/lib/win32/win32_glext.c index 820adc50..6454dfa3 100644 --- a/lib/win32/win32_glext.c +++ b/lib/win32/win32_glext.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_init.c b/lib/win32/win32_init.c index 8ad41af1..0610d44f 100644 --- a/lib/win32/win32_init.c +++ b/lib/win32/win32_init.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_joystick.c b/lib/win32/win32_joystick.c index 64b55899..cc37dcd5 100644 --- a/lib/win32/win32_joystick.c +++ b/lib/win32/win32_joystick.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_time.c b/lib/win32/win32_time.c index 6bd112c3..ffa46d44 100644 --- a/lib/win32/win32_time.c +++ b/lib/win32/win32_time.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/win32/win32_window.c b/lib/win32/win32_window.c index 15071c36..ff3a89c5 100644 --- a/lib/win32/win32_window.c +++ b/lib/win32/win32_window.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Win32/WGL -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/window.c b/lib/window.c index cc6adcd9..1695b074 100644 --- a/lib/window.c +++ b/lib/window.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: Any -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/libglfw.pc.cmake b/lib/x11/libglfw.pc.cmake index adc455f8..da1aeeb6 100644 --- a/lib/x11/libglfw.pc.cmake +++ b/lib/x11/libglfw.pc.cmake @@ -5,7 +5,7 @@ includedir=${prefix}/include Name: GLFW Description: A portable framework for OpenGL development -Version: 2.7 +Version: 3.0 URL: http://glfw.sourceforge.net/ Libs: -L${libdir} -lglfw @GLFW_LIBRARIES@ Cflags: -I${includedir} diff --git a/lib/x11/platform.h b/lib/x11/platform.h index 831f16f1..b73aaf37 100644 --- a/lib/x11/platform.h +++ b/lib/x11/platform.h @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_enable.c b/lib/x11/x11_enable.c index 88308d5a..73e58438 100644 --- a/lib/x11/x11_enable.c +++ b/lib/x11/x11_enable.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11 (Unix) -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_fullscreen.c b/lib/x11/x11_fullscreen.c index f720214b..2c6f5e4f 100644 --- a/lib/x11/x11_fullscreen.c +++ b/lib/x11/x11_fullscreen.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_glext.c b/lib/x11/x11_glext.c index bf77dcfa..afdeff43 100644 --- a/lib/x11/x11_glext.c +++ b/lib/x11/x11_glext.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_init.c b/lib/x11/x11_init.c index 612a524f..6e0dee51 100644 --- a/lib/x11/x11_init.c +++ b/lib/x11/x11_init.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_joystick.c b/lib/x11/x11_joystick.c index 90c9c648..3b21d938 100644 --- a/lib/x11/x11_joystick.c +++ b/lib/x11/x11_joystick.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_keysym2unicode.c b/lib/x11/x11_keysym2unicode.c index 9701cb49..8d8b81d7 100644 --- a/lib/x11/x11_keysym2unicode.c +++ b/lib/x11/x11_keysym2unicode.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_time.c b/lib/x11/x11_time.c index 0cff709f..0611b242 100644 --- a/lib/x11/x11_time.c +++ b/lib/x11/x11_time.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard diff --git a/lib/x11/x11_window.c b/lib/x11/x11_window.c index e382e8ed..e1be9e26 100644 --- a/lib/x11/x11_window.c +++ b/lib/x11/x11_window.c @@ -1,7 +1,7 @@ //======================================================================== // GLFW - An OpenGL framework // Platform: X11/GLX -// API version: 2.7 +// API version: 3.0 // WWW: http://www.glfw.org/ //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard