Merge pull request #969 from unelsson/daeremoveprotcheck

Remove "file" protocol check
This commit is contained in:
Robert Osfield 2020-11-10 14:13:26 +00:00 committed by GitHub
commit b8982224c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -897,8 +897,6 @@ std::string daeReader::processImagePath(const domImage* pDomImage) const
if (pDomImage->getInit_from())
{
pDomImage->getInit_from()->getValue().validate();
if (strcmp(pDomImage->getInit_from()->getValue().getProtocol(), "file") == 0)
{
std::string path = pDomImage->getInit_from()->getValue().pathDir() +
pDomImage->getInit_from()->getValue().pathFile();
path = ReaderWriterDAE::ConvertColladaCompatibleURIToFilePath(path);
@ -915,11 +913,6 @@ std::string daeReader::processImagePath(const domImage* pDomImage) const
return path;
}
else
{
OSG_WARN << "Only images with a \"file\" scheme URI are supported in this version." << std::endl;
}
}
else
{
OSG_WARN << "Embedded image data is not supported in this version." << std::endl;
}