[PATCH vkd3d v2 2/3] vkd3d-shader/hlsl: Write SM4 bitwise XOR instructions.

Francisco Casas fcasas at codeweavers.com
Wed Mar 23 14:23:43 CDT 2022


Signed-off-by: Francisco Casas <fcasas at codeweavers.com>


March 22, 2022 3:06 PM, "Zebediah Figura" <zfigura at codeweavers.com> wrote:

> From: Giovanni Mascellani <gmascellani at codeweavers.com>
> 
> Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
> ---
> v2: Rebase; combine int and uint paths.
> 
> libs/vkd3d-shader/hlsl_sm4.c | 5 +++++
> 1 file changed, 5 insertions(+)
> 
> diff --git a/libs/vkd3d-shader/hlsl_sm4.c b/libs/vkd3d-shader/hlsl_sm4.c
> index 567d311b9..5ca7646f6 100644
> --- a/libs/vkd3d-shader/hlsl_sm4.c
> +++ b/libs/vkd3d-shader/hlsl_sm4.c
> @@ -1637,6 +1637,11 @@ static void write_sm4_expr(struct hlsl_ctx *ctx,
> write_sm4_binary_op(buffer, VKD3D_SM4_OP_OR, &expr->node, arg1, arg2);
> break;
> 
> + case HLSL_OP2_BIT_XOR:
> + assert(type_is_integer(dst_type));
> + write_sm4_binary_op(buffer, VKD3D_SM4_OP_XOR, &expr->node, arg1, arg2);
> + break;
> +
> case HLSL_OP2_DIV:
> switch (dst_type->base_type)
> {
> -- 
> 2.35.1



More information about the wine-devel mailing list