SM 4.0 顶点着色器的输入顺序是否重要?
例如是
struct App2VS
{
float3 position : POSITION;
float4 color : COLOR0;
float3 normal : NORMAL;
...
};
相当于
struct App2VS
{
float4 color : COLOR0;
float3 position : POSITION;
float3 normal : NORMAL;
...
};