glfw/README.md

378 lines
15 KiB
Markdown
Raw Normal View History

# GLFW 3.0
## Introduction
GLFW is a free, Open Source, portable library for OpenGL and OpenGL ES
application development. It provides a simple, platform-independent API for
creating windows and contexts, reading input, handling events, etc.
Version 3.0 brings a new API with many new features such as multiple windows
2013-02-04 10:46:55 +00:00
and contexts, multi-monitor support, EGL and OpenGL ES support, clipboard text
support, an error description callback, gamma ramp control, layout-independent
keyboard input and UTF-8 for all strings.
2013-04-18 22:19:22 +00:00
GLFW is now hosted on [GitHub](https://github.com/glfw/glfw).
2013-04-07 11:26:06 +00:00
If you are new to GLFW, you may find the
[introductory tutorial](http://www.glfw.org/docs/3.0/quick.html) for GLFW
3 useful. If
you have used GLFW 2 in the past, there is a
[transition guide](http://www.glfw.org/docs/3.0/moving.html) for moving to the
GLFW 3 API.
## Compiling GLFW
To compile GLFW and the accompanying example programs, you will need the
[CMake](http://www.cmake.org/) build system.
2013-06-09 10:49:13 +00:00
2013-05-17 00:52:33 +00:00
### Dependencies
#### X11 dependencies
To compile GLFW for X11 and GLX, you need to have the X and OpenGL header
packages installed. For example, on Ubuntu and other distributions based on
Debian GNU/Linux, you need to install the `xorg-dev` and `libglu1-mesa-dev`
packages. Note that using header files from Mesa *will not* tie your binary to
the Mesa implementation of OpenGL.
2013-06-09 10:49:13 +00:00
### CMake options
There are a number of CMake build options for GLFW, although not all are
2013-02-04 11:33:04 +00:00
available on all supported platforms. Some of these are de facto standards
among CMake users and so have no `GLFW_` prefix.
2013-06-09 10:49:13 +00:00
#### Shared options
`BUILD_SHARED_LIBS` determines whether GLFW is built as a static
library or as a DLL / shared library / dynamic library.
`LIB_SUFFIX` affects where the GLFW shared /dynamic library is
installed. If it is empty, it is installed to `$PREFIX/lib`. If it is set to
`64`, it is installed to `$PREFIX/lib64`.
`GLFW_BUILD_EXAMPLES` determines whether the GLFW examples are built
along with the library.
`GLFW_BUILD_TESTS` determines whether the GLFW test programs are
built along with the library.
2013-06-09 10:49:13 +00:00
#### Mac OS X specific options
`GLFW_USE_CHDIR` determines whether `glfwInit` changes the current
directory of bundled applications to the `Contents/Resources` directory.
`GLFW_USE_MENUBAR` determines whether the first call to
`glfwCreateWindow` sets up a minimal menu bar.
`GLFW_BUILD_UNIVERSAL` determines whether to build Universal Binaries.
2013-06-09 10:49:13 +00:00
#### Windows specific options
`USE_MSVC_RUNTIME_LIBRARY_DLL` determines whether to use the DLL version of the
Visual C++ runtime library.
2013-06-09 10:49:13 +00:00
#### EGL specific options
2013-02-04 10:46:55 +00:00
`GLFW_USE_EGL` determines whether to use EGL instead of the platform-specific
context creation API. Note that EGL is not yet provided on all supported
platforms.
`GLFW_CLIENT_LIBRARY` determines which client API library to use. If set to
`opengl` the OpenGL library is used, if set to `glesv1` for the OpenGL ES 1.x
library is used, or if set to `glesv2` the OpenGL ES 2.0 library is used. The
selected library and its header files must be present on the system for this to
work.
## Installing GLFW
A rudimentary installation target is provided for all supported platforms via
CMake.
## Using GLFW
2013-06-12 14:06:45 +00:00
See the [GLFW 3.0 documentation](http://www.glfw.org/docs/3.0/).
## Changes for version 3.0
2013-06-09 10:49:13 +00:00
- Added `GLFWmonitor` and updated monitor-related functions to take a monitor
handle
2013-06-09 10:49:13 +00:00
- Added `glfwGetMonitors` and `glfwGetPrimaryMonitor` for enumerating available
monitors
2013-06-09 10:49:13 +00:00
- Added `glfwGetMonitorPos`, `glfwGetMonitorPhysicalSize` and
`glfwGetMonitorName` for retrieving monitor properties
2013-06-09 10:49:13 +00:00
- Added `glfwSetMonitorCallback` and `GLFWmonitorfun` for notification of
changes in the set of available monitors
2013-06-09 10:49:13 +00:00
- Added `GLFWwindow` and updated window-related functions and callbacks to take
a window handle
2013-06-09 10:49:13 +00:00
- Added `glfwSetWindowShouldClose` and `glfwWindowShouldClose` for setting and
retrieving the window close flag
2013-06-09 10:49:13 +00:00
- Added `glfwGetWindowPos` for retrieving the position of a window
- Added `glfwDefaultWindowHints` for resetting all window hints to their
default values
2013-06-09 10:49:13 +00:00
- Added `glfwMakeContextCurrent` for making the context of the specified window
current
2013-06-09 10:49:13 +00:00
- Added `glfwSetErrorCallback`, `GLFWerrorfun` and error type tokens for
receiving error notifications
2013-06-09 10:49:13 +00:00
- Added `glfwSetWindowUserPointer` and `glfwGetWindowUserPointer` for
per-window user pointers
2013-06-09 10:49:13 +00:00
- Added `glfwGetVersionString` for determining which code paths were enabled at
compile time
2013-06-09 10:49:13 +00:00
- Added `glfwGetWindowMonitor` for querying the monitor, if any, of the
specified window
2013-06-09 10:49:13 +00:00
- Added `glfwGetFramebufferSize` and `glfwSetFramebufferSizeCallback` for
receiving the current size, in pixels, of the framebuffer
2013-06-09 10:49:13 +00:00
- Added `glfwSetWindowPosCallback` and `GLFWwindowposfun` for receiving window
position events
2013-06-09 10:49:13 +00:00
- Added `glfwSetWindowFocusCallback` and `GLFWwindowfocusfun` for receiving
window focus events
2013-06-09 10:49:13 +00:00
- Added `glfwSetWindowIconifyCallback` and `GLFWwindowiconifyfun` for receiving
window iconification events
2013-06-09 10:49:13 +00:00
- Added `glfwGetClipboardString` and `glfwSetClipboardString` for interacting
with the system clipboard
2013-06-09 10:49:13 +00:00
- Added `glfwGetJoystickName` for retrieving the name of a joystick
- Added `glfwGetCurrentContext` for retrieving the window whose OpenGL context
is current
2013-06-09 10:49:13 +00:00
- Added `GLFW_SRGB_CAPABLE` for requesting sRGB capable framebuffers
- Added `GLFW_CLIENT_API` and its values `GLFW_OPENGL_API` and
`GLFW_OPENGL_ES_API` for selecting client API
2013-06-09 10:49:13 +00:00
- Added `GLFW_CONTEXT_ROBUSTNESS` and values `GLFW_NO_ROBUSTNESS`,
`GLFW_NO_RESET_NOTIFICATION` and `GLFW_LOSE_CONTEXT_ON_RESET` for
`GL_ARB_robustness` support
2013-06-09 10:49:13 +00:00
- Added `GLFW_OPENGL_REVISION` to make up for removal of `glfwGetGLVersion`
- Added `GLFW_INCLUDE_GLCOREARB` macro for including `GL/glcorearb.h` instead of
`GL/gl.h`
2013-06-09 10:49:13 +00:00
- Added `GLFW_INCLUDE_ES1` macro for telling the GLFW header to use `GLES/gl.h`
instead of `GL/gl.h`
2013-06-09 10:49:13 +00:00
- Added `GLFW_INCLUDE_ES2` macro for telling the GLFW header to use
`GLES2/gl2.h` instead of `GL/gl.h`
2013-06-09 10:49:13 +00:00
- Added `GLFW_INCLUDE_NONE` macro for telling the GLFW header to not include
2013-03-13 19:44:00 +00:00
any client API header
2013-06-09 10:49:13 +00:00
- Added `GLFW_VISIBLE` window hint and parameter for controlling and polling
window visibility
2013-06-09 10:49:13 +00:00
- Added `GLFW_REPEAT` key action for repeated keys
- Added scancode parameter to key callback
- Added `refreshRate` member to `GLFWvidmode` struct
- Added key modifier parameter to key and mouse button callbacks
- Added `windows` simple multi-window test program
- Added `sharing` simple OpenGL object sharing test program
- Added `modes` video mode enumeration and setting test program
- Added `threads` simple multi-threaded rendering test program
- Added `glfw3native.h` header and platform-specific functions for explicit
access to native display, window and context handles
2013-06-09 10:49:13 +00:00
- Added `glfwSetGamma`, `glfwSetGammaRamp` and `glfwGetGammaRamp` functions and
`GLFWgammaramp` type for monitor gamma ramp control
2013-06-09 10:49:13 +00:00
- Added window parameter to `glfwSwapBuffers`
- Changed buffer bit depth parameters of `glfwOpenWindow` to window hints
- Changed `glfwCreateWindow` and `glfwSetWindowTitle` to use UTF-8 encoded
strings
2013-06-09 10:49:13 +00:00
- Changed `glfwGetProcAddress` to return a (generic) function pointer
- Changed `glfwGetVideoModes` to return a dynamic, unlimited number of video
modes for the specified monitor
2013-06-09 10:49:13 +00:00
- Changed cursor position to double-precision floating-point
- Changed default cursor mode for fullscreen to normal
- Renamed header directory `GL` to `GLFW`
- Renamed `glfw.h` to `glfw3.h` to avoid conflicts with 2.x series
- Renamed `glfwOpenWindowHint` to `glfwWindowHint`
- Renamed `glfwGetWindowParam` to `glfwGetWindowAttrib`
- Renamed `GLFW_ACTIVE` to `GLFW_FOCUSED`
- Renamed `GLFW_FSAA_SAMPLES` to `GLFW_SAMPLES`
- Renamed `GLFW_WINDOW_NO_RESIZE` to `GLFW_RESIZABLE`
- Renamed `GLFW_BUILD_DLL` to `_GLFW_BUILD_DLL`
- Renamed `version` test to `glfwinfo`
- Renamed `GLFW_NO_GLU` to `GLFW_INCLUDE_GLU` and made it disabled by default
- Renamed `glfwGetJoystickPos` to `glfwGetJoystickAxes` to match
`glfwGetJoystickButtons`
2013-06-09 10:49:13 +00:00
- Renamed mouse position functions to cursor position equivalents
- Replaced `glfwOpenWindow` and `glfwCloseWindow` with `glfwCreateWindow` and
`glfwDestroyWindow`
2013-06-09 10:49:13 +00:00
- Replaced `glfwGetDesktopMode` width `glfwGetVideoMode`
- Replaced ad hoc build system with CMake
- Replaced layout-dependent key codes with single, platform-independent set
based on US layout
2013-06-09 10:49:13 +00:00
- Replaced mouse wheel interface with two-dimensional, floating point scrolling
interface
2013-06-09 10:49:13 +00:00
- Replaced `glfwEnable` and `glfwDisable` with `glfwGetInputMode` and
`glfwSetInputMode`
2013-06-09 10:49:13 +00:00
- Replaced `joystick` test with graphical version
- Replaced automatic closing of windows with the window close flag
- Removed the `GLFW_KEY_REPEAT` input option
- Removed event auto-polling and the `GLFW_AUTO_POLL_EVENTS` window enable
- Removed the Win32 port .def files
- Removed the entire threading API
- Removed the entire image loading API
- Removed deprecated Carbon port
- Removed registering `glfwTerminate` with `atexit`
- Removed `glfwSleep` function
- Removed `glfwGetNumberOfProcessors` function
- Removed `glfwGetGLVersion` function
- Removed `GLFW_OPENED` window parameter
- Removed `GLFW_WINDOW` and `GLFW_FULLSCREEN`
- Removed nonsensical key actions for Unicode character input
- Removed `GLFWCALL` and `GLFWAPIENTRY` macros for stdcall calling convention
- Removed `GLFW_ACCELERATED` window parameter
- Removed default framebuffer attributes from `glfwGetWindowParam`
- Bugfix: The default OpenGL version in the `glfwinfo` test was set to 1.1
- Bugfix: The OpenGL profile and forward-compatibility window parameters were
not saved after context creation
2013-06-09 10:49:13 +00:00
- Bugfix: The FSAA test did not check for the availability of
`GL_ARB_multisample`
2013-06-09 10:49:13 +00:00
- Bugfix: Cursor centering upon leaving captured cursor mode was reported
before the mode was changed to non-captured
2013-06-09 10:49:13 +00:00
- [Cocoa] Added support for OpenGL 3.2 core profile in 10.7 Lion and above
- [Cocoa] Added support for high-DPI (Retina) monitors
- [Cocoa] Added support for joysticks
- [Cocoa] Postponed menu creation to first window creation
- [Cocoa] Replaced `NSDate` time source with `mach_absolute_time`
- [Cocoa] Replaced all deprecated CoreGraphics calls with non-deprecated
counterparts
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: The `NSOpenGLPFAFullScreen` pixel format attribute caused
creation to fail on some machines
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: `glfwCreateWindow` did not properly enforce the
forward-compatible and context profile hints
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: The loop condition for saving video modes used the wrong
index variable
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: The OpenGL framework was not retrieved, making
2013-02-14 19:35:48 +00:00
`glfwGetProcAddress` crash
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: `glfwInit` changed the current directory for unbundled
executables
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: The `GLFW_WINDOW_NO_RESIZE` window parameter was always zero
- [Cocoa] Bugfix: The cursor position incorrectly rounded during conversion
- [Cocoa] Bugfix: Cursor positioning led to nonsensical results for fullscreen
windows
2013-06-09 10:49:13 +00:00
- [Cocoa] Bugfix: The GLFW window was flagged as restorable
- [X11] Added support for the `GLX_EXT_swap_control` and
`GLX_MESA_swap_control` extensions as alternatives to
`GLX_SGI_swap_control`
2013-06-09 10:49:13 +00:00
- [X11] Added the POSIX `CLOCK_MONOTONIC` time source as the preferred method
- [X11] Added dependency on libm, where present
- [X11] Added support for the `_NET_WM_NAME` and `_NET_WM_ICON_NAME` EWMH
window properties
2013-06-09 10:49:13 +00:00
- [X11] Made client-side RandR and Xf86VidMode extensions required
- [X11] Bugfix: Some window properties required by the ICCCM were not set
- [X11] Bugfix: Calling `glXCreateContextAttribsARB` with an unavailable OpenGL
version caused the application to terminate with a `BadMatch`
Xlib error
2013-06-09 10:49:13 +00:00
- [X11] Bugfix: A synchronization point necessary for jitter-free locked cursor
mode was incorrectly removed
2013-06-09 10:49:13 +00:00
- [X11] Bugfix: The window size hints were not updated when calling
`glfwSetWindowSize` on a non-resizable window
2013-06-09 10:49:13 +00:00
- [Win32] Added support for high-DPI monitors
- [Win32] Changed port to use Unicode mode only
- [Win32] Removed explicit support for versions of Windows older than Windows
XP
2013-06-09 10:49:13 +00:00
- [Win32] Bugfix: Window activation and iconification did not work as expected
- [Win32] Bugfix: Software rasterizer pixel formats were not discarded by the
2013-02-14 19:35:48 +00:00
`WGL_ARB_pixel_format` code path
2013-06-09 10:49:13 +00:00
- [Win32] Bugfix: The array for WGL context attributes was too small and could
overflow
2013-06-09 10:49:13 +00:00
- [Win32] Bugfix: Alt+F4 hot key was not translated into `WM_CLOSE`
- [Win32] Bugfix: The `GLFW_WINDOW_NO_RESIZE` window parameter was always zero
- [Win32] Bugfix: A test was missing for whether all available pixel formats
had been disqualified
## Contact
The official website for GLFW is [glfw.org](http://www.glfw.org/). There 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
[support forum](https://sourceforge.net/p/glfw/discussion/247562/), and the IRC
channel `#glfw` on [Freenode](http://freenode.net/).
If you have a bug to report, a patch to submit or a feature you'd like to
request, please file it in one of the
[issue trackers](https://sourceforge.net/p/glfw/_list/tickets) on SF.net.
Finally, if you're interested in helping out with the development of GLFW or
porting it to your favorite platform, we have a
[developer's mailing list](https://lists.stacken.kth.se/mailman/listinfo/glfw-dev),
or you could join us on `#glfw`.
## Acknowledgements
GLFW exists because people around the world donated their time and lent their
skills.
2013-06-09 10:49:13 +00:00
- Bobyshev Alexander
- artblanc
- Matt Arsenault
- Keith Bauer
- John Bartholomew
- Niklas Bergström
- blanco
- Lambert Clara
- Noel Cower
- Jarrod Davis
- Olivier Delannoy
- Paul R. Deppe
- Jonathan Dummer
- Ralph Eastwood
- Gerald Franz
- GeO4d
- Marcus Geelnard
- Stefan Gustavson
- Sylvain Hellegouarch
- heromyth
- Toni Jovanoski
- Osman Keskin
- Cameron King
- Peter Knut
- Robin Leffmann
- Glenn Lewis
- Shane Liesegang
- Дмитри Малышев
- Martins Mozeiko
- Tristam MacDonald
- Hans Mackowiak
- David Medlock
- Jonathan Mercier
- Marcel Metz
- Kenneth Miller
- Jeff Molofee
- Jon Morton
- Julian Møller
- Ozzy at Orkysquad
- Peoro
- Braden Pellett
- Arturo J. Pérez
- Jorge Rodriguez
- Ed Ropple
- Riku Salminen
- Sebastian Schuberth
- Matt Sealey
- SephiRok
- Steve Sexton
- Dmitri Shuralyov
- Daniel Skorupski
- Bradley Smith
- Julian Squires
- Johannes Stein
- Nathan Sweet
- TTK-Bandit
- Sergey Tikhomirov
- Samuli Tuomola
- Jari Vetoniemi
- Simon Voordouw
- Torsten Walluhn
- Jay Weisskopf
- Frank Wille
- yuriks
- Santi Zupancic
- Lasse Öörni
- All the unmentioned and anonymous contributors in the GLFW community, for bug
reports, patches, feedback, testing and encouragement