Skip to content

Commit ab9db02

Browse files
committed
Make unsupported DXIL Constant Op be an error instead of log
1 parent b370ba1 commit ab9db02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renderdoc/driver/shaders/dxil/dxil_debug.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ static bool ConvertDXILConstantToShaderVariable(const Constant *constant, Shader
967967
// case Operation::And:
968968
// case Operation::Or:
969969
// case Operation::Xor:
970-
RDCLOG("Unsupported Constant Op %s", ToStr(constant->op).c_str());
970+
RDCERR("Unsupported Constant Op %s", ToStr(constant->op).c_str());
971971
return false;
972972
}
973973
return false;

0 commit comments

Comments
 (0)