🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

27 lines
646 B

  1. #ifndef __gl2platform_h_
  2. #define __gl2platform_h_
  3. /*
  4. ** Copyright 2017-2020 The Khronos Group Inc.
  5. ** SPDX-License-Identifier: Apache-2.0
  6. */
  7. /* Platform-specific types and definitions for OpenGL ES 2.X gl2.h
  8. *
  9. * Adopters may modify khrplatform.h and this file to suit their platform.
  10. * Please contribute modifications back to Khronos as pull requests on the
  11. * public github repository:
  12. * https://github.com/KhronosGroup/OpenGL-Registry
  13. */
  14. /*#include <KHR/khrplatform.h>*/
  15. #ifndef GL_APICALL
  16. #define GL_APICALL KHRONOS_APICALL
  17. #endif
  18. #ifndef GL_APIENTRY
  19. #define GL_APIENTRY KHRONOS_APIENTRY
  20. #endif
  21. #endif /* __gl2platform_h_ */