diff options
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 8ba03300ce1..62d3300d0ce 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -455,6 +455,10 @@ extern struct anv_dispatch_table dtable; #define VK_ICD_WSI_PLATFORM_MAX 5 +struct anv_wsi_device { + struct anv_wsi_interface * wsi[VK_ICD_WSI_PLATFORM_MAX]; +}; + struct anv_physical_device { VK_LOADER_DATA _loader_data; @@ -471,7 +475,7 @@ struct anv_physical_device { uint32_t eu_total; uint32_t subslice_total; - struct anv_wsi_interface * wsi[VK_ICD_WSI_PLATFORM_MAX]; + struct anv_wsi_device wsi_device; }; struct anv_instance { |