Hi,
I notice that the D3D10_SIGNATURE_PARAMETER_DESC structure has SemanticName and SemanticIndex members. These members seems identical to the members of D3D10_INPUT_ELEMENT_DESC structure. It seems tempting to programatically derive SemanticName, SemanticIndex, and Format members of D3D10_INPUT_ELEMENT_DESC from D3D10_SIGNATURE_PARAMETER_DESC. However, the D3D10_SIGNATURE_PARAMETER_DESC does not seem to contain any information about the format of the input. I can only find a register type of the input signature, without the length of the input. (Or is there?)
Can I derive D3D10_INPUT_ELEMENT_DESC from D3D10_SIGNATURE_PARAMETER_DESC, without manually setting the Format member? Should I even try it?
Thanks,