diff --git a/projects/core/src/command/command_buffer/gryphn_command_buffer.c b/projects/core/src/command/command_buffer/gryphn_command_buffer.c index 70c8a9e..adda95d 100644 --- a/projects/core/src/command/command_buffer/gryphn_command_buffer.c +++ b/projects/core/src/command/command_buffer/gryphn_command_buffer.c @@ -12,9 +12,9 @@ gnReturnCode gnCommandPoolAllocateCommandBuffersFromPointer(gnCommandBufferHandl } gnReturnCode gnCommandPoolAllocateCommandBuffersFromList(gnCommandBufferArrayList buffers, uint32_t count, gnCommandPoolHandle commandPool) { - if (buffers.count < count) { - gnCommandBufferArrayListExpand(&buffers, buffers.count - count); - } + // if (buffers.count < count) { + // gnCommandBufferArrayListExpand(&buffers, buffers.count - count); + // } for (int i = 0; i < count; i++) { buffers.data[i] = malloc(sizeof(struct gnCommandBuffer_t));