vsg  1.1.0
VulkanSceneGraph library
DrawIndexed.h
1 #pragma once
2 
3 /* <editor-fold desc="MIT License">
4 
5 Copyright(c) 2018 Robert Osfield
6 
7 Permission 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 
9 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10 
11 THE 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/vk/CommandBuffer.h>
16 
17 #include <vsg/commands/Command.h>
18 
19 namespace vsg
20 {
21 
23  class VSG_DECLSPEC DrawIndexed : public Inherit<Command, DrawIndexed>
24  {
25  public:
26  DrawIndexed() {}
27 
28  DrawIndexed(uint32_t in_indexCount, uint32_t in_instanceCount, uint32_t in_firstIndex, int32_t in_vertexOffset, uint32_t in_firstInstance) :
29  indexCount(in_indexCount),
30  instanceCount(in_instanceCount),
31  firstIndex(in_firstIndex),
32  vertexOffset(in_vertexOffset),
33  firstInstance(in_firstInstance) {}
34 
35  int compare(const Object& rhs_object) const override;
36 
37  void read(Input& input) override;
38  void write(Output& output) const override;
39 
40  void record(CommandBuffer& commandBuffer) const override
41  {
42  vkCmdDrawIndexed(commandBuffer, indexCount, instanceCount, firstIndex, vertexOffset, firstInstance);
43  }
44 
45  uint32_t indexCount = 0;
46  uint32_t instanceCount = 0;
47  uint32_t firstIndex = 0;
48  uint32_t vertexOffset = 0;
49  uint32_t firstInstance = 0;
50  };
51  VSG_type_name(vsg::DrawIndexed);
52 
53 } // namespace vsg
CommandBuffer encapsulates VkCommandBuffer.
Definition: CommandBuffer.h:27
DrawIndexed command encapsulates vkCmdDrawIndexed call and associated settings.
Definition: DrawIndexed.h:24
int compare(const Object &rhs_object) const override
compare two objects, return -1 if this object is less than rhs, return 0 if it's equal,...
Definition: Inherit.h:28
Definition: Input.h:44
Definition: Object.h:42
Definition: Output.h:41