Changeset 7006 for trunk/src/opengl/mesa
- Timestamp:
- Oct 11, 2001, 12:34:36 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/context.c
r3598 r7006 1 /* $Id: context.c,v 1. 4 2000-05-23 20:40:25 jeroenExp $ */1 /* $Id: context.c,v 1.5 2001-10-10 22:34:36 phaller Exp $ */ 2 2 3 3 /* … … 110 110 #ifdef PROFILE 111 111 112 #ifndef __WIN32OS2__ 112 113 #include <sys/times.h> 113 114 #include <sys/param.h> 114 115 #endif 115 116 116 117 /* … … 118 119 * NOTE: this implementation may not be very portable! 119 120 */ 121 120 122 GLdouble gl_time( void ) 121 123 { 124 #ifdef __WIN32OS2__ 125 return 1; // @@@PH 126 #else 122 127 static GLdouble prev_time = 0.0; 123 128 static GLdouble time; … … 140 145 return prev_time; 141 146 } 147 #endif 142 148 } 143 149 … … 255 261 } 256 262 #endif 257 258 263 259 264
Note:
See TracChangeset
for help on using the changeset viewer.