author | Sam Lantinga |
Fri, 08 Apr 2011 13:03:26 -0700 | |
changeset 5535 | 96594ac5fd1a |
parent 5514 | 6bd701987ba9 |
child 6138 | 4c64952a58fb |
permissions | -rw-r--r-- |
slouken@1361 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@5535 | 3 |
Copyright (C) 1997-2011 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 |
*/ |
slouken@1402 | 21 |
#include "SDL_config.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 |
|
slouken@1895 | 27 |
void |
slouken@1895 | 28 |
SDL_StartTicks(void) |
slouken@1361 | 29 |
{ |
slouken@1361 | 30 |
} |
slouken@1361 | 31 |
|
slouken@1895 | 32 |
Uint32 |
slouken@1895 | 33 |
SDL_GetTicks(void) |
slouken@1361 | 34 |
{ |
slouken@1895 | 35 |
SDL_Unsupported(); |
slouken@1895 | 36 |
return 0; |
slouken@1361 | 37 |
} |
slouken@1361 | 38 |
|
slouken@5514 | 39 |
Uint64 |
slouken@5514 | 40 |
SDL_GetPerformanceCounter(void) |
slouken@5514 | 41 |
{ |
slouken@5514 | 42 |
return SDL_GetTicks(); |
slouken@5514 | 43 |
} |
slouken@5514 | 44 |
|
slouken@5514 | 45 |
Uint64 |
slouken@5514 | 46 |
SDL_GetPerformanceFrequency(void) |
slouken@5514 | 47 |
{ |
slouken@5514 | 48 |
return 1000; |
slouken@5514 | 49 |
} |
slouken@5514 | 50 |
|
slouken@1895 | 51 |
void |
slouken@1895 | 52 |
SDL_Delay(Uint32 ms) |
slouken@1361 | 53 |
{ |
slouken@1895 | 54 |
SDL_Unsupported(); |
slouken@1361 | 55 |
} |
slouken@1361 | 56 |
|
slouken@5111 | 57 |
#endif /* SDL_TIMER_DUMMY || SDL_TIMERS_DISABLED */ |
slouken@1361 | 58 |
|
slouken@1895 | 59 |
/* vi: set ts=4 sw=4 expandtab: */ |