Skip to content

Commit

Permalink
Significantly increased descriptor limits
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeLudwig committed May 1, 2020
1 parent 43c0367 commit 5831e99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gltfpbr_base/descriptormanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ CDescriptorManager::~CDescriptorManager()

bool CDescriptorManager::init()
{
static const uint32_t k_unUniformBufferDescriptorCount = 4096;
static const uint32_t k_unImageSamplerDescriptorCount = 4096;
static const uint32_t k_unMaxSets = 4096;
static const uint32_t k_unUniformBufferDescriptorCount = 10000;
static const uint32_t k_unImageSamplerDescriptorCount = 10000;
static const uint32_t k_unMaxSets = 10000;

std::array<VkDescriptorPoolSize, 2 > poolSizes =
{
Expand Down

0 comments on commit 5831e99

Please sign in to comment.