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

SConstruct : Add Windows libraries for Cycles GPU rendering #5761

Merged
merged 3 commits into from
Apr 8, 2024

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    2eae8de View commit details
    Browse the repository at this point in the history
  2. GafferCyclesModule : Call ccl::path_init()

    Because we're linking to static Cycles libraries, any static variables
    will be local to that instance of the linked library. By calling
    `IECoreCycles::init()`, we were registering the Cycles root directory
    with the library linked to `IECoreCycles` / `GafferCycles`. That meant
    `GafferCycles` _module_ was not registering the Cycles root, and
    GPU devices would fail to initialize because it could not find their
    binary compilers. Registering the Cycles root in both modules allows
    all Cycles library instances to find the files it needs.
    ericmehl committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    b5834f6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    13db05a View commit details
    Browse the repository at this point in the history