summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott D Phillips <scott.d.phillips@intel.com>2018-05-02 09:01:03 -0700
committerXuelian Bai <xuelian.bai@samsung.com>2021-11-26 08:31:49 +0800
commit338444bf0e5254f116460e8c66e8656f1e5776fc (patch)
tree6fca756f9d4aeb64a805ffb818dd8612029b7ad8
parentf945a08f2ada92756f2404e55612ef2d67c18abe (diff)
downloadmesa-338444bf0e5254f116460e8c66e8656f1e5776fc.tar.gz
mesa-338444bf0e5254f116460e8c66e8656f1e5776fc.tar.bz2
mesa-338444bf0e5254f116460e8c66e8656f1e5776fc.zip
anv: remove unused field anv_queue::poolsandbox/yuanzhaowei/devel
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> Change-Id: I821a2da3b02dfe09374d178c8dee90eab072d1a2 Signed-off-by: Xuelian <xuelian.bai@samsung.com>
-rw-r--r--src/intel/vulkan/anv_device.c1
-rw-r--r--src/intel/vulkan/anv_private.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index fd516fb8466..374fc16c4c9 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -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;
}
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
index d8b34b149e4..d043c77826e 100644
--- a/src/intel/vulkan/anv_private.h
+++ b/src/intel/vulkan/anv_private.h
@@ -838,8 +838,6 @@ struct anv_queue {
struct anv_device * device;
- struct anv_state_pool * pool;
-
VkDeviceQueueCreateFlags flags;
};