2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2011 Zynga Inc.
|
|
|
|
Copyright (c) 2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/// @cond DO_NOT_SHOW
|
|
|
|
|
|
|
|
#include "platform/CCPlatformMacros.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup renderer
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-15 19:44:31 +08:00
|
|
|
extern CC_DLL const char* positionColor_vert;
|
|
|
|
extern CC_DLL const char* positionColor_frag;
|
|
|
|
extern CC_DLL const char* positionTexture_vert;
|
|
|
|
extern CC_DLL const char* positionTexture_frag;
|
|
|
|
extern CC_DLL const char* positionTextureColor_vert;
|
|
|
|
extern CC_DLL const char* positionTextureColor_frag;
|
|
|
|
extern CC_DLL const char* positionTextureColorAlphaTest_frag;
|
|
|
|
extern CC_DLL const char* label_normal_frag;
|
|
|
|
extern CC_DLL const char* label_distanceNormal_frag;
|
|
|
|
extern CC_DLL const char* labelOutline_frag;
|
|
|
|
extern CC_DLL const char* labelDistanceFieldGlow_frag;
|
|
|
|
extern CC_DLL const char* lineColor3D_frag;
|
|
|
|
extern CC_DLL const char* lineColor3D_vert;
|
|
|
|
extern CC_DLL const char* positionColorLengthTexture_vert;
|
|
|
|
extern CC_DLL const char* positionColorLengthTexture_frag;
|
|
|
|
extern CC_DLL const char* positionColorTextureAsPointsize_vert;
|
|
|
|
extern CC_DLL const char* position_vert;
|
|
|
|
extern CC_DLL const char* layer_radialGradient_frag;
|
|
|
|
extern CC_DLL const char* grayScale_frag;
|
|
|
|
extern CC_DLL const char* positionUColor_vert;
|
|
|
|
extern CC_DLL const char* dualSampler_frag;
|
|
|
|
extern CC_DLL const char* dualSampler_gray_frag;
|
|
|
|
extern CC_DLL const char* cameraClear_vert;
|
|
|
|
extern CC_DLL const char* cameraClear_frag;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-15 19:44:31 +08:00
|
|
|
extern CC_DLL const char* CC3D_color_frag;
|
|
|
|
extern CC_DLL const char* CC3D_colorNormal_frag;
|
|
|
|
extern CC_DLL const char* CC3D_colorNormalTexture_frag;
|
|
|
|
extern CC_DLL const char* CC3D_colorTexture_frag;
|
|
|
|
extern CC_DLL const char* CC3D_particleTexture_frag;
|
|
|
|
extern CC_DLL const char* CC3D_particleColor_frag;
|
|
|
|
extern CC_DLL const char* CC3D_particle_vert;
|
|
|
|
extern CC_DLL const char* CC3D_positionNormalTexture_vert;
|
|
|
|
extern CC_DLL const char* CC3D_skinPositionNormalTexture_vert;
|
|
|
|
extern CC_DLL const char* CC3D_positionTexture_vert;
|
|
|
|
extern CC_DLL const char* CC3D_skinPositionTexture_vert;
|
|
|
|
extern CC_DLL const char* CC3D_skybox_frag;
|
|
|
|
extern CC_DLL const char* CC3D_skybox_vert;
|
|
|
|
extern CC_DLL const char* CC3D_terrain_frag;
|
|
|
|
extern CC_DLL const char* CC3D_terrain_vert;
|
2020-10-16 16:23:14 +08:00
|
|
|
|
2022-07-15 19:44:31 +08:00
|
|
|
extern CC_DLL const char* CC2D_quadTexture_frag;
|
|
|
|
extern CC_DLL const char* CC2D_quadColor_frag;
|
|
|
|
extern CC_DLL const char* CC2D_quad_vert;
|
2022-07-05 15:42:38 +08:00
|
|
|
|
2022-07-15 19:44:31 +08:00
|
|
|
extern CC_DLL const char* hsv_frag;
|
|
|
|
extern CC_DLL const char* dualSampler_hsv_frag;
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
end of support group
|
|
|
|
@}
|
|
|
|
*/
|
|
|
|
/// @endcond
|