Graphics v0.0.0
A simple abstraction layer for the modern graphics APIs.
载入中...
搜索中...
未找到
CommandQueue.h
1// Copyright 2022 ShenMian
2// License(Apache-2.0)
3
4#pragma once
5
6#include "CommandBuffer.h"
7#include <memory>
8
13{
14public:
15 static std::shared_ptr<CommandQueue> create();
16
17 virtual void submit(std::shared_ptr<CommandBuffer> command_buffer) = 0;
18};
命令队列.
Definition: CommandQueue.h:13