~neon/qt/quick3d

« back to all changes in this revision

Viewing changes to 3rdparty/assimp/code/RawLoader.cpp

  • Committer: Qt by Nokia
  • Author(s): Sergey Dubitskiy
  • Date: 2012-01-24 23:46:01 UTC
  • Revision ID: git-v1:4f3b9edab3b59b6ea150d65c5357f50174cbdd73
Upgrade to AssImp library v2.0.863.

Also includes a new example.

Task-number: QTBUG-22194.

Change-Id: I8870edadff58f8103e3645574b635a3b83ce1d98
Reviewed-by: Danny Pope <daniel.pope@nokia.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
// ------------------------------------------------------------------------------------------------
67
67
// Returns whether the class can handle the format of the given file.
68
 
bool RAWImporter::CanRead( const std::string& pFile, IOSystem* /*pIOHandler*/, bool /*checkSig*/) const
 
68
bool RAWImporter::CanRead( const std::string& pFile, IOSystem* pIOHandler, bool checkSig) const
69
69
{
70
70
    return SimpleExtensionCheck(pFile,"raw");
71
71
}