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
10{
11public:
13
14 void submit(std::shared_ptr<CommandBuffer> command_buffer) override;
15
16private:
17 VkQueue handle_;
18};
命令队列.
Definition: CommandQueue.h:13
Definition: VKCommandQueue.h:10