vkd3d-shader/hlsl: Translate copy propagation to index paths. Check for non-static object references. Implicit array initialization.
- Aug 23, 2022
-
-
HLSL_ARRAY_ELEMENTS_COUNT_IMPLICIT (zero) is used as a temporal value for elements_count for implicit size arrays. This value is replaced by the correct one after parsing the initializer. In case the implicit array is not initialized correctly, hlsl_error() is called but the array size is kept at 0. So the rest of the code must handle these cases. In shader model 5.1, unlike in 5.0, declaring a multi-dimensional object-type array with the last dimension implicit results in an error. This happens even in presence of an initializer. So, both gen_struct_fields() and declare_vars() first check if the shader model is 5.1, the array elements are objects, and if there is at least one implicit array size to handle the whole type as an unbounded resource array. Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
It is responsibility of the shader's programmer to ensure that object references can be solved statically. Resource arrays for ps_5_1 and vs_5_1 are an exception which is not properly handled yet. They probably deserve a different object type. Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
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:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-
Signed-off-by:
Francisco Casas <fcasas@codeweavers.com>
-