layers: Comment in DrawState for missing validation of DescriptorPool size limit
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp
index 4797a66..1673931 100755
--- a/layers/draw_state.cpp
+++ b/layers/draw_state.cpp
@@ -1911,6 +1911,9 @@
return VK_ERROR_VALIDATION_FAILED;
} else {
memset(pNewNode, 0, sizeof(SET_NODE));
+ // TODO : Pool should store a total count of each type of Descriptor available
+ // When descriptors are allocated, decrement the count and validate here
+ // that the count doesn't go below 0. One reset/free need to bump count back up.
// Insert set at head of Set LL for this pool
pNewNode->pNext = pPoolNode->pSets;
pPoolNode->pSets = pNewNode;