2013-06-13 09:07:28 -04:00
|
|
|
# GLFW
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2021-06-07 16:21:23 -04:00
|
|
|
[![Build status](https://github.com/glfw/glfw/actions/workflows/build.yml/badge.svg)](https://github.com/glfw/glfw/actions)
|
2016-02-04 08:58:44 -05:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/0kf0ct9831i5l6sp/branch/master?svg=true)](https://ci.appveyor.com/project/elmindreda/glfw)
|
2016-06-23 10:09:55 -04:00
|
|
|
[![Coverity Scan](https://scan.coverity.com/projects/4884/badge.svg)](https://scan.coverity.com/projects/glfw-glfw)
|
2015-04-14 17:47:17 -04:00
|
|
|
|
2013-02-04 04:46:02 -05:00
|
|
|
## Introduction
|
|
|
|
|
2016-08-08 19:34:56 -04:00
|
|
|
GLFW is an 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.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2019-04-15 19:36:49 -04:00
|
|
|
GLFW natively supports Windows, macOS and Linux and other Unix-like systems. On
|
2019-08-28 15:28:23 -04:00
|
|
|
Linux both X11 and Wayland are supported.
|
2017-01-29 14:10:53 -05:00
|
|
|
|
2016-08-17 10:48:22 -04:00
|
|
|
GLFW is licensed under the [zlib/libpng
|
2021-06-09 16:43:27 -04:00
|
|
|
license](https://www.glfw.org/license.html).
|
2016-06-05 13:35:39 -04:00
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
You can [download](https://www.glfw.org/download.html) the latest stable release
|
2019-04-15 19:36:49 -04:00
|
|
|
as source or Windows binaries, or fetch the `latest` branch from GitHub. Each
|
|
|
|
release starting with 3.0 also has a corresponding [annotated
|
2016-08-17 10:48:22 -04:00
|
|
|
tag](https://github.com/glfw/glfw/releases) with source and binary archives.
|
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
The [documentation](https://www.glfw.org/docs/latest/) is available online and is
|
2019-04-15 19:36:49 -04:00
|
|
|
included in all source and binary archives. See the [release
|
|
|
|
notes](https://www.glfw.org/docs/latest/news.html) for new features, caveats and
|
|
|
|
deprecations in the latest release. For more details see the [version
|
2021-06-09 16:43:27 -04:00
|
|
|
history](https://www.glfw.org/changelog.html).
|
2017-01-29 14:10:53 -05:00
|
|
|
|
|
|
|
The `master` branch is the stable integration branch and _should_ always compile
|
|
|
|
and run on all supported platforms, although details of newly added features may
|
|
|
|
change until they have been included in a release. New features and many bug
|
|
|
|
fixes live in [other branches](https://github.com/glfw/glfw/branches/all) until
|
|
|
|
they are stable enough to merge.
|
2016-08-18 17:42:15 -04:00
|
|
|
|
2013-04-07 07:26:06 -04:00
|
|
|
If you are new to GLFW, you may find the
|
2021-06-09 16:43:27 -04:00
|
|
|
[tutorial](https://www.glfw.org/docs/latest/quick.html) for GLFW 3 useful. If
|
2017-07-11 18:21:17 -04:00
|
|
|
you have used GLFW 2 in the past, there is a [transition
|
2021-06-09 16:43:27 -04:00
|
|
|
guide](https://www.glfw.org/docs/latest/moving.html) for moving to the GLFW
|
2017-07-11 18:21:17 -04:00
|
|
|
3 API.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2021-07-19 12:25:50 -04:00
|
|
|
GLFW exists because of the contributions of [many people](CONTRIBUTORS.md)
|
|
|
|
around the world, whether by reporting bugs, providing community support, adding
|
|
|
|
features, reviewing or testing code, debugging, proofreading docs, suggesting
|
|
|
|
features or fixing bugs.
|
|
|
|
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2013-10-27 07:50:33 -04:00
|
|
|
## Compiling GLFW
|
2013-10-21 16:23:15 -04:00
|
|
|
|
2019-04-15 19:36:49 -04:00
|
|
|
GLFW itself requires only the headers and libraries for your OS and window
|
|
|
|
system. It does not need the headers for any context creation API (WGL, GLX,
|
|
|
|
EGL, NSGL, OSMesa) or rendering API (OpenGL, OpenGL ES, Vulkan) to enable
|
|
|
|
support for them.
|
2016-07-14 12:32:30 -04:00
|
|
|
|
2016-07-14 12:29:39 -04:00
|
|
|
GLFW supports compilation on Windows with Visual C++ 2010 and later, MinGW and
|
2016-10-19 18:50:54 -04:00
|
|
|
MinGW-w64, on macOS with Clang and on Linux and other Unix-like systems with GCC
|
2016-07-14 12:29:39 -04:00
|
|
|
and Clang. It will likely compile in other environments as well, but this is
|
|
|
|
not regularly tested.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
There are [pre-compiled Windows binaries](https://www.glfw.org/download.html)
|
2017-07-11 18:21:17 -04:00
|
|
|
available for all supported compilers.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
See the [compilation guide](https://www.glfw.org/docs/latest/compile.html) for
|
2017-07-11 18:21:17 -04:00
|
|
|
more information about how to compile GLFW yourself.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2016-07-14 12:02:44 -04:00
|
|
|
|
2016-07-14 12:11:17 -04:00
|
|
|
## Using GLFW
|
2016-07-14 12:02:44 -04:00
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
See the [documentation](https://www.glfw.org/docs/latest/) for tutorials, guides
|
2017-01-29 14:10:53 -05:00
|
|
|
and the API reference.
|
|
|
|
|
|
|
|
|
|
|
|
## Contributing to GLFW
|
|
|
|
|
|
|
|
See the [contribution
|
2017-11-20 12:55:43 -05:00
|
|
|
guide](https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md) for
|
2017-01-29 14:10:53 -05:00
|
|
|
more information.
|
2016-07-14 12:02:44 -04:00
|
|
|
|
|
|
|
|
2016-07-14 12:11:17 -04:00
|
|
|
## System requirements
|
2016-07-14 12:02:44 -04:00
|
|
|
|
2019-01-03 13:32:45 -05:00
|
|
|
GLFW supports Windows XP and later and macOS 10.8 and later. Linux and other
|
2017-01-29 14:10:53 -05:00
|
|
|
Unix-like systems running the X Window System are supported even without
|
|
|
|
a desktop environment or modern extensions, although some features require
|
|
|
|
a running window or clipboard manager. The OSMesa backend requires Mesa 6.3.
|
2016-07-14 12:02:44 -04:00
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
See the [compatibility guide](https://www.glfw.org/docs/latest/compat.html)
|
2016-07-14 12:19:46 -04:00
|
|
|
in the documentation for more information.
|
2016-07-14 12:02:44 -04:00
|
|
|
|
|
|
|
|
2014-01-11 23:40:36 -05:00
|
|
|
## Dependencies
|
|
|
|
|
2019-11-26 12:09:22 -05:00
|
|
|
GLFW itself needs only CMake 3.1 or later and the headers and libraries for your
|
|
|
|
OS and window system.
|
2016-08-08 19:34:56 -04:00
|
|
|
|
2016-02-08 10:23:44 -05:00
|
|
|
The examples and test programs depend on a number of tiny libraries. These are
|
|
|
|
located in the `deps/` directory.
|
2014-01-11 23:40:36 -05:00
|
|
|
|
2014-06-18 10:13:49 -04:00
|
|
|
- [getopt\_port](https://github.com/kimgr/getopt_port/) for examples
|
|
|
|
with command-line options
|
2014-10-14 21:55:25 -04:00
|
|
|
- [TinyCThread](https://github.com/tinycthread/tinycthread) for threaded
|
2014-06-18 10:13:49 -04:00
|
|
|
examples
|
2019-04-14 11:34:38 -04:00
|
|
|
- [glad2](https://github.com/Dav1dde/glad) for loading OpenGL and Vulkan
|
|
|
|
functions
|
2015-08-09 10:58:25 -04:00
|
|
|
- [linmath.h](https://github.com/datenwolf/linmath.h) for linear algebra in
|
|
|
|
examples
|
2021-01-03 15:13:02 -05:00
|
|
|
- [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) for test and example UI
|
2016-10-13 11:42:44 -04:00
|
|
|
- [stb\_image\_write](https://github.com/nothings/stb) for writing images to disk
|
2015-08-10 14:19:04 -04:00
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
The documentation is generated with [Doxygen](https://doxygen.org/) if CMake can
|
2017-07-11 18:21:17 -04:00
|
|
|
find that tool.
|
2016-02-08 10:23:44 -05:00
|
|
|
|
2014-01-11 23:40:36 -05:00
|
|
|
|
2016-07-14 12:32:30 -04:00
|
|
|
## Reporting bugs
|
|
|
|
|
|
|
|
Bugs are reported to our [issue tracker](https://github.com/glfw/glfw/issues).
|
|
|
|
Please check the [contribution
|
2017-11-20 12:55:43 -05:00
|
|
|
guide](https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md) for
|
2016-07-14 12:32:30 -04:00
|
|
|
information on what to include when reporting a bug.
|
|
|
|
|
|
|
|
|
2013-06-13 09:09:10 -04:00
|
|
|
## Changelog
|
2013-02-04 04:46:02 -05:00
|
|
|
|
2021-07-13 15:50:09 -04:00
|
|
|
- Added `GLFW_PLATFORM` init hint for runtime platform selection (#1958)
|
|
|
|
- Added `GLFW_ANY_PLATFORM`, `GLFW_PLATFORM_WIN32`, `GLFW_PLATFORM_COCOA`,
|
|
|
|
`GLFW_PLATFORM_WAYLAND`, `GLFW_PLATFORM_X11` and `GLFW_PLATFORM_NULL` symbols to
|
|
|
|
specify the desired platform (#1958)
|
|
|
|
- Added `glfwGetPlatform` function to query what platform was selected (#1655,#1958)
|
|
|
|
- Added `glfwPlatformSupported` function to query if a platform is supported
|
|
|
|
(#1655,#1958)
|
2021-08-03 14:53:48 -04:00
|
|
|
- Added `glfwInitAllocator` for setting a custom memory allocator (#544,#1628,#1947)
|
|
|
|
- Added `GLFWallocator` struct and `GLFWallocatefun`, `GLFWreallocatefun` and
|
|
|
|
`GLFWdeallocatefun` types (#544,#1628,#1947)
|
2021-10-21 14:45:44 -04:00
|
|
|
- Added `glfwInitVulkanLoader` for using a non-default Vulkan loader (#1374,#1890)
|
2019-05-07 14:40:37 -04:00
|
|
|
- Added `GLFW_RESIZE_NWSE_CURSOR`, `GLFW_RESIZE_NESW_CURSOR`,
|
|
|
|
`GLFW_RESIZE_ALL_CURSOR` and `GLFW_NOT_ALLOWED_CURSOR` cursor shapes (#427)
|
|
|
|
- Added `GLFW_RESIZE_EW_CURSOR` alias for `GLFW_HRESIZE_CURSOR` (#427)
|
|
|
|
- Added `GLFW_RESIZE_NS_CURSOR` alias for `GLFW_VRESIZE_CURSOR` (#427)
|
|
|
|
- Added `GLFW_POINTING_HAND_CURSOR` alias for `GLFW_HAND_CURSOR` (#427)
|
2020-07-08 17:21:28 -04:00
|
|
|
- Added `GLFW_MOUSE_PASSTHROUGH` window hint for letting mouse input pass
|
|
|
|
through the window (#1236,#1568)
|
2021-07-13 15:50:09 -04:00
|
|
|
- Added `GLFW_PLATFORM_UNAVAILABLE` error for platform detection failures (#1958)
|
2020-05-20 12:02:58 -04:00
|
|
|
- Added `GLFW_FEATURE_UNAVAILABLE` error for platform limitations (#1692)
|
|
|
|
- Added `GLFW_FEATURE_UNIMPLEMENTED` error for incomplete backends (#1692)
|
2020-06-25 12:22:08 -04:00
|
|
|
- Added `GLFW_ANGLE_PLATFORM_TYPE` init hint and `GLFW_ANGLE_PLATFORM_TYPE_*`
|
|
|
|
values to select ANGLE backend (#1380)
|
2020-12-09 18:11:44 -05:00
|
|
|
- Added `GLFW_X11_XCB_VULKAN_SURFACE` init hint for selecting X11 Vulkan
|
|
|
|
surface extension (#1793)
|
2021-07-13 15:50:09 -04:00
|
|
|
- Added `GLFW_BUILD_WIN32` CMake option for enabling Win32 support (#1958)
|
|
|
|
- Added `GLFW_BUILD_COCOA` CMake option for enabling Cocoa support (#1958)
|
|
|
|
- Added `GLFW_BUILD_X11` CMake option for enabling X11 support (#1958)
|
2021-07-06 17:12:05 -04:00
|
|
|
- Added `GLFW_LIBRARY_TYPE` CMake variable for overriding the library type
|
|
|
|
(#279,#1307,#1497,#1574,#1928)
|
2021-07-30 07:19:46 -04:00
|
|
|
- Added `GLFW_PKG_CONFIG_REQUIRES_PRIVATE` and `GLFW_PKG_CONFIG_LIBS_PRIVATE` CMake
|
|
|
|
variables exposing pkg-config dependencies (#1307)
|
2020-07-12 12:31:29 -04:00
|
|
|
- Made joystick subsystem initialize at first use (#1284,#1646)
|
2021-05-13 15:38:46 -04:00
|
|
|
- Made `GLFW_DOUBLEBUFFER` a read-only window attribute
|
2019-11-26 12:09:22 -05:00
|
|
|
- Updated the minimum required CMake version to 3.1
|
2021-10-28 05:48:34 -04:00
|
|
|
- Updated gamepad mappings from upstream
|
2019-05-08 13:04:21 -04:00
|
|
|
- Disabled tests and examples by default when built as a CMake subdirectory
|
2021-07-13 15:50:09 -04:00
|
|
|
- Renamed `GLFW_USE_WAYLAND` CMake option to `GLFW_BUILD_WAYLAND` (#1958)
|
|
|
|
- Removed `GLFW_USE_OSMESA` CMake option enabling the Null platform (#1958)
|
2021-04-15 09:33:19 -04:00
|
|
|
- Removed CMake generated configuration header
|
2019-05-02 15:32:14 -04:00
|
|
|
- Bugfix: The CMake config-file package used an absolute path and was not
|
|
|
|
relocatable (#1470)
|
2019-09-01 14:05:58 -04:00
|
|
|
- Bugfix: Video modes with a duplicate screen area were discarded (#1555,#1556)
|
2019-10-16 11:43:29 -04:00
|
|
|
- Bugfix: Compiling with -Wextra-semi caused warnings (#1440)
|
2019-12-31 19:42:25 -05:00
|
|
|
- Bugfix: Built-in mappings failed because some OEMs re-used VID/PID (#1583)
|
2020-05-28 11:38:21 -04:00
|
|
|
- Bugfix: Some extension loader headers did not prevent default OpenGL header
|
|
|
|
inclusion (#1695)
|
2021-05-13 15:41:51 -04:00
|
|
|
- Bugfix: Buffers were swapped at creation on single-buffered windows (#1873)
|
2021-06-25 13:49:38 -04:00
|
|
|
- Bugfix: Gamepad mapping updates could spam `GLFW_INVALID_VALUE` due to
|
|
|
|
incompatible controllers sharing hardware ID (#1763)
|
2021-10-04 14:32:32 -04:00
|
|
|
- Bugfix: Native access functions for context handles did not check that the API matched
|
2019-08-20 13:00:59 -04:00
|
|
|
- [Win32] Added the `GLFW_WIN32_KEYBOARD_MENU` window hint for enabling access
|
|
|
|
to the window menu
|
2019-12-11 13:09:59 -05:00
|
|
|
- [Win32] Added a version info resource to the GLFW DLL
|
2020-07-27 18:12:45 -04:00
|
|
|
- [Win32] Disabled framebuffer transparency on Windows 7 when DWM windows are
|
|
|
|
opaque (#1512)
|
2019-07-12 08:23:12 -04:00
|
|
|
- [Win32] Bugfix: `GLFW_INCLUDE_VULKAN` plus `VK_USE_PLATFORM_WIN32_KHR` caused
|
|
|
|
symbol redefinition (#1524)
|
2019-07-12 13:04:16 -04:00
|
|
|
- [Win32] Bugfix: The cursor position event was emitted before its cursor enter
|
|
|
|
event (#1490)
|
2019-08-13 09:18:02 -04:00
|
|
|
- [Win32] Bugfix: The window hint `GLFW_MAXIMIZED` did not move or resize the
|
|
|
|
window (#1499)
|
2019-12-31 19:42:25 -05:00
|
|
|
- [Win32] Bugfix: Disabled cursor mode interfered with some non-client actions
|
2020-01-15 10:19:56 -05:00
|
|
|
- [Win32] Bugfix: Super key was not released after Win+V hotkey (#1622)
|
2020-01-15 10:34:58 -05:00
|
|
|
- [Win32] Bugfix: `glfwGetKeyName` could access out of bounds and return an
|
|
|
|
invalid pointer
|
2020-01-15 12:54:42 -05:00
|
|
|
- [Win32] Bugfix: Some synthetic key events were reported as `GLFW_KEY_UNKNOWN`
|
|
|
|
(#1623)
|
2020-06-29 14:43:28 -04:00
|
|
|
- [Win32] Bugfix: Non-BMP Unicode codepoint input was reported as UTF-16
|
2020-09-23 17:34:42 -04:00
|
|
|
- [Win32] Bugfix: Monitor functions could return invalid values after
|
|
|
|
configuration change (#1761)
|
2020-09-29 14:16:59 -04:00
|
|
|
- [Win32] Bugfix: Initialization would segfault on Windows 8 (not 8.1) (#1775)
|
2020-10-07 17:35:17 -04:00
|
|
|
- [Win32] Bugfix: Duplicate size events were not filtered (#1610)
|
2021-01-19 16:25:05 -05:00
|
|
|
- [Win32] Bugfix: Full screen windows were incorrectly resized by DPI changes
|
|
|
|
(#1582)
|
2021-01-19 19:02:24 -05:00
|
|
|
- [Win32] Bugfix: `GLFW_SCALE_TO_MONITOR` had no effect on systems older than
|
|
|
|
Windows 10 version 1703 (#1511)
|
2020-10-12 17:47:35 -04:00
|
|
|
- [Win32] Bugfix: `USE_MSVC_RUNTIME_LIBRARY_DLL` had no effect on CMake 3.15 or
|
|
|
|
later (#1783,#1796)
|
2021-04-12 14:56:53 -04:00
|
|
|
- [Win32] Bugfix: Compilation with LLVM for Windows failed (#1807,#1824,#1874)
|
2021-08-02 15:42:36 -04:00
|
|
|
- [Win32] Bugfix: The foreground lock timeout was overridden, ignoring the user
|
2021-12-01 11:55:16 -05:00
|
|
|
- [Win32] Bugfix: Content scale queries could fail silently (#1615)
|
|
|
|
- [Win32] Bugfix: Content scales could have garbage values if monitor was recently
|
|
|
|
disconnected (#1615)
|
2022-01-20 13:21:48 -05:00
|
|
|
- [Win32] Bugfix: Key name update modified global key state on Windows 10 1607
|
|
|
|
and later (#2018)
|
2020-01-15 19:52:50 -05:00
|
|
|
- [Cocoa] Added support for `VK_EXT_metal_surface` (#1619)
|
2020-01-15 23:09:19 -05:00
|
|
|
- [Cocoa] Added locating the Vulkan loader at runtime in an application bundle
|
2020-03-05 14:32:19 -05:00
|
|
|
- [Cocoa] Moved main menu creation to GLFW initialization time (#1649)
|
2020-06-29 15:14:29 -04:00
|
|
|
- [Cocoa] Changed `EGLNativeWindowType` from `NSView` to `CALayer` (#1169)
|
2020-10-20 14:03:58 -04:00
|
|
|
- [Cocoa] Changed F13 key to report Print Screen for cross-platform consistency
|
|
|
|
(#1786)
|
2019-12-25 11:09:38 -05:00
|
|
|
- [Cocoa] Removed dependency on the CoreVideo framework
|
2019-08-29 16:08:29 -04:00
|
|
|
- [Cocoa] Bugfix: `glfwSetWindowSize` used a bottom-left anchor point (#1553)
|
2019-11-06 17:34:08 -05:00
|
|
|
- [Cocoa] Bugfix: Window remained on screen after destruction until event poll
|
|
|
|
(#1412)
|
2019-11-27 17:21:13 -05:00
|
|
|
- [Cocoa] Bugfix: Event processing before window creation would assert (#1543)
|
2019-12-31 19:42:25 -05:00
|
|
|
- [Cocoa] Bugfix: Undecorated windows could not be iconified on recent macOS
|
2020-03-05 14:32:19 -05:00
|
|
|
- [Cocoa] Bugfix: Touching event queue from secondary thread before main thread
|
|
|
|
would abort (#1649)
|
2020-06-29 15:16:59 -04:00
|
|
|
- [Cocoa] Bugfix: Non-BMP Unicode codepoint input was reported as UTF-16
|
|
|
|
(#1635)
|
2020-07-23 12:55:29 -04:00
|
|
|
- [Cocoa] Bugfix: Failing to retrieve the refresh rate of built-in displays
|
|
|
|
could leak memory
|
2020-10-18 13:34:23 -04:00
|
|
|
- [Cocoa] Bugfix: Objective-C files were compiled as C with CMake 3.19 (#1787)
|
2021-01-18 10:24:27 -05:00
|
|
|
- [Cocoa] Bugfix: Duplicate video modes were not filtered out (#1830)
|
2021-10-27 17:58:59 -04:00
|
|
|
- [Cocoa] Bugfix: Menu bar was not clickable on macOS 10.15+ until it lost and
|
2020-12-08 17:23:20 -05:00
|
|
|
regained focus (#1648,#1802)
|
2021-01-17 19:34:55 -05:00
|
|
|
- [Cocoa] Bugfix: Monitor name query could segfault on macOS 11 (#1809,#1833)
|
2021-01-18 12:55:17 -05:00
|
|
|
- [Cocoa] Bugfix: The install name of the installed dylib was relative (#1504)
|
2021-07-16 14:04:56 -04:00
|
|
|
- [Cocoa] Bugfix: The MoltenVK layer contents scale was updated only after
|
|
|
|
related events were emitted
|
2021-09-12 11:15:59 -04:00
|
|
|
- [Cocoa] Bugfix: Moving the cursor programmatically would freeze it for
|
|
|
|
a fraction of a second (#1962)
|
2021-10-27 17:58:59 -04:00
|
|
|
- [Cocoa] Bugfix: `kIOMasterPortDefault` was deprecated in macOS 12.0 (#1980)
|
2022-02-02 13:20:32 -05:00
|
|
|
- [Cocoa] Bugfix: `kUTTypeURL` was deprecated in macOS 12.0 (#2003)
|
2019-05-07 11:03:55 -04:00
|
|
|
- [X11] Bugfix: The CMake files did not check for the XInput headers (#1480)
|
2019-07-11 14:21:04 -04:00
|
|
|
- [X11] Bugfix: Key names were not updated when the keyboard layout changed
|
|
|
|
(#1462,#1528)
|
2019-09-26 12:29:37 -04:00
|
|
|
- [X11] Bugfix: Decorations could not be enabled after window creation (#1566)
|
2019-10-28 14:18:19 -04:00
|
|
|
- [X11] Bugfix: Content scale fallback value could be inconsistent (#1578)
|
2019-12-16 08:53:06 -05:00
|
|
|
- [X11] Bugfix: `glfwMaximizeWindow` had no effect on hidden windows
|
2019-12-16 19:43:08 -05:00
|
|
|
- [X11] Bugfix: Clearing `GLFW_FLOATING` on a hidden window caused invalid read
|
2019-12-16 10:09:52 -05:00
|
|
|
- [X11] Bugfix: Changing `GLFW_FLOATING` on a hidden window could silently fail
|
2019-12-31 19:42:25 -05:00
|
|
|
- [X11] Bugfix: Disabled cursor mode was interrupted by indicator windows
|
|
|
|
- [X11] Bugfix: Monitor physical dimensions could be reported as zero mm
|
2020-01-01 10:56:32 -05:00
|
|
|
- [X11] Bugfix: Window position events were not emitted during resizing (#1613)
|
2020-01-05 08:34:39 -05:00
|
|
|
- [X11] Bugfix: `glfwFocusWindow` could terminate on older WMs or without a WM
|
2020-01-16 15:12:37 -05:00
|
|
|
- [X11] Bugfix: Querying a disconnected monitor could segfault (#1602)
|
2020-02-06 09:46:37 -05:00
|
|
|
- [X11] Bugfix: IME input of CJK was broken for "C" locale (#1587,#1636)
|
2020-01-22 14:12:36 -05:00
|
|
|
- [X11] Bugfix: Termination would segfault if the IM had been destroyed
|
|
|
|
- [X11] Bugfix: Any IM started after initialization would not be detected
|
2020-03-16 12:13:59 -04:00
|
|
|
- [X11] Bugfix: Xlib errors caused by other parts of the application could be
|
|
|
|
reported as GLFW errors
|
2020-03-19 18:28:21 -04:00
|
|
|
- [X11] Bugfix: A handle race condition could cause a `BadWindow` error (#1633)
|
2020-03-31 11:30:22 -04:00
|
|
|
- [X11] Bugfix: XKB path used keysyms instead of physical locations for
|
|
|
|
non-printable keys (#1598)
|
|
|
|
- [X11] Bugfix: Function keys were mapped to `GLFW_KEY_UNKNOWN` for some layout
|
2021-10-27 17:58:59 -04:00
|
|
|
combinations (#1598)
|
2020-06-30 14:57:24 -04:00
|
|
|
- [X11] Bugfix: Keys pressed simultaneously with others were not always
|
|
|
|
reported (#1112,#1415,#1472,#1616)
|
2021-03-08 13:32:36 -05:00
|
|
|
- [X11] Bugfix: Some window attributes were not applied on leaving fullscreen
|
2021-03-19 09:47:28 -04:00
|
|
|
(#1863)
|
2021-08-15 08:55:13 -04:00
|
|
|
- [X11] Bugfix: Changing `GLFW_FLOATING` could leak memory
|
2021-11-02 18:15:05 -04:00
|
|
|
- [X11] Bugfix: Icon pixel format conversion worked only by accident, relying on
|
|
|
|
undefined behavior (#1986)
|
2021-12-22 16:19:25 -05:00
|
|
|
- [X11] Bugfix: Dynamic loading on OpenBSD failed due to soname differences
|
2022-02-01 16:05:55 -05:00
|
|
|
- [X11] Bugfix: Waiting for events would fail if file descriptor was too large
|
|
|
|
(#2024)
|
2021-07-13 12:12:43 -04:00
|
|
|
- [Wayland] Added dynamic loading of all Wayland libraries
|
2021-12-29 17:45:06 -05:00
|
|
|
- [Wayland] Added support for key names via xkbcommon
|
2019-12-31 19:43:40 -05:00
|
|
|
- [Wayland] Removed support for `wl_shell` (#1443)
|
2019-05-17 12:30:02 -04:00
|
|
|
- [Wayland] Bugfix: The `GLFW_HAND_CURSOR` shape used the wrong image (#1432)
|
2019-12-15 11:24:26 -05:00
|
|
|
- [Wayland] Bugfix: `CLOCK_MONOTONIC` was not correctly enabled
|
2020-06-02 13:54:30 -04:00
|
|
|
- [Wayland] Bugfix: Repeated keys could be reported with `NULL` window (#1704)
|
2020-07-15 15:56:52 -04:00
|
|
|
- [Wayland] Bugfix: Retrieving partial framebuffer size would segfault
|
2020-07-15 17:11:19 -04:00
|
|
|
- [Wayland] Bugfix: Scrolling offsets were inverted compared to other platforms
|
|
|
|
(#1463)
|
2021-10-27 17:58:59 -04:00
|
|
|
- [Wayland] Bugfix: Client-Side Decorations were destroyed in the wrong order
|
2020-11-18 20:49:14 -05:00
|
|
|
(#1798)
|
2021-02-17 15:21:49 -05:00
|
|
|
- [Wayland] Bugfix: Monitors physical size could report zero (#1784,#1792)
|
2021-06-01 16:40:44 -04:00
|
|
|
- [Wayland] Bugfix: Some keys were not repeating in Wayland (#1908)
|
2021-05-12 03:30:14 -04:00
|
|
|
- [Wayland] Bugfix: Non-arrow cursors are offset from the hotspot (#1706,#1899)
|
2021-10-28 05:48:34 -04:00
|
|
|
- [Wayland] Bugfix: The `O_CLOEXEC` flag was not defined on FreeBSD
|
2021-12-14 03:29:01 -05:00
|
|
|
- [Wayland] Bugfix: Key repeat could lead to a race condition (#1710)
|
2021-12-22 08:16:19 -05:00
|
|
|
- [Wayland] Bugfix: Activating a window would emit two input focus events
|
2021-12-22 08:19:55 -05:00
|
|
|
- [Wayland] Bugfix: Disable key repeat mechanism when window loses input focus
|
2020-07-12 20:47:50 -04:00
|
|
|
- [Wayland] Bugfix: Window hiding and showing did not work (#1492,#1731)
|
2021-12-26 16:51:20 -05:00
|
|
|
- [Wayland] Bugfix: A key being repeated was not released when window lost focus
|
2021-12-27 19:39:06 -05:00
|
|
|
- [Wayland] Bugfix: Showing a hidden window did not emit a window refresh event
|
2021-12-28 09:33:58 -05:00
|
|
|
- [Wayland] Bugfix: Full screen window creation did not ignore `GLFW_VISIBLE`
|
2021-12-29 20:59:15 -05:00
|
|
|
- [Wayland] Bugfix: Some keys were reported as wrong key or `GLFW_KEY_UNKNOWN`
|
2021-12-30 15:09:23 -05:00
|
|
|
- [Wayland] Bugfix: Text input did not repeat along with key repeat
|
2021-06-21 16:14:40 -04:00
|
|
|
- [POSIX] Removed use of deprecated function `gettimeofday`
|
2019-12-15 11:24:26 -05:00
|
|
|
- [POSIX] Bugfix: `CLOCK_MONOTONIC` was not correctly tested for or enabled
|
2021-10-17 19:05:09 -04:00
|
|
|
- [WGL] Disabled the DWM swap interval hack for Windows 8 and later (#1072)
|
2019-05-19 14:51:50 -04:00
|
|
|
- [NSGL] Removed enforcement of forward-compatible flag for core contexts
|
2019-12-09 12:53:29 -05:00
|
|
|
- [NSGL] Bugfix: `GLFW_COCOA_RETINA_FRAMEBUFFER` had no effect on newer
|
|
|
|
macOS versions (#1442)
|
2019-11-07 09:13:49 -05:00
|
|
|
- [NSGL] Bugfix: Workaround for swap interval on 10.14 broke on 10.12 (#1483)
|
2021-07-29 15:27:02 -04:00
|
|
|
- [NSGL] Bugfix: Defining `GL_SILENCE_DEPRECATION` externally caused
|
|
|
|
a duplicate definition warning (#1840)
|
2020-06-03 16:02:25 -04:00
|
|
|
- [EGL] Added platform selection via the `EGL_EXT_platform_base` extension
|
2020-08-04 11:21:17 -04:00
|
|
|
(#442)
|
2020-06-25 12:22:08 -04:00
|
|
|
- [EGL] Added ANGLE backend selection via `EGL_ANGLE_platform_angle` extension
|
|
|
|
(#1380)
|
2021-06-15 12:14:56 -04:00
|
|
|
- [EGL] Bugfix: The `GLFW_DOUBLEBUFFER` context attribute was ignored (#1843)
|
2022-01-06 01:07:53 -05:00
|
|
|
- [GLX] Bugfix: Context creation failed if GLX 1.4 was not exported by GLX library
|
2016-06-16 06:52:22 -04:00
|
|
|
|
2013-02-04 04:46:02 -05:00
|
|
|
|
|
|
|
## Contact
|
|
|
|
|
2021-06-09 16:43:27 -04:00
|
|
|
On [glfw.org](https://www.glfw.org/) you can find the latest version of GLFW, as
|
2016-08-02 09:58:58 -04:00
|
|
|
well as news, documentation and other information about the project.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
|
|
|
If you have questions related to the use of GLFW, we have a
|
2019-10-13 10:42:54 -04:00
|
|
|
[forum](https://discourse.glfw.org/), and the `#glfw` IRC channel on
|
2021-06-09 16:36:13 -04:00
|
|
|
[Libera.Chat](https://libera.chat/).
|
2013-02-04 04:46:02 -05:00
|
|
|
|
|
|
|
If you have a bug to report, a patch to submit or a feature you'd like to
|
2013-06-24 08:28:42 -04:00
|
|
|
request, please file it in the
|
|
|
|
[issue tracker](https://github.com/glfw/glfw/issues) on GitHub.
|
2013-02-04 04:46:02 -05:00
|
|
|
|
|
|
|
Finally, if you're interested in helping out with the development of GLFW or
|
2016-08-17 10:48:22 -04:00
|
|
|
porting it to your favorite platform, join us on the forum, GitHub or IRC.
|
2013-02-04 04:46:02 -05:00
|
|
|
|