From: Jason Ekstrand Date: Tue, 15 Dec 2015 19:49:26 +0000 (-0800) Subject: anv/device: Bump the size of the instruction block pool X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=28c4ef9d6ce63b03c5849332ed93ada4a563ecee;p=mesa.git anv/device: Bump the size of the instruction block pool Some CTS test shaders were failing to compile. At some point soon, we really need to make a real pipeline cache and stop using a block pool for this. --- diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index df6472edfde..fe44d1cb036 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -714,7 +714,7 @@ VkResult anv_CreateDevice( anv_state_pool_init(&device->dynamic_state_pool, &device->dynamic_state_block_pool); - anv_block_pool_init(&device->instruction_block_pool, device, 4096); + anv_block_pool_init(&device->instruction_block_pool, device, 8192); anv_block_pool_init(&device->surface_state_block_pool, device, 4096); anv_state_pool_init(&device->surface_state_pool,