mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
vkd3d-shader/dxil: Handle missing flags as zero for CMP2.
The flag operand is omitted if IEEE strictness is specified.
This commit is contained in:
parent
f1e9f40061
commit
408f67c69c
Notes:
Alexandre Julliard
2023-11-14 23:09:40 +01:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/469
@ -3494,11 +3494,11 @@ static void sm6_parser_emit_cmp2(struct sm6_parser *sm6, const struct dxil_recor
|
||||
{
|
||||
struct vkd3d_shader_src_param *src_params;
|
||||
const struct sm6_type *type_a, *type_b;
|
||||
bool is_int, is_fp, silence_warning;
|
||||
const struct sm6_cmp_info *cmp;
|
||||
const struct sm6_value *a, *b;
|
||||
uint64_t code, flags;
|
||||
unsigned int i = 0;
|
||||
bool is_int, is_fp;
|
||||
uint64_t code;
|
||||
|
||||
if (!(dst->type = sm6->bool_type))
|
||||
{
|
||||
@ -3549,10 +3549,8 @@ static void sm6_parser_emit_cmp2(struct sm6_parser *sm6, const struct dxil_recor
|
||||
|
||||
vsir_instruction_init(ins, &sm6->p.location, cmp->handler_idx);
|
||||
|
||||
if (record->operand_count > i)
|
||||
{
|
||||
uint64_t flags = record->operands[i];
|
||||
bool silence_warning = false;
|
||||
flags = (record->operand_count > i) ? record->operands[i] : 0;
|
||||
silence_warning = false;
|
||||
|
||||
if (is_fp)
|
||||
{
|
||||
@ -3572,7 +3570,6 @@ static void sm6_parser_emit_cmp2(struct sm6_parser *sm6, const struct dxil_recor
|
||||
vkd3d_shader_parser_warning(&sm6->p, VKD3D_SHADER_WARNING_DXIL_IGNORING_OPERANDS,
|
||||
"Ignoring flags %#"PRIx64" for a comparison operation.", flags);
|
||||
}
|
||||
}
|
||||
|
||||
src_params = instruction_src_params_alloc(ins, 2, sm6);
|
||||
src_param_init_from_value(&src_params[0 ^ cmp->src_swap], a);
|
||||
|
Loading…
Reference in New Issue
Block a user