anv: remove unused field anv_queue::pool
authorScott D Phillips <scott.d.phillips@intel.com>
Wed, 2 May 2018 16:01:03 +0000 (09:01 -0700)
committerScott D Phillips <scott.d.phillips@intel.com>
Mon, 7 May 2018 16:03:46 +0000 (09:03 -0700)
The last use of the field was removed in 2015's ("48a87f4ba06
anv/queue: Get rid of the serial")

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/vulkan/anv_device.c
src/intel/vulkan/anv_private.h

index fd516fb..374fc16 100644 (file)
@@ -1268,7 +1268,6 @@ anv_queue_init(struct anv_device *device, struct anv_queue *queue)
 {
    queue->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
    queue->device = device;
-   queue->pool = &device->surface_state_pool;
    queue->flags = 0;
 }
 
index d8b34b1..d043c77 100644 (file)
@@ -838,8 +838,6 @@ struct anv_queue {
 
     struct anv_device *                         device;
 
-    struct anv_state_pool *                     pool;
-
     VkDeviceQueueCreateFlags                    flags;
 };