Skip to content
Snippets Groups Projects
Commit a8b77b85 authored by Francisco Casas's avatar Francisco Casas Committed by Alexandre Julliard
Browse files

vkd3d-shader/hlsl: Skip implicit conversion if types are equal.


Otherwise we get false in implicit_compatible_data_types() when passing
types that are equal but not convertible according to
convertible_data_type(); e.g. getting:

"Can't implicitly convert from Texture2D<float4> to Texture2D<float4>."

Signed-off-by: default avatarFrancisco Casas <fcasas@codeweavers.com>
parent 732f1737
No related branches found
No related tags found
1 merge request!7vkd3d-shader/hlsl: Translate copy propagation to index paths. Check for non-static object references. Implicit array initialization.
......@@ -370,6 +370,9 @@ static struct hlsl_ir_node *add_implicit_conversion(struct hlsl_ctx *ctx, struct
{
struct hlsl_type *src_type = node->data_type;
if (hlsl_types_are_equal(src_type, dst_type))
return node;
if (!implicit_compatible_data_types(src_type, dst_type))
{
struct vkd3d_string_buffer *src_string, *dst_string;
......
......@@ -25,8 +25,8 @@ float4 main() : sv_target
}
[test]
todo draw quad
todo probe all rgba (0.2, 0.2, 0.2, 0.1)
draw quad
probe all rgba (0.2, 0.2, 0.2, 0.1)
[pixel shader]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment