diff options
author | Jason Ekstrand <[email protected]> | 2015-12-15 11:49:26 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-12-15 11:49:28 -0800 |
commit | 28c4ef9d6ce63b03c5849332ed93ada4a563ecee (patch) | |
tree | 800f586d1a860d85f85385309038a2997c613370 /src/vulkan/anv_device.c | |
parent | 306abbead34815be303daebba9333b4c4f0975e8 (diff) |
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.
Diffstat (limited to 'src/vulkan/anv_device.c')
-rw-r--r-- | src/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |