mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 15:36:14 +03:00
13 lines
200 B
C++
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;
|
|
};
|
|
} |