vsg 1.1.3
VulkanSceneGraph library
Loading...
Searching...
No Matches
DescriptorTexelBufferView.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/state/BufferView.h>
16#include <vsg/state/Descriptor.h>
17
18namespace vsg
19{
20
22 class VSG_DECLSPEC DescriptorTexelBufferView : public Inherit<Descriptor, DescriptorTexelBufferView>
23 {
24 public:
26 DescriptorTexelBufferView(const DescriptorTexelBufferView& rhs, const CopyOp& copyop = {});
27 DescriptorTexelBufferView(uint32_t dstBinding, uint32_t dstArrayElement, VkDescriptorType descriptorType, const BufferViewList& in_texelBufferViews);
28
30 BufferViewList texelBufferViews;
31
32 void compile(Context& context) override;
33 void assignTo(Context& context, VkWriteDescriptorSet& wds) const override;
34 uint32_t getNumDescriptors() const override { return static_cast<uint32_t>(texelBufferViews.size()); }
35
36 public:
37 ref_ptr<Object> clone(const CopyOp& copyop = {}) const override { return DescriptorTexelBufferView::create(*this, copyop); }
38 int compare(const Object& rhs_object) const override;
39
40 void read(Input& input) override;
41 void write(Output& output) const override;
42
43 protected:
44 };
45 VSG_type_name(vsg::DescriptorTexelBufferView);
46
47} // namespace vsg
Definition Context.h:67
Definition Object.h:42
DescriptorTexelBufferView is a Descriptor class that encapsulates texelBufferViews used to set VkWrit...
Definition DescriptorTexelBufferView.h:23
BufferViewList texelBufferViews
VkWriteDescriptorSet.pTexelBufferViews settings.
Definition DescriptorTexelBufferView.h:30
ref_ptr< Object > clone(const CopyOp &copyop={}) const override
Definition DescriptorTexelBufferView.h:37
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:60
Definition Output.h:41
Definition ref_ptr.h:22