PVRTools.h 936 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /******************************************************************************
  2. @File PVRTools.h
  3. @Title PVRTools
  4. @Version
  5. @Copyright Copyright (C) Imagination Technologies Limited.
  6. @Platform ANSI compatible
  7. @Description Header file to include a particular API tools header
  8. ******************************************************************************/
  9. #ifndef PVRTOOLS_H
  10. #define PVRTOOLS_H
  11. #ifdef BUILD_OGLES2
  12. #include "OGLES2Tools.h"
  13. #elif BUILD_OGLES
  14. #include "OGLESTools.h"
  15. #elif BUILD_OGL
  16. #include "OGLTools.h"
  17. #elif BUILD_D3DM
  18. #include "D3DMTools.h"
  19. #elif BUILD_DX9
  20. #include "DX9Tools.h"
  21. #elif BUILD_DX10
  22. #include "DX10Tools.h"
  23. #endif
  24. #endif /* PVRTOOLS_H*/
  25. /*****************************************************************************
  26. End of file (Tools.h)
  27. *****************************************************************************/