We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d9fd47 commit 8d1af4fCopy full SHA for 8d1af4f
src/vsg/app/ViewMatrix.cpp
@@ -19,7 +19,7 @@ void ViewMatrix::read(Input& input)
19
{
20
Object::read(input);
21
22
- if (input.version_greater_equal(1, 1, 8))
+ if (input.version_greater_equal(1, 1, 9))
23
input.read("origin", origin);
24
else
25
origin = {};
@@ -29,7 +29,7 @@ void ViewMatrix::write(Output& output) const
29
30
Object::write(output);
31
32
- if (output.version_greater_equal(1, 1, 8))
+ if (output.version_greater_equal(1, 1, 9))
33
output.write("origin", origin);
34
}
35
0 commit comments