2013-06-13 15:07:28 +02:00
|
|
|
# GLFW
|
2013-02-04 10:46:02 +01:00
|
|
|
|
2021-06-07 22:21:23 +02:00
|
|
|
[](https://github.com/glfw/glfw/actions)
|
2016-02-04 14:58:44 +01:00
|
|
|
[](https://ci.appveyor.com/project/elmindreda/glfw)
|
2015-04-14 23:47:17 +02:00
|
|
|
|
2013-02-04 10:46:02 +01:00
|
|
|
## Introduction
|
|
|
|
|
|
2016-08-09 01:34:56 +02: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 10:46:02 +01:00
|
|
|
|
2019-04-16 01:36:49 +02:00
|
|
|
GLFW natively supports Windows, macOS and Linux and other Unix-like systems. On
|
2024-02-19 15:06:59 +01:00
|
|
|
Linux both Wayland and X11 are supported.
|
2017-01-29 20:10:53 +01:00
|
|
|
|
2016-08-17 16:48:22 +02:00
|
|
|
GLFW is licensed under the [zlib/libpng
|
2021-06-09 22:43:27 +02:00
|
|
|
license](https://www.glfw.org/license.html).
|
2016-06-05 19:35:39 +02:00
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
You can [download](https://www.glfw.org/download.html) the latest stable release
|
2024-02-22 22:22:47 +01:00
|
|
|
as source or Windows binaries. Each release starting with 3.0 also has
|
|
|
|
|
a corresponding [annotated tag](https://github.com/glfw/glfw/releases) with
|
|
|
|
|
source and binary archives.
|
2016-08-17 16:48:22 +02:00
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
The [documentation](https://www.glfw.org/docs/latest/) is available online and is
|
2019-04-16 01:36:49 +02: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 22:43:27 +02:00
|
|
|
history](https://www.glfw.org/changelog.html).
|
2017-01-29 20:10:53 +01: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 23:42:15 +02:00
|
|
|
|
2013-04-07 13:26:06 +02:00
|
|
|
If you are new to GLFW, you may find the
|
2021-06-09 22:43:27 +02:00
|
|
|
[tutorial](https://www.glfw.org/docs/latest/quick.html) for GLFW 3 useful. If
|
2017-07-12 00:21:17 +02:00
|
|
|
you have used GLFW 2 in the past, there is a [transition
|
2021-06-09 22:43:27 +02:00
|
|
|
guide](https://www.glfw.org/docs/latest/moving.html) for moving to the GLFW
|
2017-07-12 00:21:17 +02:00
|
|
|
3 API.
|
2013-02-04 10:46:02 +01:00
|
|
|
|
2021-07-19 18:25:50 +02: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 10:46:02 +01:00
|
|
|
|
2013-10-27 12:50:33 +01:00
|
|
|
## Compiling GLFW
|
2013-10-21 22:23:15 +02:00
|
|
|
|
2024-01-29 22:47:04 +01:00
|
|
|
GLFW is written primarily in C99, with parts of macOS support being written in
|
|
|
|
|
Objective-C. GLFW itself requires only the headers and libraries for your OS
|
|
|
|
|
and window system. It does not need any additional headers for context creation
|
|
|
|
|
APIs (WGL, GLX, EGL, NSGL, OSMesa) or rendering APIs (OpenGL, OpenGL ES, Vulkan)
|
|
|
|
|
to enable support for them.
|
2016-07-14 18:32:30 +02:00
|
|
|
|
2024-04-04 17:00:46 +02:00
|
|
|
GLFW supports compilation on Windows with Visual C++ (2013 and later) and
|
2016-10-20 00:50:54 +02:00
|
|
|
MinGW-w64, on macOS with Clang and on Linux and other Unix-like systems with GCC
|
2016-07-14 18:29:39 +02:00
|
|
|
and Clang. It will likely compile in other environments as well, but this is
|
|
|
|
|
not regularly tested.
|
2013-02-04 10:46:02 +01:00
|
|
|
|
2024-01-29 22:47:04 +01:00
|
|
|
There are [pre-compiled binaries](https://www.glfw.org/download.html) available
|
|
|
|
|
for all supported compilers on Windows and macOS.
|
2013-02-04 10:46:02 +01:00
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
See the [compilation guide](https://www.glfw.org/docs/latest/compile.html) for
|
2017-07-12 00:21:17 +02:00
|
|
|
more information about how to compile GLFW yourself.
|
2013-02-04 10:46:02 +01:00
|
|
|
|
2016-07-14 18:02:44 +02:00
|
|
|
|
2016-07-14 18:11:17 +02:00
|
|
|
## Using GLFW
|
2016-07-14 18:02:44 +02:00
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
See the [documentation](https://www.glfw.org/docs/latest/) for tutorials, guides
|
2017-01-29 20:10:53 +01:00
|
|
|
and the API reference.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Contributing to GLFW
|
|
|
|
|
|
|
|
|
|
See the [contribution
|
2017-11-20 18:55:43 +01:00
|
|
|
guide](https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md) for
|
2017-01-29 20:10:53 +01:00
|
|
|
more information.
|
2016-07-14 18:02:44 +02:00
|
|
|
|
|
|
|
|
|
2016-07-14 18:11:17 +02:00
|
|
|
## System requirements
|
2016-07-14 18:02:44 +02:00
|
|
|
|
2024-04-04 16:40:27 +02:00
|
|
|
GLFW supports Windows 7 and later and macOS 10.11 and later. Linux and other
|
2017-01-29 20:10:53 +01: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 18:02:44 +02:00
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
See the [compatibility guide](https://www.glfw.org/docs/latest/compat.html)
|
2016-07-14 18:19:46 +02:00
|
|
|
in the documentation for more information.
|
2016-07-14 18:02:44 +02:00
|
|
|
|
|
|
|
|
|
2014-01-12 05:40:36 +01:00
|
|
|
## Dependencies
|
|
|
|
|
|
2024-05-10 15:15:12 +02:00
|
|
|
GLFW itself needs only CMake 3.16 or later and the headers and libraries for your
|
2019-11-26 18:09:22 +01:00
|
|
|
OS and window system.
|
2016-08-09 01:34:56 +02:00
|
|
|
|
2016-02-08 16:23:44 +01:00
|
|
|
The examples and test programs depend on a number of tiny libraries. These are
|
|
|
|
|
located in the `deps/` directory.
|
2014-01-12 05:40:36 +01:00
|
|
|
|
2014-06-18 16:13:49 +02:00
|
|
|
- [getopt\_port](https://github.com/kimgr/getopt_port/) for examples
|
|
|
|
|
with command-line options
|
2014-10-15 03:55:25 +02:00
|
|
|
- [TinyCThread](https://github.com/tinycthread/tinycthread) for threaded
|
2014-06-18 16:13:49 +02:00
|
|
|
examples
|
2019-04-14 17:34:38 +02:00
|
|
|
- [glad2](https://github.com/Dav1dde/glad) for loading OpenGL and Vulkan
|
|
|
|
|
functions
|
2015-08-09 16:58:25 +02:00
|
|
|
- [linmath.h](https://github.com/datenwolf/linmath.h) for linear algebra in
|
|
|
|
|
examples
|
2021-01-03 21:13:02 +01:00
|
|
|
- [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) for test and example UI
|
2016-10-13 17:42:44 +02:00
|
|
|
- [stb\_image\_write](https://github.com/nothings/stb) for writing images to disk
|
2015-08-10 20:19:04 +02:00
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
The documentation is generated with [Doxygen](https://doxygen.org/) if CMake can
|
2017-07-12 00:21:17 +02:00
|
|
|
find that tool.
|
2016-02-08 16:23:44 +01:00
|
|
|
|
2014-01-12 05:40:36 +01:00
|
|
|
|
2016-07-14 18:32:30 +02:00
|
|
|
## Reporting bugs
|
|
|
|
|
|
|
|
|
|
Bugs are reported to our [issue tracker](https://github.com/glfw/glfw/issues).
|
|
|
|
|
Please check the [contribution
|
2017-11-20 18:55:43 +01:00
|
|
|
guide](https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md) for
|
2016-07-14 18:32:30 +02:00
|
|
|
information on what to include when reporting a bug.
|
|
|
|
|
|
|
|
|
|
|
2024-02-29 15:28:46 +01:00
|
|
|
## Changelog since 3.4
|
2016-06-16 12:52:22 +02:00
|
|
|
|
2024-02-29 15:50:50 +00:00
|
|
|
- Added `GLFW_UNLIMITED_MOUSE_BUTTONS` input mode that allows mouse buttons beyond
|
|
|
|
|
the limit of the mouse button tokens to be reported (#2423)
|
2024-05-10 15:15:12 +02:00
|
|
|
- Updated minimum CMake version to 3.16 (#2541)
|
2024-04-04 17:00:46 +02:00
|
|
|
- Removed support for building with original MinGW (#2540)
|
2024-04-04 16:40:27 +02:00
|
|
|
- [Win32] Removed support for Windows XP and Vista (#2505)
|
2024-04-07 19:39:52 +02:00
|
|
|
- [Cocoa] Added `QuartzCore` framework as link-time dependency
|
2024-04-07 19:26:01 +02:00
|
|
|
- [Cocoa] Removed support for OS X 10.10 Yosemite and earlier (#2506)
|
2024-03-08 15:22:36 +01:00
|
|
|
- [Wayland] Bugfix: The fractional scaling related objects were not destroyed
|
2024-03-25 21:00:08 +01:00
|
|
|
- [Wayland] Bugfix: `glfwInit` would segfault on compositor with no seat (#2517)
|
2024-04-08 18:50:08 +02:00
|
|
|
- [Wayland] Bugfix: A drag entering a non-GLFW surface could cause a segfault
|
2025-07-05 19:16:08 +02:00
|
|
|
- [Wayland] Bugfix: Ignore key repeat events when no window has keyboard focus (#2727)
|
2025-07-16 14:19:19 +02:00
|
|
|
- [Wayland] Bugfix: Reset key repeat timer when window destroyed (#2741,#2727)
|
2025-07-17 13:07:52 +02:00
|
|
|
- [Wayland] Bugfix: Memory would leak if reading a data offer failed midway
|
2025-08-10 18:27:44 +02:00
|
|
|
- [Wayland] Bugfix: Keyboard leave event handler now processes key repeats (#2736)
|
2025-07-18 15:28:36 +02:00
|
|
|
- [Wayland] Bugfix: Retrieved cursor position would be incorrect when hovering over
|
|
|
|
|
fallback decorations
|
2025-07-18 16:35:57 +02:00
|
|
|
- [Wayland] Bugfix: Fallback decorations would report scroll events
|
2024-05-31 01:42:53 +02:00
|
|
|
- [Wayland] Bugfix: Keyboard repeat events halted when any key is released (#2568)
|
2025-01-12 19:29:05 +01:00
|
|
|
- [X11] Bugfix: Running without a WM could trigger an assert (#2593,#2601,#2631)
|
2024-03-11 11:33:51 +01:00
|
|
|
- [Null] Added Vulkan 'window' surface creation via `VK_EXT_headless_surface`
|
2024-03-11 14:29:07 +01:00
|
|
|
- [Null] Added EGL context creation on Mesa via `EGL_MESA_platform_surfaceless`
|
2024-03-25 21:02:10 +01:00
|
|
|
- [EGL] Allowed native access on Wayland with `GLFW_CONTEXT_CREATION_API` set to
|
|
|
|
|
`GLFW_NATIVE_CONTEXT_API` (#2518)
|
2024-02-29 15:50:50 +00:00
|
|
|
|
2013-02-04 10:46:02 +01:00
|
|
|
|
|
|
|
|
## Contact
|
|
|
|
|
|
2021-06-09 22:43:27 +02:00
|
|
|
On [glfw.org](https://www.glfw.org/) you can find the latest version of GLFW, as
|
2016-08-02 15:58:58 +02:00
|
|
|
well as news, documentation and other information about the project.
|
2013-02-04 10:46:02 +01:00
|
|
|
|
|
|
|
|
If you have questions related to the use of GLFW, we have a
|
2024-01-25 16:30:56 +01:00
|
|
|
[forum](https://discourse.glfw.org/).
|
2013-02-04 10:46:02 +01:00
|
|
|
|
|
|
|
|
If you have a bug to report, a patch to submit or a feature you'd like to
|
2013-06-24 14:28:42 +02:00
|
|
|
request, please file it in the
|
|
|
|
|
[issue tracker](https://github.com/glfw/glfw/issues) on GitHub.
|
2013-02-04 10:46:02 +01:00
|
|
|
|
|
|
|
|
Finally, if you're interested in helping out with the development of GLFW or
|
2024-01-25 16:30:56 +01:00
|
|
|
porting it to your favorite platform, join us on the forum or GitHub.
|
2013-02-04 10:46:02 +01:00
|
|
|
|