anv: remove unused field anv_queue::pool

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>
This commit is contained in:
Scott D Phillips 2018-05-02 09:01:03 -07:00
parent 0b1cfd01ff
commit 8b519075ea
2 changed files with 0 additions and 3 deletions

View 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;
}

View File

@ -838,8 +838,6 @@ struct anv_queue {
struct anv_device * device;
struct anv_state_pool * pool;
VkDeviceQueueCreateFlags flags;
};