axmol/core/platform/CCGL.h

80 lines
2.5 KiB
C
Raw Normal View History

/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-06-25 00:36:50 +08:00
Copyright (c) 2021-2022 Bytedance Inc.
https://axis-project.github.io/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
2014-09-10 07:50:02 +08:00
#ifndef __PLATFORM_CCGL_H__
#define __PLATFORM_CCGL_H__
2015-03-24 20:23:51 +08:00
/// @cond DO_NOT_SHOW
2012-07-21 12:23:40 +08:00
#include "platform/CCPlatformConfig.h"
2012-07-21 12:23:40 +08:00
#if CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
2021-12-25 10:04:45 +08:00
# include "platform/android/CCGL-android.h"
2014-09-10 07:50:02 +08:00
#elif CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
2021-12-25 10:04:45 +08:00
# include "platform/win32/CCGL-win32.h"
2014-09-10 07:50:02 +08:00
#elif CC_TARGET_PLATFORM == CC_PLATFORM_LINUX
2021-12-25 10:04:45 +08:00
# include "platform/linux/CCGL-linux.h"
#elif CC_TARGET_PLATFORM == CC_PLATFORM_IOS
2022-02-17 17:11:17 +08:00
# if AX_USE_COMPAT_GL
2021-12-25 10:04:45 +08:00
# include "platform/ios/CCGL-ios.h"
# endif
#elif CC_TARGET_PLATFORM == CC_PLATFORM_MAC
2022-02-17 17:11:17 +08:00
# if AX_USE_COMPAT_GL
2021-12-25 10:04:45 +08:00
# include "platform/mac/CCGL-mac.h"
# endif
#endif
2012-07-21 12:23:40 +08:00
2022-06-25 00:36:50 +08:00
#if !defined(GL_BGRA)
# define GL_BGRA 0x80E1
#endif
2022-06-27 15:37:55 +08:00
#if !defined(GL_SRGB_ALPHA)
# define GL_SRGB_ALPHA 0x8C42
#endif
#if !defined(GL_SRGB8_ALPHA8)
2022-06-25 00:36:50 +08:00
# define GL_SRGB8_ALPHA8 0x8C43
#endif
2022-06-27 15:37:55 +08:00
#if !defined(GL_SRGB)
# define GL_SRGB 0x8C40
#endif
#if !defined(GL_SRGB8)
2022-06-25 00:36:50 +08:00
# define GL_SRGB8 0x8C41
#endif
2022-06-27 15:37:55 +08:00
#if !defined(GL_SLUMINANCE)
# define GL_SLUMINANCE 0x8C46
#endif
#if !defined(GL_SLUMINANCE_ALPHA)
# define GL_SLUMINANCE_ALPHA 0x8C44
#endif
2015-03-24 20:23:51 +08:00
/// @endcond
2014-09-10 07:50:02 +08:00
#endif /* __PLATFORM_CCPLATFORMDEFINE_H__*/