mirror of
https://github.com/glfw/glfw.git
synced 2026-08-27 02:45:54 +02:00
Replace GLFWuint64 with uint64_t
C99 stdint.h is provided by VS 2010 and later. GLFW has not provided testing or binaries for VS 2008 for several releases. For earlier versions of VS there are third-party alternatives: https://msinttypes.googlecode.com/svn/trunk/stdint.h http://www.azillionmonkeys.com/qed/pstdint.h This change does not affect the ABI.
This commit is contained in:
@@ -571,7 +571,7 @@ You can also access the raw timer value, measured in 1 / frequency
|
||||
seconds, with @ref glfwGetTimerValue.
|
||||
|
||||
@code
|
||||
GLFWuint64 value = glfwGetTimerValue();
|
||||
uint64_t value = glfwGetTimerValue();
|
||||
@endcode
|
||||
|
||||
The frequency of the raw timer varies depending on what time sources are
|
||||
@@ -579,7 +579,7 @@ available on the machine. You can query its frequency, in Hz, with @ref
|
||||
glfwGetTimerFrequency.
|
||||
|
||||
@code
|
||||
GLFWuint64 freqency = glfwGetTimerFrequency();
|
||||
uint64_t freqency = glfwGetTimerFrequency();
|
||||
@endcode
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user