vsg 1.1.3
VulkanSceneGraph library
Loading...
Searching...
No Matches
Geometry.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/commands/Draw.h>
16#include <vsg/nodes/Node.h>
17#include <vsg/state/BufferInfo.h>
18
19namespace vsg
20{
21
29 class VSG_DECLSPEC Geometry : public Inherit<Command, Geometry>
30 {
31 public:
32 Geometry();
33 Geometry(const Geometry& rhs, const CopyOp& copyop = {});
34
35 using DrawCommands = std::vector<ref_ptr<Command>>;
36
37 // settings
38 uint32_t firstBinding = 0;
39 BufferInfoList arrays;
40 ref_ptr<BufferInfo> indices;
41 DrawCommands commands;
42
43 void assignArrays(const DataList& in_arrays);
44 void assignIndices(ref_ptr<vsg::Data> in_indices);
45
46 public:
47 ref_ptr<Object> clone(const CopyOp& copyop = {}) const override { return Geometry::create(*this, copyop); }
48 int compare(const Object& rhs) const override;
49
50 void read(Input& input) override;
51 void write(Output& output) const override;
52
53 void compile(Context& context) override;
54 void record(CommandBuffer& commandBuffer) const override;
55
56 protected:
57 virtual ~Geometry();
58
60 VkIndexType indexType = VK_INDEX_TYPE_UINT16;
61 };
62 VSG_type_name(vsg::Geometry)
63
64} // namespace vsg
CommandBuffer encapsulates VkCommandBuffer.
Definition CommandBuffer.h:27
Definition Context.h:67
Definition Object.h:42
Definition Geometry.h:30
int compare(const Object &rhs) const override
compare two objects, return -1 if this object is less than rhs, return 0 if it's equal,...
ref_ptr< Object > clone(const CopyOp &copyop={}) const override
Definition Geometry.h:47
Definition Inherit.h:28
Definition Input.h:44
Definition Object.h:60
Definition Output.h:41
Definition ref_ptr.h:22
vk_buffer that manages a single logical device supported.
Definition vk_buffer.h:28