author | Sam Lantinga |
Sat, 01 Mar 2014 09:50:52 -0800 | |
changeset 8268 | 3f8410f20405 |
parent 8149 | 681eb46b8ac4 |
child 9619 | b94b6d0bff0f |
permissions | -rw-r--r-- |
slouken@1361 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@8149 | 3 |
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org> |
slouken@1361 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
slouken@1361 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
slouken@1361 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@1361 | 20 |
*/ |
icculus@8093 | 21 |
#include "../../SDL_internal.h" |
slouken@1361 | 22 |
|
slouken@1635 | 23 |
#if defined(SDL_TIMER_DUMMY) || defined(SDL_TIMERS_DISABLED) |
slouken@1635 | 24 |
|
slouken@1484 | 25 |
#include "SDL_timer.h" |
slouken@1484 | 26 |
|
urkle@7649 | 27 |
static SDL_bool ticks_started = SDL_FALSE; |
urkle@7649 | 28 |
|
slouken@1895 | 29 |
void |
slouken@8268 | 30 |
SDL_TicksInit(void) |
slouken@1361 | 31 |
{ |
urkle@7649 | 32 |
if (ticks_started) { |
urkle@7649 | 33 |
return; |
urkle@7649 | 34 |
} |
urkle@7649 | 35 |
ticks_started = SDL_TRUE; |
slouken@1361 | 36 |
} |
slouken@1361 | 37 |
|
slouken@8268 | 38 |
void |
slouken@8268 | 39 |
SDL_TicksQuit(void) |
slouken@8268 | 40 |
{ |
slouken@8268 | 41 |
ticks_started = SDL_FALSE; |
slouken@8268 | 42 |
} |
slouken@8268 | 43 |
|
slouken@1895 | 44 |
Uint32 |
slouken@1895 | 45 |
SDL_GetTicks(void) |
slouken@1361 | 46 |
{ |
urkle@7649 | 47 |
if (!ticks_started) { |
slouken@8268 | 48 |
SDL_TicksInit(); |
urkle@7649 | 49 |
} |
urkle@7649 | 50 |
|
slouken@1895 | 51 |
SDL_Unsupported(); |
slouken@1895 | 52 |
return 0; |
slouken@1361 | 53 |
} |
slouken@1361 | 54 |
|
slouken@5514 | 55 |
Uint64 |
slouken@5514 | 56 |
SDL_GetPerformanceCounter(void) |
slouken@5514 | 57 |
{ |
slouken@5514 | 58 |
return SDL_GetTicks(); |
slouken@5514 | 59 |
} |
slouken@5514 | 60 |
|
slouken@5514 | 61 |
Uint64 |
slouken@5514 | 62 |
SDL_GetPerformanceFrequency(void) |
slouken@5514 | 63 |
{ |
slouken@5514 | 64 |
return 1000; |
slouken@5514 | 65 |
} |
slouken@5514 | 66 |
|
slouken@1895 | 67 |
void |
slouken@1895 | 68 |
SDL_Delay(Uint32 ms) |
slouken@1361 | 69 |
{ |
slouken@1895 | 70 |
SDL_Unsupported(); |
slouken@1361 | 71 |
} |
slouken@1361 | 72 |
|
slouken@5111 | 73 |
#endif /* SDL_TIMER_DUMMY || SDL_TIMERS_DISABLED */ |
slouken@1361 | 74 |
|
slouken@1895 | 75 |
/* vi: set ts=4 sw=4 expandtab: */ |