vsg  1.1.0
VulkanSceneGraph library
DescriptorAccelerationStructure.h
1 #pragma once
2 
3 /* <editor-fold desc="MIT License">
4 
5 Copyright(c) 2019 Thomas Hogarth
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/raytracing/AccelerationStructure.h>
16 #include <vsg/state/Descriptor.h>
17 
18 namespace vsg
19 {
20 
22  class VSG_DECLSPEC DescriptorAccelerationStructure : public Inherit<Descriptor, DescriptorAccelerationStructure>
23  {
24  public:
26 
27  explicit DescriptorAccelerationStructure(const AccelerationStructures& accelerationStructures, uint32_t dstBinding = 0, uint32_t dstArrayElement = 0, VkDescriptorType descriptorType = VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR);
28 
29  AccelerationStructures& getAccelerationStructures() { return _accelerationStructures; }
30  const AccelerationStructures& getAccelerationStructures() const { return _accelerationStructures; }
31 
32  void read(Input& input) override;
33  void write(Output& output) const override;
34 
35  void compile(Context& context) override;
36 
37  void assignTo(Context& context, VkWriteDescriptorSet& wds) const override;
38 
39  uint32_t getNumDescriptors() const override;
40 
41  protected:
42  AccelerationStructures _accelerationStructures;
43 
44  // populated by compile()
45  std::vector<VkAccelerationStructureKHR> _vkAccelerationStructures;
46  };
48 
49 } // namespace vsg
Definition: Context.h:67
DescriptorAccelerationStructure encapsulates descriptors of type VkAccelerationStructure.
Definition: DescriptorAccelerationStructure.h:23
Definition: Inherit.h:28
Definition: Input.h:44
Definition: Output.h:41