// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. #include #include //decode32 #if CC_USE_MORPH #include #endif #if CC_USE_SKINNING #include #endif void CCVertInput(inout vec4 In) { CCDecode(In); #if CC_USE_MORPH applyMorph(In); #endif #if CC_USE_SKINNING CCSkin(In); #endif }