mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 10:05:10 +00:00
Add Doxygen aliases for custom paragraphs
This commit is contained in:
parent
5499fd307a
commit
951a9583fa
@ -195,7 +195,14 @@ TAB_SIZE = 8
|
|||||||
# will result in a user-defined paragraph with heading "Side Effects:".
|
# will result in a user-defined paragraph with heading "Side Effects:".
|
||||||
# You can put \n's in the value part of an alias to insert newlines.
|
# You can put \n's in the value part of an alias to insert newlines.
|
||||||
|
|
||||||
ALIASES =
|
ALIASES = "thread_safety=@par Thread safety\n" \
|
||||||
|
"pointer_lifetime=@par Pointer lifetime\n" \
|
||||||
|
"analysis=@par Analysis\n" \
|
||||||
|
"reentrancy=@par Reentrancy\n" \
|
||||||
|
"glfw3=@par\n__GLFW 3:__" \
|
||||||
|
"x11=__X11:__" \
|
||||||
|
"win32=__Windows:__" \
|
||||||
|
"osx=__OS X:__"
|
||||||
|
|
||||||
# This tag can be used to specify a number of word-keyword mappings (TCL only).
|
# This tag can be used to specify a number of word-keyword mappings (TCL only).
|
||||||
# A mapping has the form "name=value". For example adding
|
# A mapping has the form "name=value". For example adding
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -127,11 +127,10 @@ extern "C" {
|
|||||||
* of the specified monitor, or `NULL` if an [error](@ref error_handling)
|
* of the specified monitor, or `NULL` if an [error](@ref error_handling)
|
||||||
* occurred.
|
* occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.1.
|
||||||
* Added in GLFW 3.1.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -143,11 +142,10 @@ GLFWAPI const char* glfwGetWin32Adapter(GLFWmonitor* monitor);
|
|||||||
* `\\.\DISPLAY1\Monitor0`) of the specified monitor, or `NULL` if an
|
* `\\.\DISPLAY1\Monitor0`) of the specified monitor, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.1.
|
||||||
* Added in GLFW 3.1.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -158,11 +156,10 @@ GLFWAPI const char* glfwGetWin32Monitor(GLFWmonitor* monitor);
|
|||||||
* @return The `HWND` of the specified window, or `NULL` if an
|
* @return The `HWND` of the specified window, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -175,11 +172,10 @@ GLFWAPI HWND glfwGetWin32Window(GLFWwindow* window);
|
|||||||
* @return The `HGLRC` of the specified window, or `NULL` if an
|
* @return The `HGLRC` of the specified window, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -192,11 +188,10 @@ GLFWAPI HGLRC glfwGetWGLContext(GLFWwindow* window);
|
|||||||
* @return The `CGDirectDisplayID` of the specified monitor, or
|
* @return The `CGDirectDisplayID` of the specified monitor, or
|
||||||
* `kCGNullDirectDisplay` if an [error](@ref error_handling) occurred.
|
* `kCGNullDirectDisplay` if an [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.1.
|
||||||
* Added in GLFW 3.1.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -207,11 +202,10 @@ GLFWAPI CGDirectDisplayID glfwGetCocoaMonitor(GLFWmonitor* monitor);
|
|||||||
* @return The `NSWindow` of the specified window, or `nil` if an
|
* @return The `NSWindow` of the specified window, or `nil` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -224,11 +218,10 @@ GLFWAPI id glfwGetCocoaWindow(GLFWwindow* window);
|
|||||||
* @return The `NSOpenGLContext` of the specified window, or `nil` if an
|
* @return The `NSOpenGLContext` of the specified window, or `nil` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -241,11 +234,10 @@ GLFWAPI id glfwGetNSGLContext(GLFWwindow* window);
|
|||||||
* @return The `Display` used by GLFW, or `NULL` if an
|
* @return The `Display` used by GLFW, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -256,11 +248,10 @@ GLFWAPI Display* glfwGetX11Display(void);
|
|||||||
* @return The `RRCrtc` of the specified monitor, or `None` if an
|
* @return The `RRCrtc` of the specified monitor, or `None` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.1.
|
||||||
* Added in GLFW 3.1.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -271,11 +262,10 @@ GLFWAPI RRCrtc glfwGetX11Adapter(GLFWmonitor* monitor);
|
|||||||
* @return The `RROutput` of the specified monitor, or `None` if an
|
* @return The `RROutput` of the specified monitor, or `None` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.1.
|
||||||
* Added in GLFW 3.1.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -286,11 +276,10 @@ GLFWAPI RROutput glfwGetX11Monitor(GLFWmonitor* monitor);
|
|||||||
* @return The `Window` of the specified window, or `None` if an
|
* @return The `Window` of the specified window, or `None` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -303,11 +292,10 @@ GLFWAPI Window glfwGetX11Window(GLFWwindow* window);
|
|||||||
* @return The `GLXContext` of the specified window, or `NULL` if an
|
* @return The `GLXContext` of the specified window, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -318,11 +306,10 @@ GLFWAPI GLXContext glfwGetGLXContext(GLFWwindow* window);
|
|||||||
* @return The `GLXWindow` of the specified window, or `None` if an
|
* @return The `GLXWindow` of the specified window, or `None` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -335,11 +322,10 @@ GLFWAPI GLXWindow glfwGetGLXWindow(GLFWwindow* window);
|
|||||||
* @return The `struct wl_display*` used by GLFW, or `NULL` if an
|
* @return The `struct wl_display*` used by GLFW, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -350,11 +336,10 @@ GLFWAPI struct wl_display* glfwGetWaylandDisplay(void);
|
|||||||
* @return The `struct wl_output*` of the specified monitor, or `NULL` if an
|
* @return The `struct wl_output*` of the specified monitor, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -365,11 +350,10 @@ GLFWAPI struct wl_output* glfwGetWaylandMonitor(GLFWmonitor* monitor);
|
|||||||
* @return The main `struct wl_surface*` of the specified window, or `NULL` if
|
* @return The main `struct wl_surface*` of the specified window, or `NULL` if
|
||||||
* an [error](@ref error_handling) occurred.
|
* an [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -382,11 +366,10 @@ GLFWAPI struct wl_surface* glfwGetWaylandWindow(GLFWwindow* window);
|
|||||||
* @return The `MirConnection*` used by GLFW, or `NULL` if an
|
* @return The `MirConnection*` used by GLFW, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -397,11 +380,10 @@ GLFWAPI MirConnection* glfwGetMirDisplay(void);
|
|||||||
* @return The Mir output ID of the specified monitor, or zero if an
|
* @return The Mir output ID of the specified monitor, or zero if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -412,11 +394,10 @@ GLFWAPI int glfwGetMirMonitor(GLFWmonitor* monitor);
|
|||||||
* @return The `MirSurface*` of the specified window, or `NULL` if an
|
* @return The `MirSurface*` of the specified window, or `NULL` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.2.
|
||||||
* Added in GLFW 3.2.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -429,11 +410,10 @@ GLFWAPI MirSurface* glfwGetMirWindow(GLFWwindow* window);
|
|||||||
* @return The `EGLDisplay` used by GLFW, or `EGL_NO_DISPLAY` if an
|
* @return The `EGLDisplay` used by GLFW, or `EGL_NO_DISPLAY` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -444,11 +424,10 @@ GLFWAPI EGLDisplay glfwGetEGLDisplay(void);
|
|||||||
* @return The `EGLContext` of the specified window, or `EGL_NO_CONTEXT` if an
|
* @return The `EGLContext` of the specified window, or `EGL_NO_CONTEXT` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
@ -459,11 +438,10 @@ GLFWAPI EGLContext glfwGetEGLContext(GLFWwindow* window);
|
|||||||
* @return The `EGLSurface` of the specified window, or `EGL_NO_SURFACE` if an
|
* @return The `EGLSurface` of the specified window, or `EGL_NO_SURFACE` if an
|
||||||
* [error](@ref error_handling) occurred.
|
* [error](@ref error_handling) occurred.
|
||||||
*
|
*
|
||||||
* @par Thread Safety
|
* @thread_safety This function may be called from any thread. Access is not
|
||||||
* This function may be called from any thread. Access is not synchronized.
|
* synchronized.
|
||||||
*
|
*
|
||||||
* @par History
|
* @since Added in GLFW 3.0.
|
||||||
* Added in GLFW 3.0.
|
|
||||||
*
|
*
|
||||||
* @ingroup native
|
* @ingroup native
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user