Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
2e5de79b
Commit
2e5de79b
authored
May 30, 2016
by
Jan Möbius
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://www.graphics.rwth-aachen.de:9000/OpenMesh/OpenMesh
parents
fe07bd72
1ab77e16
Pipeline
#2056
passed with stage
in 74 minutes and 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
Doc/changelog.docu
Doc/changelog.docu
+1
-0
src/OpenMesh/Core/IO/IOManager.cc
src/OpenMesh/Core/IO/IOManager.cc
+6
-0
No files found.
Doc/changelog.docu
View file @
2e5de79b
...
...
@@ -21,6 +21,7 @@
<b>IO</b>
<ul>
<li>PLY Reader: Fixed binary reader errors in ply reader. (Thanks to Michael Kremer for the patch)</li>
<li>Throw error when no readers are available (Thanks to Christian Feurer for the patch)</li>
</ul>
<b>Build System</b>
...
...
src/OpenMesh/Core/IO/IOManager.cc
View file @
2e5de79b
...
...
@@ -94,6 +94,12 @@ read(const std::string& _filename, BaseImporter& _bi, Options& _opt)
std
::
set
<
BaseReader
*>::
const_iterator
it
=
reader_modules_
.
begin
();
std
::
set
<
BaseReader
*>::
const_iterator
it_end
=
reader_modules_
.
end
();
if
(
it
==
it_end
)
{
omerr
()
<<
"[OpenMesh::IO::_IOManager_] No reading modules available!
\n
"
;
return
false
;
}
// Try all registered modules
for
(;
it
!=
it_end
;
++
it
)
if
((
*
it
)
->
can_u_read
(
_filename
))
...
...
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