[*] SM3.0 fixes
This commit is contained in:
parent
66363ac7e8
commit
aea4e49f71
@ -783,6 +783,9 @@ void CompilerHLSL::emit_builtin_inputs_in_struct()
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case BuiltInPrimitiveId:
|
case BuiltInPrimitiveId:
|
||||||
|
if (legacy)
|
||||||
|
SPIRV_CROSS_THROW("Primitive ID not supported in SM 3.0 or lower.");
|
||||||
|
|
||||||
type = "uint";
|
type = "uint";
|
||||||
semantic = "SV_PrimitiveID";
|
semantic = "SV_PrimitiveID";
|
||||||
break;
|
break;
|
||||||
@ -830,8 +833,16 @@ void CompilerHLSL::emit_builtin_inputs_in_struct()
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case BuiltInFrontFacing:
|
case BuiltInFrontFacing:
|
||||||
type = "bool";
|
if (legacy)
|
||||||
semantic = "SV_IsFrontFace";
|
{
|
||||||
|
type = "float";
|
||||||
|
semantic = "VFACE";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
type = "bool";
|
||||||
|
semantic = "SV_IsFrontFace";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BuiltInViewIndex:
|
case BuiltInViewIndex:
|
||||||
@ -3146,6 +3157,20 @@ void CompilerHLSL::emit_hlsl_entry_point()
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
case BuiltInFrontFacing:
|
||||||
|
{
|
||||||
|
if (legacy)
|
||||||
|
statement(builtin, " = bool(stage_input.", builtin, " > 0.0 ? true : false);");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
statement(builtin, " = int(stage_input.", builtin, ");");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
case BuiltInVertexId:
|
case BuiltInVertexId:
|
||||||
case BuiltInVertexIndex:
|
case BuiltInVertexIndex:
|
||||||
case BuiltInInstanceIndex:
|
case BuiltInInstanceIndex:
|
||||||
|
Loading…
Reference in New Issue
Block a user