Documented known bugs.

This commit is contained in:
Camilla Berglund 2013-02-20 19:44:52 +01:00
parent 941a671bfa
commit 8954af61d3

View File

@ -904,6 +904,9 @@ GLFWAPI void glfwSetGamma(GLFWmonitor* monitor, float gamma);
* @param[in] monitor The monitor to query. * @param[in] monitor The monitor to query.
* @param[out] ramp Where to store the gamma ramp. * @param[out] ramp Where to store the gamma ramp.
* @ingroup gamma * @ingroup gamma
*
* @bug This function does not yet support monitors whose original gamma ramp
* has more or less than 256 entries.
*/ */
GLFWAPI void glfwGetGammaRamp(GLFWmonitor* monitor, GLFWgammaramp* ramp); GLFWAPI void glfwGetGammaRamp(GLFWmonitor* monitor, GLFWgammaramp* ramp);
@ -911,6 +914,9 @@ GLFWAPI void glfwGetGammaRamp(GLFWmonitor* monitor, GLFWgammaramp* ramp);
* @param[in] monitor The monitor whose gamma ramp to set. * @param[in] monitor The monitor whose gamma ramp to set.
* @param[in] ramp The gamma ramp to use. * @param[in] ramp The gamma ramp to use.
* @ingroup gamma * @ingroup gamma
*
* @bug This function does not yet support monitors whose original gamma ramp
* has more or less than 256 entries.
*/ */
GLFWAPI void glfwSetGammaRamp(GLFWmonitor* monitor, const GLFWgammaramp* ramp); GLFWAPI void glfwSetGammaRamp(GLFWmonitor* monitor, const GLFWgammaramp* ramp);
@ -1207,6 +1213,9 @@ GLFWAPI void glfwSetWindowSize(GLFWwindow* window, int width, int height);
* *
* @note This function may only be called from the main thread. * @note This function may only be called from the main thread.
* *
* @bug <strong>Mac OS X:</strong> This function is not yet implemented for
* fullscreen windows.
*
* @sa glfwRestoreWindow * @sa glfwRestoreWindow
*/ */
GLFWAPI void glfwIconifyWindow(GLFWwindow* window); GLFWAPI void glfwIconifyWindow(GLFWwindow* window);
@ -1219,6 +1228,9 @@ GLFWAPI void glfwIconifyWindow(GLFWwindow* window);
* *
* @note This function may only be called from the main thread. * @note This function may only be called from the main thread.
* *
* @bug <strong>Mac OS X:</strong> This function is not yet implemented for
* fullscreen windows.
*
* @sa glfwIconifyWindow * @sa glfwIconifyWindow
*/ */
GLFWAPI void glfwRestoreWindow(GLFWwindow* window); GLFWAPI void glfwRestoreWindow(GLFWwindow* window);
@ -1434,6 +1446,12 @@ GLFWAPI int glfwGetInputMode(GLFWwindow* window, int mode);
* @param[in] value The new value of the specified input mode. * @param[in] value The new value of the specified input mode.
* @ingroup input * @ingroup input
* *
* @bug <strong>Windows:</strong> The @ref GLFW_CURSOR_HIDDEN value of @ref
* GLFW_CURSOR_MODE is not yet implemented.
*
* @bug <strong>Mac OS X:</strong> The @ref GLFW_CURSOR_HIDDEN value of @ref
* GLFW_CURSOR_MODE is not yet implemented.
*
* @sa glfwGetInputMode * @sa glfwGetInputMode
*/ */
GLFWAPI void glfwSetInputMode(GLFWwindow* window, int mode, int value); GLFWAPI void glfwSetInputMode(GLFWwindow* window, int mode, int value);