Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
722 B

  1. //===== Copyright � 1996-2008, Valve Corporation, All rights reserved. ======//
  2. //
  3. // Purpose:
  4. //
  5. //===========================================================================//
  6. #ifndef MATH_TABLES_H
  7. #define MATH_TABLES_H
  8. #define SIN_TABLE_SIZE 256
  9. #ifdef BUILD_TABLES
  10. DLL_EXPORT float SinCosTable[SIN_TABLE_SIZE];
  11. DLL_EXPORT float g_Mathlib_power2_n[256];
  12. DLL_EXPORT float g_Mathlib_lineartovertex[4096];
  13. DLL_EXPORT unsigned char g_Mathlib_lineartolightmap[4096];
  14. #else
  15. DLL_IMPORT float SinCosTable[SIN_TABLE_SIZE];
  16. DLL_IMPORT float g_Mathlib_power2_n[256];
  17. DLL_IMPORT float g_Mathlib_lineartovertex[4096];
  18. DLL_IMPORT unsigned char g_Mathlib_lineartolightmap[4096];
  19. #endif
  20. #endif // MATH_TABLES_H