diff options
author | Jason Ekstrand <[email protected]> | 2016-01-12 13:48:32 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-01-12 13:49:05 -0800 |
commit | aee970c844f85c00dcb5d0df85ef56981c255291 (patch) | |
tree | 95a5741093356ec14454196413d59f1fed5954a3 /src | |
parent | d7a193327b3d121e4a45766b360fcc11d3a56b93 (diff) |
anv/device: Bump the max program size again
No one will ever need more than 128K, right?
Diffstat (limited to 'src')
-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 1da0cb4367c..fa2c24a80f6 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -722,7 +722,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, 64 * 1024); + anv_block_pool_init(&device->instruction_block_pool, device, 128 * 1024); anv_pipeline_cache_init(&device->default_pipeline_cache, device); anv_block_pool_init(&device->surface_state_block_pool, device, 4096); |