summaryrefslogtreecommitdiff
path: root/src/virtio
diff options
context:
space:
mode:
authorConstantine Shablya <constantine.shablya@collabora.com>2023-04-07 05:51:02 +0300
committerMarge Bot <emma+marge@anholt.net>2023-05-03 03:27:54 +0000
commit61413d70a0be6cc4de68bd67674bcc16b8266ddd (patch)
treef80f263b73d8143176cffd6242e86e4631743df3 /src/virtio
parentcc02214304d1586d9602facc46c99532b04ad583 (diff)
downloadmesa-61413d70a0be6cc4de68bd67674bcc16b8266ddd.tar.gz
vulkan: introduce supported_features parameter to vk_physical_device_init
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22333>
Diffstat (limited to 'src/virtio')
-rw-r--r--src/virtio/vulkan/vn_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virtio/vulkan/vn_common.h b/src/virtio/vulkan/vn_common.h
index 7ca5c5bb57c..185e6f85b5f 100644
--- a/src/virtio/vulkan/vn_common.h
+++ b/src/virtio/vulkan/vn_common.h
@@ -275,7 +275,7 @@ vn_physical_device_base_init(
{
VkResult result =
vk_physical_device_init(&physical_dev->base, &instance->base,
- supported_extensions, dispatch_table);
+ supported_extensions, NULL, dispatch_table);
physical_dev->id = (uintptr_t)physical_dev;
return result;
}