vkd3d-shader/dxil: Introduce a value type for immediate constant buffers.

This commit is contained in:
Conor McCarthy
2023-11-15 11:54:03 +10:00
committed by Alexandre Julliard
parent 85d5f83fb7
commit f2a656b876
Notes: Alexandre Julliard 2023-11-22 22:48:50 +01:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/471
3 changed files with 13 additions and 11 deletions

View File

@@ -1206,7 +1206,7 @@ struct vkd3d_shader_instruction_array
bool shader_instruction_array_init(struct vkd3d_shader_instruction_array *instructions, unsigned int reserve);
bool shader_instruction_array_reserve(struct vkd3d_shader_instruction_array *instructions, unsigned int reserve);
unsigned int shader_instruction_array_add_icb(struct vkd3d_shader_instruction_array *instructions,
bool shader_instruction_array_add_icb(struct vkd3d_shader_instruction_array *instructions,
struct vkd3d_shader_immediate_constant_buffer *icb);
bool shader_instruction_array_clone_instruction(struct vkd3d_shader_instruction_array *instructions,
unsigned int dst, unsigned int src);