diff options
Diffstat (limited to 'src/intel/vulkan/anv_descriptor_set.c')
-rw-r--r-- | src/intel/vulkan/anv_descriptor_set.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_descriptor_set.c b/src/intel/vulkan/anv_descriptor_set.c index 4797c1e19fa..4b58b0be95c 100644 --- a/src/intel/vulkan/anv_descriptor_set.c +++ b/src/intel/vulkan/anv_descriptor_set.c @@ -345,7 +345,7 @@ VkResult anv_CreateDescriptorPool( pool->free_list = EMPTY; anv_state_stream_init(&pool->surface_state_stream, - &device->surface_state_block_pool); + &device->surface_state_pool, 4096); pool->surface_state_free_list = NULL; *pDescriptorPool = anv_descriptor_pool_to_handle(pool); @@ -380,7 +380,7 @@ VkResult anv_ResetDescriptorPool( pool->free_list = EMPTY; anv_state_stream_finish(&pool->surface_state_stream); anv_state_stream_init(&pool->surface_state_stream, - &device->surface_state_block_pool); + &device->surface_state_pool, 4096); pool->surface_state_free_list = NULL; return VK_SUCCESS; |