#c #glfw #windowing #input #opengl #opengles #vulkan #cross-platform

Camilla Löwy ac10768495 Wayland: Fix memory leaks in data offer reading 1 week geleden
.github 8b574030a8 Cocoa: Remove support for OS X 10.10 Yosemite 1 jaar geleden
CMake a576a56a8d Remove unused CMake find module for OSMesa 8 maanden geleden
deps d1b87143bc Win32: Remove support for original MinGW 2 weken geleden
docs d11cb3779b Win32: Remove support for Windows XP and Vista 2 weken geleden
examples d9646631d6 Removed unused header in sharing example 1 jaar geleden
include 8b574030a8 Cocoa: Remove support for OS X 10.10 Yosemite 1 jaar geleden
src ac10768495 Wayland: Fix memory leaks in data offer reading 1 week geleden
tests bf945f1213 Unlimited mouse button input mode 1 jaar geleden
.appveyor.yml d1b87143bc Win32: Remove support for original MinGW 2 weken geleden
.editorconfig d1b87143bc Win32: Remove support for original MinGW 2 weken geleden
.gitattributes b702577cd2 Exclude CI and Git dotfiles from Git export 6 jaren geleden
.gitignore d24ee9953f Start 3.5 1 jaar geleden
.mailmap 359758bb53 Add initial .mailmap file 5 jaren geleden
CMakeLists.txt b850107a32 Update minimum CMake version to 3.16 8 maanden geleden
CONTRIBUTORS.md 506c11ba43 Wayland: Ignore key repeat events when no window has keyboard focus (#2732) 3 weken geleden
LICENSE.md f764836e58 Fix license copyright year and formatting 6 jaren geleden
README.md ac10768495 Wayland: Fix memory leaks in data offer reading 1 week geleden

README.md

GLFW

Build status Build status

Introduction

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.

GLFW natively supports Windows, macOS and Linux and other Unix-like systems. On Linux both Wayland and X11 are supported.

GLFW is licensed under the zlib/libpng license.

You can download the latest stable release as source or Windows binaries. Each release starting with 3.0 also has a corresponding annotated tag with source and binary archives.

The documentation is available online and is included in all source and binary archives. See the release notes for new features, caveats and deprecations in the latest release. For more details see the version history.

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 until they are stable enough to merge.

If you are new to GLFW, you may find the tutorial for GLFW 3 useful. If you have used GLFW 2 in the past, there is a transition guide for moving to the GLFW 3 API.

GLFW exists because of the contributions of many people around the world, whether by reporting bugs, providing community support, adding features, reviewing or testing code, debugging, proofreading docs, suggesting features or fixing bugs.

Compiling GLFW

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.

GLFW supports compilation on Windows with Visual C++ (2013 and later) and MinGW-w64, on macOS with Clang and on Linux and other Unix-like systems with GCC and Clang. It will likely compile in other environments as well, but this is not regularly tested.

There are pre-compiled binaries available for all supported compilers on Windows and macOS.

See the compilation guide for more information about how to compile GLFW yourself.

Using GLFW

See the documentation for tutorials, guides and the API reference.

Contributing to GLFW

See the contribution guide for more information.

System requirements

GLFW supports Windows 7 and later and macOS 10.11 and later. Linux and other 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.

See the compatibility guide in the documentation for more information.

Dependencies

GLFW itself needs only CMake 3.16 or later and the headers and libraries for your OS and window system.

The examples and test programs depend on a number of tiny libraries. These are located in the deps/ directory.

The documentation is generated with Doxygen if CMake can find that tool.

Reporting bugs

Bugs are reported to our issue tracker. Please check the contribution guide for information on what to include when reporting a bug.

Changelog since 3.4

  • Added GLFW_UNLIMITED_MOUSE_BUTTONS input mode that allows mouse buttons beyond the limit of the mouse button tokens to be reported (#2423)
  • Updated minimum CMake version to 3.16 (#2541)
  • Removed support for building with original MinGW (#2540)
  • [Win32] Removed support for Windows XP and Vista (#2505)
  • [Cocoa] Added QuartzCore framework as link-time dependency
  • [Cocoa] Removed support for OS X 10.10 Yosemite and earlier (#2506)
  • [Wayland] Bugfix: The fractional scaling related objects were not destroyed
  • [Wayland] Bugfix: glfwInit would segfault on compositor with no seat (#2517)
  • [Wayland] Bugfix: A drag entering a non-GLFW surface could cause a segfault
  • [Wayland] Bugfix: Ignore key repeat events when no window has keyboard focus (#2727)
  • [Wayland] Bugfix: Reset key repeat timer when window destroyed (#2741,#2727)
  • [Wayland] Bugfix: Memory would leak if reading a data offer failed midway
  • [X11] Bugfix: Running without a WM could trigger an assert (#2593,#2601,#2631)
  • [Null] Added Vulkan 'window' surface creation via VK_EXT_headless_surface
  • [Null] Added EGL context creation on Mesa via EGL_MESA_platform_surfaceless
  • [EGL] Allowed native access on Wayland with GLFW_CONTEXT_CREATION_API set to GLFW_NATIVE_CONTEXT_API (#2518)

Contact

On glfw.org you can find the latest version of GLFW, as well as news, documentation and other information about the project.

If you have questions related to the use of GLFW, we have a forum.

If you have a bug to report, a patch to submit or a feature you'd like to request, please file it in the issue tracker on GitHub.

Finally, if you're interested in helping out with the development of GLFW or porting it to your favorite platform, join us on the forum or GitHub.