SDL_cpuinfo.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:2k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997-2006 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Lesser General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2.1 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Lesser General Public License for more details.
  12.     You should have received a copy of the GNU Lesser General Public
  13.     License along with this library; if not, write to the Free Software
  14.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  19. /* CPU feature detection for SDL                                       */
  20. #ifndef _SDL_cpuinfo_h
  21. #define _SDL_cpuinfo_h
  22. #include "SDL_stdinc.h"
  23. #include "begin_code.h"
  24. /* Set up for C function definitions, even when using C++ */
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. /* This function returns true if the CPU has the RDTSC instruction
  29.  */
  30. extern DECLSPEC SDL_bool SDLCALL SDL_HasRDTSC(void);
  31. /* This function returns true if the CPU has MMX features
  32.  */
  33. extern DECLSPEC SDL_bool SDLCALL SDL_HasMMX(void);
  34. /* This function returns true if the CPU has MMX Ext. features
  35.  */
  36. extern DECLSPEC SDL_bool SDLCALL SDL_HasMMXExt(void);
  37. /* This function returns true if the CPU has 3DNow features
  38.  */
  39. extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNow(void);
  40. /* This function returns true if the CPU has 3DNow! Ext. features
  41.  */
  42. extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNowExt(void);
  43. /* This function returns true if the CPU has SSE features
  44.  */
  45. extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE(void);
  46. /* This function returns true if the CPU has SSE2 features
  47.  */
  48. extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE2(void);
  49. /* This function returns true if the CPU has AltiVec features
  50.  */
  51. extern DECLSPEC SDL_bool SDLCALL SDL_HasAltiVec(void);
  52. /* Ends C function definitions when using C++ */
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #include "close_code.h"
  57. #endif /* _SDL_cpuinfo_h */