Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve UsdImagingDelegate performance when editing many instances of the same prototype #1608

Commits on Aug 30, 2021

  1. Address a performance issue when applying a large number of edits to

    instanceable references of the same prototype. The TrackVariability call
    is O(n) on the number of instances, and it was being called for each
    modified instance, resulting in O(n^2) cost to such an edit. This change
    globally keeps track of all paths for which we call TrackVariability as
    part of an update to avoid calling it more than once for any particular
    primitive.
    marktucker committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    f85afd6 View commit details
    Browse the repository at this point in the history