diff options
author | Iago Toral Quiroga <[email protected]> | 2018-02-05 09:49:54 +0100 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2018-02-06 07:51:00 +0100 |
commit | a5053ba27ed76f666e315de7150433c5aaaaf2c3 (patch) | |
tree | a58a3aca3a7f0211159bc93aa05c43ce91a189f4 /src/intel/vulkan | |
parent | ef439a4fdc34749ce73bf44834c55eae9e886ac2 (diff) |
anv/device: initialize the list of enabled extensions properly
The loop goes through the list of enabled extensions marking them as
enabled in the list, but this relies on every other extension being
initialized to false by default.
This bug would make us, for example, advertise certain device extension
entry points as available even when the corresponding extensions had
not been enabled.
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Fixes: abc62282b5c "anv: Add a per-device table of enabled extensions"
Cc: "18.0" <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 0cba17aa169..86c1bdc1d51 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1331,7 +1331,7 @@ VkResult anv_CreateDevice( assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO); - struct anv_device_extension_table enabled_extensions; + struct anv_device_extension_table enabled_extensions = { }; for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) { int idx; for (idx = 0; idx < ANV_DEVICE_EXTENSION_COUNT; idx++) { |