mirror of
https://github.com/glfw/glfw.git
synced 2024-11-13 14:03:52 +00:00
Formatting.
This commit is contained in:
parent
8bf5fc72d0
commit
84b2787f0d
@ -34,18 +34,14 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
////// GLFW platform API //////
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Create a monitor struct from the specified information
|
// Create a monitor struct from the specified information
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
#if defined (_GLFW_HAS_XRANDR)
|
#if defined (_GLFW_HAS_XRANDR)
|
||||||
_GLFWmonitor** _glfwCreateMonitor(_GLFWmonitor** current,
|
static _GLFWmonitor** createMonitor(_GLFWmonitor** current,
|
||||||
XRROutputInfo* outputInfo,
|
XRROutputInfo* outputInfo,
|
||||||
XRRCrtcInfo* crtcInfo)
|
XRRCrtcInfo* crtcInfo)
|
||||||
{
|
{
|
||||||
*current = malloc(sizeof(_GLFWmonitor));
|
*current = malloc(sizeof(_GLFWmonitor));
|
||||||
memset(*current, 0, sizeof(_GLFWmonitor));
|
memset(*current, 0, sizeof(_GLFWmonitor));
|
||||||
@ -64,6 +60,10 @@ _GLFWmonitor** _glfwCreateMonitor(_GLFWmonitor** current,
|
|||||||
#endif /*_GLFW_HAS_XRANDR*/
|
#endif /*_GLFW_HAS_XRANDR*/
|
||||||
|
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
////// GLFW platform API //////
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Destroy a monitor struct
|
// Destroy a monitor struct
|
||||||
//========================================================================
|
//========================================================================
|
||||||
@ -130,7 +130,7 @@ _GLFWmonitor* _glfwCreateMonitors(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
monitor = _glfwCreateMonitor(monitor, outputInfo, crtcInfo);
|
monitor = createMonitor(monitor, outputInfo, crtcInfo);
|
||||||
|
|
||||||
// Freeing of the outputInfo is done in _glfwDestroyMonitor
|
// Freeing of the outputInfo is done in _glfwDestroyMonitor
|
||||||
XRRFreeCrtcInfo(crtcInfo);
|
XRRFreeCrtcInfo(crtcInfo);
|
||||||
|
Loading…
Reference in New Issue
Block a user