mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-shader: Rename the vkd3d_root_descriptor_table1 structure to vkd3d_shader_root_descriptor_table1.
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
0e9f914197
commit
cb9bf177e9
@@ -2327,7 +2327,7 @@ static int shader_parse_descriptor_table(struct root_signature_parser_context *c
|
||||
}
|
||||
|
||||
static int shader_parse_descriptor_table1(struct root_signature_parser_context *context,
|
||||
unsigned int offset, struct vkd3d_root_descriptor_table1 *table)
|
||||
unsigned int offset, struct vkd3d_shader_root_descriptor_table1 *table)
|
||||
{
|
||||
struct vkd3d_shader_descriptor_range1 *ranges;
|
||||
unsigned int count;
|
||||
@@ -2830,7 +2830,7 @@ static int shader_write_descriptor_ranges(struct root_signature_writer_context *
|
||||
}
|
||||
|
||||
static int shader_write_descriptor_ranges1(struct root_signature_writer_context *context,
|
||||
const struct vkd3d_root_descriptor_table1 *table)
|
||||
const struct vkd3d_shader_root_descriptor_table1 *table)
|
||||
{
|
||||
const struct vkd3d_shader_descriptor_range1 *ranges = table->descriptor_ranges;
|
||||
unsigned int i;
|
||||
@@ -2866,7 +2866,7 @@ static int shader_write_descriptor_table(struct root_signature_writer_context *c
|
||||
}
|
||||
|
||||
static int shader_write_descriptor_table1(struct root_signature_writer_context *context,
|
||||
const struct vkd3d_root_descriptor_table1 *table)
|
||||
const struct vkd3d_shader_root_descriptor_table1 *table)
|
||||
{
|
||||
if (!write_dword(context, table->descriptor_range_count))
|
||||
return VKD3D_ERROR_OUT_OF_MEMORY;
|
||||
@@ -3072,7 +3072,7 @@ static int validate_descriptor_table_v_1_0(const struct vkd3d_shader_root_descri
|
||||
return VKD3D_OK;
|
||||
}
|
||||
|
||||
static int validate_descriptor_table_v_1_1(const struct vkd3d_root_descriptor_table1 *descriptor_table)
|
||||
static int validate_descriptor_table_v_1_1(const struct vkd3d_shader_root_descriptor_table1 *descriptor_table)
|
||||
{
|
||||
bool have_srv_uav_cbv = false;
|
||||
bool have_sampler = false;
|
||||
|
Reference in New Issue
Block a user