Splitting the platform-specific "fgSystemTime" code into its own functions
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1022 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
807a310099
commit
74bd5d3da6
@ -72,6 +72,7 @@ struct GXKeyList gxKeyList;
|
||||
|
||||
extern void fgPlatformReshapeWindow ( SFG_Window *window, int width, int height );
|
||||
extern void fgPlatformDisplayWindow ( SFG_Window *window );
|
||||
extern unsigned long fgPlatformSystemTime ( void );
|
||||
extern void fgPlatformSleepForEvents( long msec );
|
||||
extern void fgPlatformProcessSingleEvent ( void );
|
||||
extern void fgPlatformMainLoopPreliminaryWork ( void );
|
||||
@ -174,6 +175,16 @@ void fgPlatformDisplayWindow ( SFG_Window *window )
|
||||
{
|
||||
fghRedrawWindow ( window ) ;
|
||||
}
|
||||
|
||||
|
||||
unsigned long fgPlatformSystemTime ( void )
|
||||
{
|
||||
#if TARGET_HOST_SOLARIS || HAVE_GETTIMEOFDAY
|
||||
struct timeval now;
|
||||
gettimeofday( &now, NULL );
|
||||
return now.tv_usec/1000 + now.tv_sec*1000;
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
static void fghcbDisplayWindow( SFG_Window *window,
|
||||
@ -262,18 +273,9 @@ static void fghCheckTimers( void )
|
||||
* when subtracting an initial start time, unless the total time exceeds
|
||||
* 32-bit, where the GLUT API return value is also overflowed.
|
||||
*/
|
||||
unsigned long fgSystemTime(void) {
|
||||
#if TARGET_HOST_SOLARIS || HAVE_GETTIMEOFDAY
|
||||
struct timeval now;
|
||||
gettimeofday( &now, NULL );
|
||||
return now.tv_usec/1000 + now.tv_sec*1000;
|
||||
#elif TARGET_HOST_MS_WINDOWS
|
||||
# if defined(_WIN32_WCE)
|
||||
return GetTickCount();
|
||||
# else
|
||||
return timeGetTime();
|
||||
# endif
|
||||
#endif
|
||||
unsigned long fgSystemTime(void)
|
||||
{
|
||||
return fgPlatformSystemTime ();
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -108,6 +108,16 @@ void fgPlatformDisplayWindow ( SFG_Window *window )
|
||||
}
|
||||
|
||||
|
||||
unsigned long fgPlatformSystemTime ( void )
|
||||
{
|
||||
#if defined(_WIN32_WCE)
|
||||
return GetTickCount();
|
||||
#else
|
||||
return timeGetTime();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
void fgPlatformSleepForEvents( long msec )
|
||||
{
|
||||
MsgWaitForMultipleObjects( 0, NULL, FALSE, msec, QS_ALLINPUT );
|
||||
|
Reference in New Issue
Block a user