mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 07:10:09 +01:00
vulkan: Add vk_ir_header::dst_leaf_node_offset
Reviewed-by: Natalie Vock <natalie.vock@gmx.de> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34273>
This commit is contained in:
parent
2dee1117b7
commit
c33e598f39
1 changed files with 7 additions and 0 deletions
|
|
@ -94,7 +94,14 @@ struct vk_ir_header {
|
|||
uint32_t dispatch_size_y;
|
||||
uint32_t dispatch_size_z;
|
||||
vk_global_sync_data sync_data;
|
||||
/* Generic offset used by the driver during encoding
|
||||
* to write HW nodes in a compact way.
|
||||
*/
|
||||
uint32_t dst_node_offset;
|
||||
/* Same as dst_node_offset but only useful if the driver
|
||||
* uses a separate memory section for leaf nodes.
|
||||
*/
|
||||
uint32_t dst_leaf_node_offset;
|
||||
};
|
||||
|
||||
struct vk_ir_node {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue