Files

13 lines
200 B
C++

#pragma once
#include "RHICommon.h"
namespace Flower
{
// Simple collect of command buffer.
struct RHICommandBufferBase
{
VkCommandBuffer cmd;
VkCommandPool pool;
uint32_t queueFamily;
};
}