|
| void | _glfwAllocGammaArrays (GLFWgammaramp *ramp, unsigned int size) |
| |
| _GLFWmonitor * | _glfwAllocMonitor (const char *name, int widthMM, int heightMM) |
| | Allocates and returns a monitor object with the specified name and dimensions. More...
|
| |
| const GLFWvidmode * | _glfwChooseVideoMode (_GLFWmonitor *monitor, const GLFWvidmode *desired) |
| |
| int | _glfwCompareVideoModes (const GLFWvidmode *first, const GLFWvidmode *second) |
| | Performs lexical comparison between two GLFWvidmode structures. More...
|
| |
| void | _glfwFreeGammaArrays (GLFWgammaramp *ramp) |
| |
| void | _glfwFreeMonitor (_GLFWmonitor *monitor) |
| | Frees a monitor object and any data associated with it. More...
|
| |
| void | _glfwFreeMonitors (_GLFWmonitor **monitors, int count) |
| |
| void | _glfwInputMonitorChange (void) |
| |
| void | _glfwSplitBPP (int bpp, int *red, int *green, int *blue) |
| | Splits a color depth into red, green and blue bit depths. More...
|
| |
| static int | compareVideoModes (const void *firstPtr, const void *secondPtr) |
| |
| GLFWAPI const GLFWgammaramp * | glfwGetGammaRamp (GLFWmonitor *handle) |
| | Returns the current gamma ramp for the specified monitor. More...
|
| |
| GLFWAPI const char * | glfwGetMonitorName (GLFWmonitor *handle) |
| | Returns the name of the specified monitor. More...
|
| |
| GLFWAPI void | glfwGetMonitorPhysicalSize (GLFWmonitor *handle, int *widthMM, int *heightMM) |
| | Returns the physical size of the monitor. More...
|
| |
| GLFWAPI void | glfwGetMonitorPos (GLFWmonitor *handle, int *xpos, int *ypos) |
| | Returns the position of the monitor's viewport on the virtual screen. More...
|
| |
| GLFWAPI GLFWmonitor ** | glfwGetMonitors (int *count) |
| | Returns the currently connected monitors. More...
|
| |
| GLFWAPI GLFWmonitor * | glfwGetPrimaryMonitor (void) |
| | Returns the primary monitor. More...
|
| |
| GLFWAPI const GLFWvidmode * | glfwGetVideoMode (GLFWmonitor *handle) |
| | Returns the current mode of the specified monitor. More...
|
| |
| GLFWAPI const GLFWvidmode * | glfwGetVideoModes (GLFWmonitor *handle, int *count) |
| | Returns the available video modes for the specified monitor. More...
|
| |
| GLFWAPI void | glfwSetGamma (GLFWmonitor *handle, float gamma) |
| | Generates a gamma ramp and sets it for the specified monitor. More...
|
| |
| GLFWAPI void | glfwSetGammaRamp (GLFWmonitor *handle, const GLFWgammaramp *ramp) |
| | Sets the current gamma ramp for the specified monitor. More...
|
| |
| GLFWAPI GLFWmonitorfun | glfwSetMonitorCallback (GLFWmonitorfun cbfun) |
| | Sets the monitor configuration callback. More...
|
| |
| static int | refreshVideoModes (_GLFWmonitor *monitor) |
| |