vsg 1.1.3
VulkanSceneGraph library
Loading...
Searching...
No Matches
Command.h
1#pragma once
2
3/* <editor-fold desc="MIT License">
4
5Copyright(c) 2018 Robert Osfield
6
7Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
9The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
11THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12
13</editor-fold> */
14
15#include <vsg/nodes/Compilable.h>
16
17namespace vsg
18{
19 class CommandBuffer;
20
22 class VSG_DECLSPEC Command : public Inherit<Compilable, Command>
23 {
24 public:
25 Command() {}
26 Command(const Command& rhs, const CopyOp& copyop = {}) :
27 Inherit(rhs, copyop) {}
28
29 virtual void record(CommandBuffer& commandBuffer) const = 0;
30 };
31 VSG_type_name(vsg::Command);
32
33} // namespace vsg
CommandBuffer encapsulates VkCommandBuffer.
Definition CommandBuffer.h:27
Command base class for encapsulating vkCmd* calls and associated settings.
Definition Command.h:23
Definition Object.h:42
Definition Inherit.h:28