From af392916ff3856c8e606212914c1623674c49aff Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Fri, 13 Nov 2015 10:12:51 -0800 Subject: 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_private.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vulkan/anv_private.h') 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; -- cgit v1.2.3