d3dx8.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. //  Copyright (C) Microsoft Corporation.  All Rights Reserved.
  4. //
  5. //  File:       d3dx8.h
  6. //  Content:    D3DX utility library
  7. //
  8. ///////////////////////////////////////////////////////////////////////////
  9. #ifndef __D3DX8_H__
  10. #define __D3DX8_H__
  11. #include "d3d8.h"
  12. #include <limits.h>
  13. #ifndef D3DXINLINE
  14. #ifdef _MSC_VER
  15.   #if (_MSC_VER >= 1200)
  16.   #define D3DXINLINE __forceinline
  17.   #else
  18.   #define D3DXINLINE __inline
  19.   #endif
  20. #else
  21.   #ifdef __cplusplus
  22.   #define D3DXINLINE inline
  23.   #else
  24.   #define D3DXINLINE
  25.   #endif
  26. #endif
  27. #endif
  28. #define D3DX_DEFAULT ULONG_MAX
  29. #define D3DX_DEFAULT_FLOAT FLT_MAX
  30. #include "d3dx8math.h"
  31. #include "d3dx8core.h"
  32. #include "d3dx8tex.h"
  33. #include "d3dx8mesh.h"
  34. #include "d3dx8shape.h"
  35. #include "d3dx8effect.h"
  36. #endif //__D3DX8_H__