diff --git a/.gitignore b/.gitignore index 5556381b..9904ab10 100644 --- a/.gitignore +++ b/.gitignore @@ -40,11 +40,11 @@ src/wayland-relative-pointer-unstable-v1-protocol.c # Compiled binaries src/libglfw.so src/libglfw.so.3 -src/libglfw.so.3.2 +src/libglfw.so.3.3 src/libglfw.dylib src/libglfw.dylib src/libglfw.3.dylib -src/libglfw.3.2.dylib +src/libglfw.3.3.dylib src/libglfw3.a src/glfw3.lib src/glfw3.dll diff --git a/CMakeLists.txt b/CMakeLists.txt index b1476bd5..0a67af3a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,8 +11,8 @@ if (NOT CMAKE_VERSION VERSION_LESS "3.0") endif() set(GLFW_VERSION_MAJOR "3") -set(GLFW_VERSION_MINOR "2") -set(GLFW_VERSION_PATCH "1") +set(GLFW_VERSION_MINOR "3") +set(GLFW_VERSION_PATCH "0") set(GLFW_VERSION_EXTRA "") set(GLFW_VERSION "${GLFW_VERSION_MAJOR}.${GLFW_VERSION_MINOR}") set(GLFW_VERSION_FULL "${GLFW_VERSION}.${GLFW_VERSION_PATCH}${GLFW_VERSION_EXTRA}") diff --git a/README.md b/README.md index 44e85fe4..7457f99e 100644 --- a/README.md +++ b/README.md @@ -13,15 +13,15 @@ creating windows, contexts and surfaces, reading input, handling events, etc. GLFW is licensed under the [zlib/libpng license](https://opensource.org/licenses/Zlib). -This is version 3.2.1, which adds support for statically linking the Vulkan -loader and fixes for a number of bugs that together affect all supported -platforms. +The latest stable release is version 3.2.1. See the [downloads](http://www.glfw.org/download.html) page for details and files, or fetch the `latest` branch, which always points to the latest stable release. Each release starting with 3.0 also has a corresponding [annotated tag](https://github.com/glfw/glfw/releases) with source and binary archives. +This is a development branch for version 3.3, which is _not yet described_. + If you are new to GLFW, you may find the [tutorial](http://www.glfw.org/docs/latest/quick.html) for GLFW 3 useful. If you have used GLFW 2 in the past, there is a @@ -99,35 +99,6 @@ information on what to include when reporting a bug. ## Changelog - - Added on-demand loading of Vulkan and context creation API libraries - - Added `_GLFW_VULKAN_STATIC` build macro to make the library use the Vulkan - loader linked statically into the application (#820) - - Bugfix: Single compilation unit builds failed due to naming conflicts (#783) - - Bugfix: The range checks for `glfwSetCursorPos` used the wrong minimum (#773) - - Bugfix: Defining `GLFW_INCLUDE_VULKAN` when compiling the library did not - fail with the expected error message (#823) - - Bugfix: Inherited value of `CMAKE_MODULE_PATH` was clobbered (#822) - - [Win32] Bugfix: `glfwSetClipboardString` created an unnecessary intermediate - copy of the string - - [Win32] Bugfix: Examples failed to build on Visual C++ 2010 due to C99 in - `linmath.h` (#785) - - [Win32] Bugfix: The first shown window ignored the `GLFW_MAXIMIZED` hint - when the process was provided a `STARTUPINFO` (#780) - - [Cocoa] Bugfix: Event processing would segfault on some machines due to - a previous distributed notification listener not being fully - removed (#817,#826) - - [Cocoa] Bugfix: Some include statements were duplicated (#838) - - [X11] Bugfix: Window size limits were ignored if the minimum or maximum size - was set to `GLFW_DONT_CARE` (#805) - - [X11] Bugfix: Input focus was set before window was visible, causing - `BadMatch` on some non-reparenting WMs (#789,#798) - - [X11] Bugfix: `glfwGetWindowPos` and `glfwSetWindowPos` operated on the - window frame instead of the client area (#800) - - [WGL] Added reporting of errors from `WGL_ARB_create_context` extension - - [GLX] Bugfix: Dynamically loaded entry points were not verified - - [EGL] Added `lib` prefix matching between EGL and OpenGL ES library binaries - - [EGL] Bugfix: Dynamically loaded entry points were not verified - ## Contact diff --git a/docs/build.dox b/docs/build.dox index ff9ed862..c489acf2 100644 --- a/docs/build.dox +++ b/docs/build.dox @@ -225,7 +225,7 @@ With just a few changes to your `CMakeLists.txt`, you can locate the package and target files generated when GLFW is installed. @code{.cmake} -find_package(glfw3 3.2 REQUIRED) +find_package(glfw3 3.3 REQUIRED) @endcode Note that the dependencies do not include OpenGL or GLU, as GLFW loads any diff --git a/docs/main.dox b/docs/main.dox index 19ad306a..fc95cc4e 100644 --- a/docs/main.dox +++ b/docs/main.dox @@ -8,7 +8,7 @@ GLFW is a free, Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development. It provides a simple, platform-independent API for creating windows, contexts and surfaces, reading input, handling events, etc. -See @ref news_32 for release highlights or the +See @ref news_33 for release highlights or the [version history](http://www.glfw.org/changelog.html) for details. @ref quick_guide is a guide for users new to GLFW. It takes you through how to diff --git a/docs/news.dox b/docs/news.dox index b7cd43fb..619331ea 100644 --- a/docs/news.dox +++ b/docs/news.dox @@ -2,6 +2,9 @@ @page news New features +@section news_33 New features in 3.3 + + @section news_32 New features in 3.2 diff --git a/docs/window.dox b/docs/window.dox index 40a1b971..25e2a5ea 100644 --- a/docs/window.dox +++ b/docs/window.dox @@ -651,7 +651,7 @@ As long as your source file is encoded as UTF-8, you can use any Unicode characters directly in the source. @code -glfwSetWindowTitle(window, "カウボーイビバップ"); +glfwSetWindowTitle(window, "ラストエグザイル"); @endcode If you are using C++11 or C11, you can use a UTF-8 string literal. diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 95caa955..d0c662e9 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1,5 +1,5 @@ /************************************************************************* - * GLFW 3.2 - www.glfw.org + * GLFW 3.3 - www.glfw.org * A library for OpenGL, window and input *------------------------------------------------------------------------ * Copyright (c) 2002-2006 Marcus Geelnard @@ -222,14 +222,14 @@ extern "C" { * backward-compatible. * @ingroup init */ -#define GLFW_VERSION_MINOR 2 +#define GLFW_VERSION_MINOR 3 /*! @brief The revision number of the GLFW library. * * This is incremented when a bug fix release is made that does not contain any * API changes. * @ingroup init */ -#define GLFW_VERSION_REVISION 1 +#define GLFW_VERSION_REVISION 0 /*! @} */ /*! @name Boolean values diff --git a/include/GLFW/glfw3native.h b/include/GLFW/glfw3native.h index 30e1a570..056bc829 100644 --- a/include/GLFW/glfw3native.h +++ b/include/GLFW/glfw3native.h @@ -1,5 +1,5 @@ /************************************************************************* - * GLFW 3.2 - www.glfw.org + * GLFW 3.3 - www.glfw.org * A library for OpenGL, window and input *------------------------------------------------------------------------ * Copyright (c) 2002-2006 Marcus Geelnard diff --git a/src/cocoa_init.m b/src/cocoa_init.m index f10d638d..7c56071c 100644 --- a/src/cocoa_init.m +++ b/src/cocoa_init.m @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // diff --git a/src/cocoa_joystick.h b/src/cocoa_joystick.h index 3b806344..9a591015 100644 --- a/src/cocoa_joystick.h +++ b/src/cocoa_joystick.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Cocoa - www.glfw.org +// GLFW 3.3 Cocoa - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2006-2016 Camilla Berglund // diff --git a/src/cocoa_joystick.m b/src/cocoa_joystick.m index 7423e3d7..439918fd 100644 --- a/src/cocoa_joystick.m +++ b/src/cocoa_joystick.m @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Cocoa - www.glfw.org +// GLFW 3.3 Cocoa - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // Copyright (c) 2012 Torsten Walluhn diff --git a/src/cocoa_monitor.m b/src/cocoa_monitor.m index 9ac0a832..9a384b69 100644 --- a/src/cocoa_monitor.m +++ b/src/cocoa_monitor.m @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/cocoa_platform.h b/src/cocoa_platform.h index 92214276..891b5339 100644 --- a/src/cocoa_platform.h +++ b/src/cocoa_platform.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // diff --git a/src/cocoa_time.c b/src/cocoa_time.c index dacfed01..9a0bf6a2 100644 --- a/src/cocoa_time.c +++ b/src/cocoa_time.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // diff --git a/src/cocoa_window.m b/src/cocoa_window.m index b002e997..5230786f 100644 --- a/src/cocoa_window.m +++ b/src/cocoa_window.m @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // diff --git a/src/context.c b/src/context.c index 85bce7fb..e6334878 100644 --- a/src/context.c +++ b/src/context.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/egl_context.c b/src/egl_context.c index e3d6260a..8915a6e1 100644 --- a/src/egl_context.c +++ b/src/egl_context.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 EGL - www.glfw.org +// GLFW 3.3 EGL - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/egl_context.h b/src/egl_context.h index 9bd8bb40..39bd575f 100644 --- a/src/egl_context.h +++ b/src/egl_context.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 EGL - www.glfw.org +// GLFW 3.3 EGL - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/glfw_config.h.in b/src/glfw_config.h.in index cf253d36..f709726f 100644 --- a/src/glfw_config.h.in +++ b/src/glfw_config.h.in @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2010-2016 Camilla Berglund // diff --git a/src/glx_context.c b/src/glx_context.c index 251b7fc4..6f2f2761 100644 --- a/src/glx_context.c +++ b/src/glx_context.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 GLX - www.glfw.org +// GLFW 3.3 GLX - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/glx_context.h b/src/glx_context.h index 3abed0eb..15e4f9b2 100644 --- a/src/glx_context.h +++ b/src/glx_context.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 GLX - www.glfw.org +// GLFW 3.3 GLX - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/init.c b/src/init.c index 9d4a2b25..e0ebfade 100644 --- a/src/init.c +++ b/src/init.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/input.c b/src/input.c index 614c6ef3..37c98c6f 100644 --- a/src/input.c +++ b/src/input.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/internal.h b/src/internal.h index 8e84efd2..0f35146b 100644 --- a/src/internal.h +++ b/src/internal.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/linux_joystick.c b/src/linux_joystick.c index 561b1eb8..ad249955 100644 --- a/src/linux_joystick.c +++ b/src/linux_joystick.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Linux - www.glfw.org +// GLFW 3.3 Linux - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/linux_joystick.h b/src/linux_joystick.h index e9d1f2ba..4187b137 100644 --- a/src/linux_joystick.h +++ b/src/linux_joystick.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Linux - www.glfw.org +// GLFW 3.3 Linux - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ådahl // diff --git a/src/mir_init.c b/src/mir_init.c index 3076f5f3..7385bb74 100644 --- a/src/mir_init.c +++ b/src/mir_init.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Mir - www.glfw.org +// GLFW 3.3 Mir - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014-2015 Brandon Schaefer // diff --git a/src/mir_monitor.c b/src/mir_monitor.c index 90aa6c93..94c13137 100644 --- a/src/mir_monitor.c +++ b/src/mir_monitor.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Mir - www.glfw.org +// GLFW 3.3 Mir - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014-2015 Brandon Schaefer // diff --git a/src/mir_platform.h b/src/mir_platform.h index 8f1cf4e4..2bd9b621 100644 --- a/src/mir_platform.h +++ b/src/mir_platform.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Mir - www.glfw.org +// GLFW 3.3 Mir - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014-2015 Brandon Schaefer // diff --git a/src/mir_window.c b/src/mir_window.c index 411f906f..7d7f6322 100644 --- a/src/mir_window.c +++ b/src/mir_window.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Mir - www.glfw.org +// GLFW 3.3 Mir - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014-2015 Brandon Schaefer // diff --git a/src/monitor.c b/src/monitor.c index b6c312df..df32a3c4 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/nsgl_context.h b/src/nsgl_context.h index 1304f2e8..aa42d237 100644 --- a/src/nsgl_context.h +++ b/src/nsgl_context.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // diff --git a/src/nsgl_context.m b/src/nsgl_context.m index 22ebdba9..454a7739 100644 --- a/src/nsgl_context.m +++ b/src/nsgl_context.m @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 OS X - www.glfw.org +// GLFW 3.3 OS X - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2016 Camilla Berglund // diff --git a/src/posix_time.c b/src/posix_time.c index 8d0d4cd6..368cbdf3 100644 --- a/src/posix_time.c +++ b/src/posix_time.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 POSIX - www.glfw.org +// GLFW 3.3 POSIX - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/posix_time.h b/src/posix_time.h index 4730ca7c..4a23bfa3 100644 --- a/src/posix_time.h +++ b/src/posix_time.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 POSIX - www.glfw.org +// GLFW 3.3 POSIX - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/posix_tls.c b/src/posix_tls.c index c9517c67..3edade55 100644 --- a/src/posix_tls.c +++ b/src/posix_tls.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 POSIX - www.glfw.org +// GLFW 3.3 POSIX - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/posix_tls.h b/src/posix_tls.h index 0d408ae6..f79ba987 100644 --- a/src/posix_tls.h +++ b/src/posix_tls.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 POSIX - www.glfw.org +// GLFW 3.3 POSIX - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/vulkan.c b/src/vulkan.c index 20011deb..a2d10b6a 100644 --- a/src/vulkan.c +++ b/src/vulkan.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/wgl_context.c b/src/wgl_context.c index 696c4cba..677860de 100644 --- a/src/wgl_context.c +++ b/src/wgl_context.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 WGL - www.glfw.org +// GLFW 3.3 WGL - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/wgl_context.h b/src/wgl_context.h index b837d438..6d989232 100644 --- a/src/wgl_context.h +++ b/src/wgl_context.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 WGL - www.glfw.org +// GLFW 3.3 WGL - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/win32_init.c b/src/win32_init.c index b2a0a679..12e98a09 100644 --- a/src/win32_init.c +++ b/src/win32_init.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/win32_joystick.h b/src/win32_joystick.h index 6a75b415..44ce9531 100644 --- a/src/win32_joystick.h +++ b/src/win32_joystick.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2006-2016 Camilla Berglund // diff --git a/src/win32_monitor.c b/src/win32_monitor.c index e55c9a71..dc29f7c7 100644 --- a/src/win32_monitor.c +++ b/src/win32_monitor.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/win32_platform.h b/src/win32_platform.h index c0dcff15..d742f3be 100644 --- a/src/win32_platform.h +++ b/src/win32_platform.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/win32_time.c b/src/win32_time.c index d972f567..add55c5f 100644 --- a/src/win32_time.c +++ b/src/win32_time.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/win32_tls.c b/src/win32_tls.c index ab79fcc3..0607ca6c 100644 --- a/src/win32_tls.c +++ b/src/win32_tls.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/win32_window.c b/src/win32_window.c index 8e30eb64..64c3d71a 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Win32 - www.glfw.org +// GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/window.c b/src/window.c index 5e74e6e0..3fdd1975 100644 --- a/src/window.c +++ b/src/window.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 - www.glfw.org +// GLFW 3.3 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/wl_init.c b/src/wl_init.c index 44f7d0c8..1b590091 100644 --- a/src/wl_init.c +++ b/src/wl_init.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Wayland - www.glfw.org +// GLFW 3.3 Wayland - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ådahl // diff --git a/src/wl_monitor.c b/src/wl_monitor.c index 27731c22..d6a5a3f4 100644 --- a/src/wl_monitor.c +++ b/src/wl_monitor.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Wayland - www.glfw.org +// GLFW 3.3 Wayland - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ådahl // diff --git a/src/wl_platform.h b/src/wl_platform.h index 9e42b36f..e2d3d43b 100644 --- a/src/wl_platform.h +++ b/src/wl_platform.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Wayland - www.glfw.org +// GLFW 3.3 Wayland - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ådahl // diff --git a/src/wl_window.c b/src/wl_window.c index cf75ec82..d633c661 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Wayland - www.glfw.org +// GLFW 3.3 Wayland - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ådahl // diff --git a/src/x11_init.c b/src/x11_init.c index f7a06c1d..87bd877e 100644 --- a/src/x11_init.c +++ b/src/x11_init.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 X11 - www.glfw.org +// GLFW 3.3 X11 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/x11_monitor.c b/src/x11_monitor.c index 2cec7918..111ef1aa 100644 --- a/src/x11_monitor.c +++ b/src/x11_monitor.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 X11 - www.glfw.org +// GLFW 3.3 X11 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/x11_platform.h b/src/x11_platform.h index 33043069..074ab70d 100644 --- a/src/x11_platform.h +++ b/src/x11_platform.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 X11 - www.glfw.org +// GLFW 3.3 X11 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/x11_window.c b/src/x11_window.c index 077eebb6..7542321d 100644 --- a/src/x11_window.c +++ b/src/x11_window.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 X11 - www.glfw.org +// GLFW 3.3 X11 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/xkb_unicode.c b/src/xkb_unicode.c index 32233359..e16a070c 100644 --- a/src/xkb_unicode.c +++ b/src/xkb_unicode.c @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 X11 - www.glfw.org +// GLFW 3.3 X11 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2016 Camilla Berglund diff --git a/src/xkb_unicode.h b/src/xkb_unicode.h index 688374d8..164a6fa8 100644 --- a/src/xkb_unicode.h +++ b/src/xkb_unicode.h @@ -1,5 +1,5 @@ //======================================================================== -// GLFW 3.2 Linux - www.glfw.org +// GLFW 3.3 Linux - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ådahl //