Remove protocol check

This commit is contained in:
Nelsson Huotari 2020-07-01 12:44:43 +03:00
parent 46505f66d3
commit e1e6e07de3

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;
}