From 27474060e1287a67c45cd790d29b9095b35b2bdf Mon Sep 17 00:00:00 2001 From: ShizZy Date: Thu, 29 Aug 2013 23:35:09 -0400 Subject: adding initial project layout --- externals/glfw-3.0.2/docs/html/group__time.html | 150 ++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 externals/glfw-3.0.2/docs/html/group__time.html (limited to 'externals/glfw-3.0.2/docs/html/group__time.html') diff --git a/externals/glfw-3.0.2/docs/html/group__time.html b/externals/glfw-3.0.2/docs/html/group__time.html new file mode 100644 index 00000000..627d88a5 --- /dev/null +++ b/externals/glfw-3.0.2/docs/html/group__time.html @@ -0,0 +1,150 @@ + + + + + + +GLFW: Time input + + + + + + + + + +
+
+ + + + + + +
+
GLFW +  3.0.2 +
+
A multi-platform library for OpenGL, window and input
+
+
+ + + + +
+ +
+ All Data Structures Files Functions Variables Typedefs Macros Groups Pages
+ + +
+ +
+ +
+ +
+
Time input
+
+
+ + + + + + + + +

+Functions

double glfwGetTime (void)
 Returns the value of the GLFW timer. More...
 
void glfwSetTime (double time)
 Sets the GLFW timer. More...
 
+

Detailed Description

+

Function Documentation

+ +
+
+ + + + + + + + +
double glfwGetTime (void )
+
+

This function returns the value of the GLFW timer. Unless the timer has been set using glfwSetTime, the timer measures time elapsed since GLFW was initialized.

+
Returns
The current value, in seconds, or zero if an error occurred.
+
Remarks
This function may be called from secondary threads.
+
Note
The resolution of the timer is system dependent, but is usually on the order of a few micro- or nanoseconds. It uses the highest-resolution monotonic time source on each supported platform.
+ +
+
+ +
+
+ + + + + + + + +
void glfwSetTime (double time)
+
+

This function sets the value of the GLFW timer. It then continues to count up from that value.

+
Parameters
+ + +
[in]timeThe new value, in seconds.
+
+
+
Note
The resolution of the timer is system dependent, but is usually on the order of a few micro- or nanoseconds. It uses the highest-resolution monotonic time source on each supported platform.
+ +
+
+
+ + + + -- cgit v1.2.3