You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting crashes when attempting to load bundled OpenGEX models. Reason appears to be that when iterating in OpenGEXImporter::resolveReferences(), this line is failing:
node->mMeshes[i] = meshIdx;
because i greater than or equal to value of node->mNumMeshes.
Can easily observe this problem by adding logging around that line in OpenGEXImporter::resolveReferences() e.g.
if (i < node->mNumMeshes) {
node->mMeshes[i] = meshIdx;
// Log success...
} else {
// Log failure...
}
tellypresence
changed the title
[OpenGEX] Errors loading bundled test 3D model files
[OpenGEX] Crash when attempt load bundled test OpenGEX 3D model files
Mar 18, 2025
Getting crashes when attempting to load bundled OpenGEX models. Reason appears to be that when iterating in
OpenGEXImporter::resolveReferences()
, this line is failing:because
i
greater than or equal to value ofnode->mNumMeshes
.Can easily observe this problem by adding logging around that line in
OpenGEXImporter::resolveReferences()
e.g.Affected models:
The text was updated successfully, but these errors were encountered: