// 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 StandardVertInput In) { CCDecode(In); #if CC_USE_MORPH applyMorph(In.position, In.normal, In.tangent); #endif #if CC_USE_SKINNING CCSkin(In.position, In.normal, In.tangent); #endif }