From 337c77a39b2f9148106e573d0705c44f6616f9f6 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 6 Mar 2016 14:11:14 +0100 Subject: [PATCH] Documentation work --- docs/input.dox | 4 ++-- include/GLFW/glfw3.h | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/input.dox b/docs/input.dox index 2be3d023..b0fc9f29 100644 --- a/docs/input.dox +++ b/docs/input.dox @@ -554,8 +554,8 @@ glfwSetTime(4.0); This sets the timer to the specified time, in seconds. -You can also access the raw timer value, in 1 / frequency seconds, -with @ref glfwGetTimerValue. +You can also access the raw timer value, measured in 1 / frequency +seconds, with @ref glfwGetTimerValue. @code GLFWuint64 value = glfwGetTimerValue(); diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 5e653423..7199da8c 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -3573,8 +3573,9 @@ GLFWAPI void glfwSetTime(double time); /*! @brief Returns the current value of the raw timer. * - * This function returns the current value of the raw timer. To get its - * frequency, call @ref glfwGetTimerFrequency. + * This function returns the current value of the raw timer, measured in + * 1 / frequency seconds. To get the frequency, call @ref + * glfwGetTimerFrequency. * * @return The value of the timer, or zero if an * [error](@ref error_handling) occurred.