Skip to content

Commit

Permalink
Non sRGB changes pulled in from the ColorSpace2 branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Jan 14, 2025
1 parent d4436fb commit 5f91ce3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/vsg/io/Input.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ namespace vsg
public:
Input(ref_ptr<ObjectFactory> in_objectFactory, ref_ptr<const Options> in_options = {});

Input(const Input&) = delete;
Input& operator=(const Input& rhs) = delete;

/// return true if property name matches the next token in the stream, or if property names are not required for format
Expand Down
4 changes: 3 additions & 1 deletion include/vsg/io/Output.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ namespace vsg
class VSG_DECLSPEC Output
{
public:
Output(ref_ptr<const Options> in_options = {});
Output();
Output(ref_ptr<const Options> in_options);

Output(const Output&) = delete;
Output& operator=(const Output& rhs) = delete;

/// write property name if appropriate for format
Expand Down
3 changes: 3 additions & 0 deletions include/vsg/state/DescriptorSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ namespace vsg
public:
Implementation(DescriptorPool* descriptorPool, DescriptorSetLayout* descriptorSetLayout);

Implementation(const Implementation&) = delete;
Implementation& operator=(const Implementation&) = delete;

void assign(Context& context, const Descriptors& descriptors);

VkDescriptorSet _descriptorSet;
Expand Down
5 changes: 5 additions & 0 deletions src/vsg/io/Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

using namespace vsg;

Output::Output() :
Output(nullptr)
{
}

Output::Output(ref_ptr<const Options> in_options) :
options(in_options),
version{vsgGetVersion()}
Expand Down

0 comments on commit 5f91ce3

Please sign in to comment.