mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Formatting pass (no code changes).
This commit is contained in:
parent
06cc561c91
commit
9a7166926c
@ -44,7 +44,7 @@ extern "C" {
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#define NULL 0
|
#define NULL 0
|
||||||
#else
|
#else
|
||||||
#define NULL ((void *)0)
|
#define NULL ((void*) 0)
|
||||||
#endif
|
#endif
|
||||||
#endif /* NULL */
|
#endif /* NULL */
|
||||||
|
|
||||||
@ -379,63 +379,63 @@ typedef void (* GLFWcharfun)(int,int);
|
|||||||
*************************************************************************/
|
*************************************************************************/
|
||||||
|
|
||||||
/* GLFW initialization, termination and version querying */
|
/* GLFW initialization, termination and version querying */
|
||||||
GLFWAPI int glfwInit( void );
|
GLFWAPI int glfwInit(void);
|
||||||
GLFWAPI void glfwTerminate( void );
|
GLFWAPI void glfwTerminate(void);
|
||||||
GLFWAPI void glfwGetVersion( int *major, int *minor, int *rev );
|
GLFWAPI void glfwGetVersion(int* major, int* minor, int* rev);
|
||||||
|
|
||||||
/* Window handling */
|
/* Window handling */
|
||||||
GLFWAPI int glfwOpenWindow( int width, int height, int redbits, int greenbits, int bluebits, int alphabits, int depthbits, int stencilbits, int mode );
|
GLFWAPI int glfwOpenWindow(int width, int height, int redbits, int greenbits, int bluebits, int alphabits, int depthbits, int stencilbits, int mode);
|
||||||
GLFWAPI void glfwOpenWindowHint( int target, int hint );
|
GLFWAPI void glfwOpenWindowHint(int target, int hint);
|
||||||
GLFWAPI void glfwCloseWindow( void );
|
GLFWAPI void glfwCloseWindow(void);
|
||||||
GLFWAPI void glfwSetWindowTitle( const char *title );
|
GLFWAPI void glfwSetWindowTitle(const char* title);
|
||||||
GLFWAPI void glfwGetWindowSize( int *width, int *height );
|
GLFWAPI void glfwGetWindowSize(int* width, int* height);
|
||||||
GLFWAPI void glfwSetWindowSize( int width, int height );
|
GLFWAPI void glfwSetWindowSize(int width, int height);
|
||||||
GLFWAPI void glfwSetWindowPos( int x, int y );
|
GLFWAPI void glfwSetWindowPos(int x, int y);
|
||||||
GLFWAPI void glfwIconifyWindow( void );
|
GLFWAPI void glfwIconifyWindow(void);
|
||||||
GLFWAPI void glfwRestoreWindow( void );
|
GLFWAPI void glfwRestoreWindow(void);
|
||||||
GLFWAPI void glfwSwapBuffers( void );
|
GLFWAPI void glfwSwapBuffers(void);
|
||||||
GLFWAPI void glfwSwapInterval( int interval );
|
GLFWAPI void glfwSwapInterval(int interval);
|
||||||
GLFWAPI int glfwGetWindowParam( int param );
|
GLFWAPI int glfwGetWindowParam(int param);
|
||||||
GLFWAPI void glfwSetWindowSizeCallback( GLFWwindowsizefun cbfun );
|
GLFWAPI void glfwSetWindowSizeCallback(GLFWwindowsizefun cbfun);
|
||||||
GLFWAPI void glfwSetWindowCloseCallback( GLFWwindowclosefun cbfun );
|
GLFWAPI void glfwSetWindowCloseCallback(GLFWwindowclosefun cbfun);
|
||||||
GLFWAPI void glfwSetWindowRefreshCallback( GLFWwindowrefreshfun cbfun );
|
GLFWAPI void glfwSetWindowRefreshCallback(GLFWwindowrefreshfun cbfun);
|
||||||
|
|
||||||
/* Video mode functions */
|
/* Video mode functions */
|
||||||
GLFWAPI int glfwGetVideoModes( GLFWvidmode *list, int maxcount );
|
GLFWAPI int glfwGetVideoModes(GLFWvidmode* list, int maxcount);
|
||||||
GLFWAPI void glfwGetDesktopMode( GLFWvidmode *mode );
|
GLFWAPI void glfwGetDesktopMode(GLFWvidmode* mode);
|
||||||
|
|
||||||
/* Input handling */
|
/* Input handling */
|
||||||
GLFWAPI void glfwPollEvents( void );
|
GLFWAPI void glfwPollEvents(void);
|
||||||
GLFWAPI void glfwWaitEvents( void );
|
GLFWAPI void glfwWaitEvents(void);
|
||||||
GLFWAPI int glfwGetKey( int key );
|
GLFWAPI int glfwGetKey(int key);
|
||||||
GLFWAPI int glfwGetMouseButton( int button );
|
GLFWAPI int glfwGetMouseButton(int button);
|
||||||
GLFWAPI void glfwGetMousePos( int *xpos, int *ypos );
|
GLFWAPI void glfwGetMousePos(int* xpos, int* ypos);
|
||||||
GLFWAPI void glfwSetMousePos( int xpos, int ypos );
|
GLFWAPI void glfwSetMousePos(int xpos, int ypos);
|
||||||
GLFWAPI int glfwGetMouseWheel( void );
|
GLFWAPI int glfwGetMouseWheel(void);
|
||||||
GLFWAPI void glfwSetMouseWheel( int pos );
|
GLFWAPI void glfwSetMouseWheel(int pos);
|
||||||
GLFWAPI void glfwSetKeyCallback( GLFWkeyfun cbfun );
|
GLFWAPI void glfwSetKeyCallback(GLFWkeyfun cbfun);
|
||||||
GLFWAPI void glfwSetCharCallback( GLFWcharfun cbfun );
|
GLFWAPI void glfwSetCharCallback(GLFWcharfun cbfun);
|
||||||
GLFWAPI void glfwSetMouseButtonCallback( GLFWmousebuttonfun cbfun );
|
GLFWAPI void glfwSetMouseButtonCallback(GLFWmousebuttonfun cbfun);
|
||||||
GLFWAPI void glfwSetMousePosCallback( GLFWmouseposfun cbfun );
|
GLFWAPI void glfwSetMousePosCallback(GLFWmouseposfun cbfun);
|
||||||
GLFWAPI void glfwSetMouseWheelCallback( GLFWmousewheelfun cbfun );
|
GLFWAPI void glfwSetMouseWheelCallback(GLFWmousewheelfun cbfun);
|
||||||
|
|
||||||
/* Joystick input */
|
/* Joystick input */
|
||||||
GLFWAPI int glfwGetJoystickParam( int joy, int param );
|
GLFWAPI int glfwGetJoystickParam(int joy, int param);
|
||||||
GLFWAPI int glfwGetJoystickPos( int joy, float *pos, int numaxes );
|
GLFWAPI int glfwGetJoystickPos(int joy, float* pos, int numaxes);
|
||||||
GLFWAPI int glfwGetJoystickButtons( int joy, unsigned char *buttons, int numbuttons );
|
GLFWAPI int glfwGetJoystickButtons(int joy, unsigned char* buttons, int numbuttons);
|
||||||
|
|
||||||
/* Time */
|
/* Time */
|
||||||
GLFWAPI double glfwGetTime( void );
|
GLFWAPI double glfwGetTime(void);
|
||||||
GLFWAPI void glfwSetTime( double time );
|
GLFWAPI void glfwSetTime(double time);
|
||||||
|
|
||||||
/* Extension support */
|
/* Extension support */
|
||||||
GLFWAPI int glfwExtensionSupported( const char *extension );
|
GLFWAPI int glfwExtensionSupported(const char* extension);
|
||||||
GLFWAPI void* glfwGetProcAddress( const char *procname );
|
GLFWAPI void* glfwGetProcAddress(const char* procname);
|
||||||
GLFWAPI void glfwGetGLVersion( int *major, int *minor, int *rev );
|
GLFWAPI void glfwGetGLVersion(int* major, int* minor, int* rev);
|
||||||
|
|
||||||
/* Enable/disable functions */
|
/* Enable/disable functions */
|
||||||
GLFWAPI void glfwEnable( int token );
|
GLFWAPI void glfwEnable(int token);
|
||||||
GLFWAPI void glfwDisable( int token );
|
GLFWAPI void glfwDisable(int token);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
Reference in New Issue
Block a user