glplatform.h 901 B

123456789101112131415161718192021222324252627282930
  1. #ifndef __glplatform_h_
  2. #define __glplatform_h_
  3. /* $Revision: 10601 $ on $Date:: 2010-03-04 22:15:27 -0800 #$ */
  4. /*
  5. * This document is licensed under the SGI Free Software B License Version
  6. * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
  7. */
  8. /* Platform-specific types and definitions for OpenGL ES 1.X gl.h
  9. *
  10. * Adopters may modify khrplatform.h and this file to suit their platform.
  11. * You are encouraged to submit all modifications to the Khronos group so that
  12. * they can be included in future versions of this file. Please submit changes
  13. * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla)
  14. * by filing a bug against product "OpenGL-ES" component "Registry".
  15. */
  16. #include <KHR/khrplatform.h>
  17. #ifndef GL_API
  18. #define GL_API KHRONOS_APICALL
  19. #endif
  20. #ifndef GL_APIENTRY
  21. #define GL_APIENTRY KHRONOS_APIENTRY
  22. #endif
  23. #endif /* __glplatform_h_ */