vkd3d-shader: Rename the vkd3d_root_parameter1 structure to vkd3d_shader_root_parameter1.

Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Henri Verbeet
2020-07-21 15:20:01 +04:30
committed by Alexandre Julliard
parent 197fe4ca60
commit 9366248ed2
3 changed files with 12 additions and 12 deletions

View File

@@ -547,7 +547,7 @@ struct vkd3d_shader_root_descriptor1
enum vkd3d_shader_root_descriptor_flags flags;
};
struct vkd3d_root_parameter1
struct vkd3d_shader_root_parameter1
{
enum vkd3d_shader_root_parameter_type parameter_type;
union
@@ -562,7 +562,7 @@ struct vkd3d_root_parameter1
struct vkd3d_root_signature_desc1
{
unsigned int parameter_count;
const struct vkd3d_root_parameter1 *parameters;
const struct vkd3d_shader_root_parameter1 *parameters;
unsigned int static_sampler_count;
const struct vkd3d_shader_static_sampler_desc *static_samplers;
enum vkd3d_shader_root_signature_flags flags;