![]() | This article has multiple issues. Please helpimprove it or discuss these issues on thetalk page.(Learn how and when to remove these messages) (Learn how and when to remove this message)
|
Developer(s) | The GLFW Development Team |
---|---|
Stable release | |
Repository | |
Written in | C |
Operating system | Linux,macOS,Microsoft Windows,FreeBSD,NetBSD,OpenBSD |
Platform | Cross-platform |
Type | API |
License | zlib/libpng License[2] |
Website | www |
GLFW (Graphics Library Framework) is a lightweight utility library for use withOpenGL. It provides programmers with the ability to create and manage windows and OpenGL contexts, as well as handlejoystick,keyboard andmouse input.[3]
GLFW is a small C library that allows the creation and management of windows with OpenGL contexts, making it also possible to use multiple monitors and video modes. It provides access to input from the keyboard, mouse, and joysticks.[4] The API provides a thin, multi-platform abstraction layer, primarily for applications whose sole graphics output is through the OpenGL API. While GLFW is very useful when developing multi-platform OpenGL applications, single-platform developers can also benefit from avoiding having to deal with a platform-specific API.
GLFW is used in programs that require awindow, due to OpenGL not providing any mechanisms for creating the necessary contexts, managing windows, user input, timing, etc.[5] There are several other libraries available for aiding OpenGL development. The most common ones areFreeGLUT (an Open Source implementation of GLUT) and SDL. However, FreeGLUT is mostly concerned with providing a stable clone of GLUT, while SDL is too large for some people and has never had OpenGL as its main focus. GLFW is predicated on the assumption that there is room for a lightweight, modern library for managing OpenGL contexts, windows, and input.
GLFW is not a user-interface library, platform-specific library, image-loading library or a threading library. Additionally, it cannot render independently or playback sound.[6]
Although GLFW is written in C, bindings do exist to use the API with other programming languages includingAda,C#,Common Lisp,D,Delphi,Go,Harbour,Haskell,Java,Julia,Python,Rebol,Red,Ruby andRust, among others.[7]
GLFW version 3.2 has experimental support forWayland through compile-time flags.[8]