Make unsupported DXIL Constant Op be an error instead of log

This commit is contained in:
Jake Turner
2025-01-06 14:44:13 +00:00
parent b370ba10d6
commit ab9db02608
+1 -1
View File
@@ -967,7 +967,7 @@ static bool ConvertDXILConstantToShaderVariable(const Constant *constant, Shader
// case Operation::And:
// case Operation::Or:
// case Operation::Xor:
RDCLOG("Unsupported Constant Op %s", ToStr(constant->op).c_str());
RDCERR("Unsupported Constant Op %s", ToStr(constant->op).c_str());
return false;
}
return false;