From af392916ff3856c8e606212914c1623674c49aff Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Fri, 13 Nov 2015 10:12:51 -0800 Subject: [PATCH] anv/device: Embed isl_device Embed struct isl_device into anv_physical_device and anv_device. It will later be used for surface layout calculations. --- src/vulkan/anv_device.c | 8 ++++++++ src/vulkan/anv_private.h | 2 ++ 2 files changed, 10 insertions(+) diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index af27711d9a4..5d53deeb599 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -56,6 +56,7 @@ anv_physical_device_init(struct anv_physical_device *device, { VkResult result; int fd; + uint32_t gen10x; fd = open(path, O_RDWR | O_CLOEXEC); if (fd < 0) @@ -81,6 +82,10 @@ anv_physical_device_init(struct anv_physical_device *device, goto fail; } + gen10x = 10 * device->info->gen; + if (device->info->is_haswell) + gen10x += 5; + if (device->info->gen == 7 && !device->info->is_haswell && !device->info->is_baytrail) { fprintf(stderr, "WARNING: Ivy Bridge Vulkan support is incomplete\n"); @@ -128,6 +133,8 @@ anv_physical_device_init(struct anv_physical_device *device, device->compiler->shader_debug_log = compiler_debug_log; device->compiler->shader_perf_log = compiler_perf_log; + isl_device_init(&device->isl_dev, gen10x); + return VK_SUCCESS; fail: @@ -672,6 +679,7 @@ VkResult anv_CreateDevice( anv_block_pool_init(&device->scratch_block_pool, device, 0x10000); device->info = *physical_device->info; + device->isl_dev = physical_device->isl_dev; anv_queue_init(device, &device->queue); diff --git a/src/vulkan/anv_private.h b/src/vulkan/anv_private.h index cf6f415141a..8269c7e8509 100644 --- a/src/vulkan/anv_private.h +++ b/src/vulkan/anv_private.h @@ -428,6 +428,7 @@ struct anv_physical_device { const struct brw_device_info * info; uint64_t aperture_size; struct brw_compiler * compiler; + struct isl_device isl_dev; }; bool anv_is_scalar_shader_stage(const struct brw_compiler *compiler, @@ -485,6 +486,7 @@ struct anv_device { struct anv_instance * instance; uint32_t chipset_id; struct brw_device_info info; + struct isl_device isl_dev; int context_id; int fd; -- 2.30.2