Graphics
v0.0.0
A simple abstraction layer for the modern graphics APIs.
载入中...
搜索中...
未找到
VKCommandQueue.h
1
// Copyright 2022 ShenMian
2
// License(Apache-2.0)
3
4
#pragma once
5
6
#include "CommandQueue.h"
7
#include <vulkan/vulkan.h>
8
9
class
VKCommandQueue
:
public
CommandQueue
10
{
11
public
:
12
VKCommandQueue
();
13
14
void
submit(std::shared_ptr<CommandBuffer> command_buffer)
override
;
15
16
private
:
17
VkQueue handle_;
18
};
CommandQueue
命令队列.
Definition:
CommandQueue.h:13
VKCommandQueue
Definition:
VKCommandQueue.h:10
src
Vulkan
VKCommandQueue.h
制作者
1.9.5