string c++ 转义序列

std::string shaderVS = "\
struct PSInput \
{ \
float4 position : SV_POSITION;\
float4 color : COLOR;\
}; \
PSInput VSMain(float4 position : POSITION, float4 color : COLOR)\
{\
PSInput result;\
result.position = position;\
result.color = color;\
return result;\
}\
float4 PSMain(PSInput input) : SV_TARGET\
{\
return input.color;\
}\
";

\会让它后面那个字符无效 这里是\让它后面的回车无效 这之间不能放空格

posted on 2018-08-31 15:48  minggoddess  阅读(260)  评论(0编辑  收藏  举报