From: Jason Ekstrand Date: Fri, 15 Dec 2017 16:52:21 +0000 (-0800) Subject: anv/cmd_state: Drop the scratch_size field X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc0a21e34811e0e1542236dbaf5fb1fa56bbb98c;p=mesa.git anv/cmd_state: Drop the scratch_size field This is a legacy left-over from the mechanism we used to use to handle scratch. The new (and better) mechanism doesn't use this. Tested-by: Józef Kucia Reviewed-by: Topi Pohjolainen Cc: "18.0" --- diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index a8b3820ffe1..5043305ccf2 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1676,7 +1676,6 @@ struct anv_cmd_state { struct anv_bo *num_workgroups_bo; VkShaderStageFlags descriptors_dirty; VkShaderStageFlags push_constants_dirty; - uint32_t scratch_size; struct anv_pipeline * pipeline; struct anv_pipeline * compute_pipeline; struct anv_framebuffer * framebuffer;