Documentation work.
This commit is contained in:
parent
ce8f97c23c
commit
ce196232a7
@ -691,8 +691,8 @@ void window_refresh_callback(GLFWwindow* window)
|
|||||||
@endcode
|
@endcode
|
||||||
|
|
||||||
@note On compositing window systems such as Aero, Compiz or Aqua, where the
|
@note On compositing window systems such as Aero, Compiz or Aqua, where the
|
||||||
window contents are saved off-screen, this callback may be called only very
|
window contents are saved off-screen, this callback might only be called when
|
||||||
infrequently or never at all.
|
the window or framebuffer is resized.
|
||||||
|
|
||||||
|
|
||||||
@subsection window_attribs Attributes
|
@subsection window_attribs Attributes
|
||||||
@ -713,27 +713,29 @@ if (glfwGetWindowAttrib(window, GLFW_FOCUSED))
|
|||||||
|
|
||||||
@subsubsection window_attribs_window Window related attributes
|
@subsubsection window_attribs_window Window related attributes
|
||||||
|
|
||||||
`GLFW_FOCUSED` indicates whether the specified window has input focus.
|
`GLFW_FOCUSED` indicates whether the specified window has input focus. Initial
|
||||||
|
focus is controlled by the [window hint](@ref window_hints_wnd) with the same
|
||||||
|
name.
|
||||||
|
|
||||||
`GLFW_ICONIFIED` indicates whether the specified window is iconified, whether by
|
`GLFW_ICONIFIED` indicates whether the specified window is iconified, whether by
|
||||||
the user or with @ref glfwIconifyWindow.
|
the user or with @ref glfwIconifyWindow.
|
||||||
|
|
||||||
`GLFW_VISIBLE` indicates whether the specified window is visible. Window
|
`GLFW_VISIBLE` indicates whether the specified window is visible. Window
|
||||||
visibility can be controlled with @ref glfwShowWindow and @ref glfwHideWindow
|
visibility can be controlled with @ref glfwShowWindow and @ref glfwHideWindow
|
||||||
and initial visibility is controlled by the [window hint](@ref window_hints)
|
and initial visibility is controlled by the [window hint](@ref window_hints_wnd)
|
||||||
with the same name.
|
with the same name.
|
||||||
|
|
||||||
`GLFW_RESIZABLE` indicates whether the specified window is resizable _by the
|
`GLFW_RESIZABLE` indicates whether the specified window is resizable _by the
|
||||||
user_. This is controlled by the [window hint](@ref window_hints) with the same
|
user_. This is set on creation with the [window hint](@ref window_hints_wnd)
|
||||||
name.
|
with the same name.
|
||||||
|
|
||||||
`GLFW_DECORATED` indicates whether the specified window has decorations such as
|
`GLFW_DECORATED` indicates whether the specified window has decorations such as
|
||||||
a border, a close widget, etc. This is controlled by the
|
a border, a close widget, etc. This is set on creation with the
|
||||||
[window hint](@ref window_hints) with the same name.
|
[window hint](@ref window_hints_wnd) with the same name.
|
||||||
|
|
||||||
`GLFW_FLOATING` indicates whether the specified window is floating, also called
|
`GLFW_FLOATING` indicates whether the specified window is floating, also called
|
||||||
topmost or always-on-top. This is controlled by the
|
topmost or always-on-top. This is controlled by the
|
||||||
[window hint](@ref window_hints) with the same name.
|
[window hint](@ref window_hints_wnd) with the same name.
|
||||||
|
|
||||||
|
|
||||||
@subsubsection window_attribs_context Context related attributes
|
@subsubsection window_attribs_context Context related attributes
|
||||||
|
Loading…
Reference in New Issue
Block a user