Entiendo la sintaxis de HLSL, por ejemplo, supongamos que tengo esto como mi HLSL: struct VOut { float4 position : SV_POSITION; float4 color : COLOR; }; VOut VShader(float4 position : POSITION, float4 color : COLOR) { VOut output; output.position = position; output.position.xy *= 0.7f; //...