10 lines
189 B
C++
10 lines
189 B
C++
#pragma once
|
|
|
|
#include <vulkan/vulkan.h>
|
|
|
|
#include "gfx_commandbuffer.hpp"
|
|
|
|
class GFXVulkanCommandBuffer : public GFXCommandBuffer {
|
|
public:
|
|
VkCommandBuffer handle = VK_NULL_HANDLE;
|
|
};
|