mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
vkd3d-shader/ir: Print results as signed numbers.
This commit is contained in:
parent
096f133b09
commit
b31c9831fa
Notes:
Henri Verbeet
2024-09-11 15:34:39 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1058
@ -6635,14 +6635,14 @@ static void vsir_transform_(
|
|||||||
|
|
||||||
if ((ctx->result = step(ctx->program, ctx)) < 0)
|
if ((ctx->result = step(ctx->program, ctx)) < 0)
|
||||||
{
|
{
|
||||||
WARN("Transformation \"%s\" failed with result %u.\n", step_name, ctx->result);
|
WARN("Transformation \"%s\" failed with result %d.\n", step_name, ctx->result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ctx->result = vsir_program_validate(ctx->program, ctx->config_flags,
|
if ((ctx->result = vsir_program_validate(ctx->program, ctx->config_flags,
|
||||||
ctx->compile_info->source_name, ctx->message_context)) < 0)
|
ctx->compile_info->source_name, ctx->message_context)) < 0)
|
||||||
{
|
{
|
||||||
WARN("Validation failed with result %u after transformation \"%s\".\n", ctx->result, step_name);
|
WARN("Validation failed with result %d after transformation \"%s\".\n", ctx->result, step_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user