|
| void | _glfwInputMonitor (_GLFWmonitor *monitor, int action, int placement) |
| |
| void | _glfwInputMonitorWindow (_GLFWmonitor *monitor, _GLFWwindow *window) |
| |
| _GLFWmonitor * | _glfwAllocMonitor (const char *name, int widthMM, int heightMM) |
| |
| void | _glfwFreeMonitor (_GLFWmonitor *monitor) |
| |
| void | _glfwAllocGammaArrays (GLFWgammaramp *ramp, unsigned int size) |
| |
| void | _glfwFreeGammaArrays (GLFWgammaramp *ramp) |
| |
| const GLFWvidmode * | _glfwChooseVideoMode (_GLFWmonitor *monitor, const GLFWvidmode *desired) |
| |
| int | _glfwCompareVideoModes (const GLFWvidmode *fm, const GLFWvidmode *sm) |
| |
| void | _glfwSplitBPP (int bpp, int *red, int *green, int *blue) |
| |
| GLFWAPI GLFWmonitor ** | glfwGetMonitors (int *count) |
| | Returns the currently connected monitors. More...
|
| |
| GLFWAPI GLFWmonitor * | glfwGetPrimaryMonitor (void) |
| | Returns the primary 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 void | glfwGetMonitorWorkarea (GLFWmonitor *handle, int *xpos, int *ypos, int *width, int *height) |
| | Retrieves the work area of the monitor. More...
|
| |
| GLFWAPI void | glfwGetMonitorPhysicalSize (GLFWmonitor *handle, int *widthMM, int *heightMM) |
| | Returns the physical size of the monitor. More...
|
| |
| GLFWAPI void | glfwGetMonitorContentScale (GLFWmonitor *handle, float *xscale, float *yscale) |
| | Retrieves the content scale for the specified monitor. More...
|
| |
| GLFWAPI const char * | glfwGetMonitorName (GLFWmonitor *handle) |
| | Returns the name of the specified monitor. More...
|
| |
| GLFWAPI void | glfwSetMonitorUserPointer (GLFWmonitor *handle, void *pointer) |
| | Sets the user pointer of the specified monitor. More...
|
| |
| GLFWAPI void * | glfwGetMonitorUserPointer (GLFWmonitor *handle) |
| | Returns the user pointer of the specified monitor. More...
|
| |
| GLFWAPI GLFWmonitorfun | glfwSetMonitorCallback (GLFWmonitorfun cbfun) |
| | Sets the monitor configuration callback. More...
|
| |
| GLFWAPI const GLFWvidmode * | glfwGetVideoModes (GLFWmonitor *handle, int *count) |
| | Returns the available video modes for the specified monitor. More...
|
| |
| GLFWAPI const GLFWvidmode * | glfwGetVideoMode (GLFWmonitor *handle) |
| | Returns the current mode of the specified monitor. More...
|
| |
| GLFWAPI void | glfwSetGamma (GLFWmonitor *handle, float gamma) |
| | Generates a gamma ramp and sets it for the specified monitor. More...
|
| |
| GLFWAPI const GLFWgammaramp * | glfwGetGammaRamp (GLFWmonitor *handle) |
| | Returns the current gamma ramp for the specified monitor. More...
|
| |
| GLFWAPI void | glfwSetGammaRamp (GLFWmonitor *handle, const GLFWgammaramp *ramp) |
| | Sets the current gamma ramp for the specified monitor. More...
|
| |