b3OpenCLInclude.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. Bullet Continuous Collision Detection and Physics Library
  3. Copyright (c) 2011 Advanced Micro Devices, Inc. http://bulletphysics.org
  4. This software is provided 'as-is', without any express or implied warranty.
  5. In no event will the authors be held liable for any damages arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it freely,
  8. subject to the following restrictions:
  9. 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  10. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  11. 3. This notice may not be removed or altered from any source distribution.
  12. */
  13. #ifndef B3_OPENCL_INCLUDE_H
  14. #define B3_OPENCL_INCLUDE_H
  15. #ifdef B3_USE_CLEW
  16. #include "clew/clew.h"
  17. #else
  18. #ifdef __APPLE__
  19. #ifdef USE_MINICL
  20. #include <MiniCL/cl.h>
  21. #else
  22. #include <OpenCL/cl.h>
  23. #include <OpenCL/cl_ext.h> //clLogMessagesToStderrAPPLE
  24. #endif
  25. #else
  26. #ifdef USE_MINICL
  27. #include <MiniCL/cl.h>
  28. #else
  29. #include <CL/cl.h>
  30. #ifdef _WIN32
  31. #include "CL/cl_gl.h"
  32. #endif //_WIN32
  33. #endif
  34. #endif //__APPLE__
  35. #endif //B3_USE_CLEW
  36. #include <assert.h>
  37. #include <stdio.h>
  38. #define oclCHECKERROR(a, b) if((a)!=(b)) { printf("OCL Error : %d\n", (a)); assert((a) == (b)); }
  39. #endif //B3_OPENCL_INCLUDE_H