mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
vkd3d-shader/hlsl: Preserve halves in intrinsic_step().
This commit is contained in:
parent
b23c172a47
commit
2688a24bde
Notes:
Henri Verbeet
2024-09-11 15:34:20 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1042
@ -4583,13 +4583,12 @@ static bool intrinsic_step(struct hlsl_ctx *ctx,
|
||||
|
||||
if (!elementwise_intrinsic_float_convert_args(ctx, params, loc))
|
||||
return false;
|
||||
type = params->args[0]->data_type;
|
||||
|
||||
if (!(ge = add_binary_comparison_expr(ctx, params->instrs, HLSL_OP2_GEQUAL,
|
||||
params->args[1], params->args[0], loc)))
|
||||
return false;
|
||||
|
||||
type = ge->data_type;
|
||||
type = hlsl_get_numeric_type(ctx, type->class, HLSL_TYPE_FLOAT, type->dimx, type->dimy);
|
||||
return !!add_implicit_conversion(ctx, params->instrs, ge, type, loc);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user