From: Jason Ekstrand Date: Wed, 17 Jan 2018 00:22:45 +0000 (-0800) Subject: anv: Add a per-device table of enabled extensions X-Git-Tag: upstream/18.1.0~2444 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abc62282b5c6e37096fe9687a1ef5c401c4556a3;p=platform%2Fupstream%2Fmesa.git anv: Add a per-device table of enabled extensions Nothing uses this at the moment, but we will need it soon. Reviewed-by: Samuel Iglesias Gonsálvez --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 2abf73d..33b2a52 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1241,6 +1241,7 @@ VkResult anv_CreateDevice( assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO); + 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++) { @@ -1254,6 +1255,8 @@ VkResult anv_CreateDevice( if (!physical_device->supported_extensions.extensions[idx]) return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT); + + enabled_extensions.extensions[idx] = true; } /* Check enabled features */ @@ -1310,6 +1313,7 @@ VkResult anv_CreateDevice( device->robust_buffer_access = pCreateInfo->pEnabledFeatures && pCreateInfo->pEnabledFeatures->robustBufferAccess; + device->enabled_extensions = enabled_extensions; if (pthread_mutex_init(&device->mutex, NULL) != 0) { result = vk_error(VK_ERROR_INITIALIZATION_FAILED); diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index a1f34aa..36d87e2 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -857,6 +857,7 @@ struct anv_device { int fd; bool can_chain_batches; bool robust_buffer_access; + struct anv_device_extension_table enabled_extensions; struct anv_bo_pool batch_bo_pool;