2023-08-28 05:57:34 +00:00
|
|
|
#ifndef __glplatform_h_
|
|
|
|
#define __glplatform_h_
|
|
|
|
|
|
|
|
/*
|
2024-04-29 00:35:41 +00:00
|
|
|
** Copyright 2017-2020 The Khronos Group Inc.
|
|
|
|
** SPDX-License-Identifier: Apache-2.0
|
2023-08-28 05:57:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Platform-specific types and definitions for OpenGL ES 1.X gl.h
|
|
|
|
*
|
|
|
|
* Adopters may modify khrplatform.h and this file to suit their platform.
|
|
|
|
* Please contribute modifications back to Khronos as pull requests on the
|
|
|
|
* public github repository:
|
|
|
|
* https://github.com/KhronosGroup/OpenGL-Registry
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <KHR/khrplatform.h>
|
|
|
|
|
|
|
|
#ifndef GL_API
|
|
|
|
#define GL_API KHRONOS_APICALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_APIENTRY
|
|
|
|
#define GL_APIENTRY KHRONOS_APIENTRY
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __glplatform_h_ */
|