Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
OpenSceneGraph
Commits
387d6a4b
Unverified
Commit
387d6a4b
authored
Mar 23, 2020
by
OpenSceneGraph git repository
Committed by
GitHub
Mar 23, 2020
Browse files
Merge pull request #925 from MozillaReality/correct-plugin-conditionalbuilds
png and tiff plugins do not depend on C++ exceptions.
parents
4cce2d75
caf3167d
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/osgPlugins/CMakeLists.txt
View file @
387d6a4b
...
...
@@ -111,10 +111,10 @@ ENDIF()
IF
(
GIFLIB_FOUND
)
ADD_PLUGIN_DIRECTORY
(
gif
)
ENDIF
()
IF
(
PNG_FOUND
AND OSG_CPP_EXCEPTIONS_AVAILABLE
)
IF
(
PNG_FOUND
)
ADD_PLUGIN_DIRECTORY
(
png
)
ENDIF
()
IF
(
TIFF_FOUND
AND OSG_CPP_EXCEPTIONS_AVAILABLE
)
IF
(
TIFF_FOUND
)
ADD_PLUGIN_DIRECTORY
(
tiff
)
ENDIF
()
IF
(
GDAL_FOUND
)
...
...
src/osgPlugins/rot/ReaderWriterROT.cpp
View file @
387d6a4b
...
...
@@ -80,7 +80,7 @@ static bool getFilenameAndParams(const std::string& input, std::string& filename
* This pseudo-loader makes it simple to change the orientation of a saved
* model by specifying a correcting rotation as part of the filename.
*
* Usage: <modelfile.ext>.<rx>,<ry>,<rz>.
globe
* Usage: <modelfile.ext>.<rx>,<ry>,<rz>.
rot
* where:
* <modelfile.ext> = an model filename.
* <rx> = rotation around X axis [degrees]
...
...
src/osgPlugins/trans/ReaderWriterTRANS.cpp
View file @
387d6a4b
...
...
@@ -81,7 +81,7 @@ static bool getFilenameAndParams(const std::string& input, std::string& filename
* This pseudo-loader make it simple to change the origin of a saved model
* by specifying a correcting translation as part of the filename.
*
* Usage: <modelfile.ext>.<tx>,<ty>,<tz>.
globe
* Usage: <modelfile.ext>.<tx>,<ty>,<tz>.
trans
* where:
* <modelfile.ext> = an model filename.
* <tx> = translation along the X axis.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment