diff options
author | Jason Ekstrand <[email protected]> | 2020-01-17 23:17:48 -0600 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-20 22:08:52 +0000 |
commit | 02044be23f179959872158dbf2a470ed49df774c (patch) | |
tree | e3758d86d2c657de79f414ce829cb19d6ecb8ade /src/intel/vulkan/anv_private.h | |
parent | 78ff747408379387f72fca802f3065915e496f4c (diff) |
anv: Move the physical device dispatch table to anv_instance
We don't actually have genX versions of any physical device level
commands so we don't need the trampoline versions and we don't need to
have a separate table per physical device.
Reviewed-by: Lionel Landwerlin <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3461>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index afc1b14953e..838f27dc45f 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1014,7 +1014,6 @@ struct anv_physical_device { bool always_flush_cache; struct anv_device_extension_table supported_extensions; - struct anv_physical_device_dispatch_table dispatch; uint32_t eu_total; uint32_t subslice_total; @@ -1055,6 +1054,7 @@ struct anv_instance { struct anv_instance_extension_table enabled_extensions; struct anv_instance_dispatch_table dispatch; + struct anv_physical_device_dispatch_table physical_device_dispatch; struct anv_device_dispatch_table device_dispatch; int physicalDeviceCount; |