三种不同的变量定义写法 float4 vert(float4 pos:POSITION):SV_POSITION { float3 point = float3(10,4,1); float4 pos = 1; float4 pos = float4(point,1); }