LaikaStudios / shading-library

Production Shading Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Production Shading Library

The Production Shading Library refers to Laika's entire collection of VFX production shading capabilities. This repository will contain those portions of Laika's Production Shading Library that have been released as open source.

This release contains a set of shading nodes based on Pixar's RenderMan that provide:

Please use the Discussions tab to provide any feedback or to initiate any other dialog about this repository.

Requirements

Documentation

Documentation is on the wiki page.

Building Instructions

The Production Shading Library at Laika is developed in a Linux environment. Specifically, Fedora. This initial release does not contain any facilities for building in other operating system environments. That said, as long as the necessary c++ compatible compiler and make and rsync commands are available, it should be trivial to build the shading-library code on other platforms.

To build the contents, execute

make clean; make

in your local checkout directory of the shading-library. This will put the built contents into a build sub-directory.

Environment

Assuming you checked out this git repository to ~/shading-library and have built it, katana's execution environment should have the following environment variables set. Make any alterations necessary for your specific set of software.

Using bash shell:

# Shading-library installation location.
export SHADING_LIBRARY="${HOME}/shading-library"

# Pixar installation location.
export PIXAR_ROOT="/opt/pixar"

# RenderMan version.
export RMAN_MAJOR="23"
export RMAN_MINOR="2"
export RMAN_MICRO=""
export RMAN_VERSION="${RMAN_MAJOR}.${RMAN_MINOR}${RMAN_MICRO}"

# Katana version.
export KATANA_MAJOR="3"
export KATANA_MINOR="2"
export KATANA_MICRO="v4"
export KATANA_SHORT_VERSION="${KATANA_MAJOR}.${KATANA_MINOR}"

# RenderMan and shading-library software locations.
export RMANTREE="${PIXAR_ROOT}/RenderManProServer-${RMAN_VERSION}"
export RFK_LOCATION="${PIXAR_ROOT}/RenderManForKatana-${RMAN_VERSION}-katana${KATANA_SHORT_VERSION}"
export RMAN_RIXPLUGINPATH="${SHADING_LIBRARY}/build:${RMANTREE}/lib/plugins"
export RMAN_SHADERPATH="${SHADING_LIBRARY}/build:${RMANTREE}/lib/plugins:${RMANTREE}/lib/shaders"

# Katana resource locations.
export KATANA_RESOURCES="${RFK_LOCATION}/plugins/Resources/PRMan${RMAN_MAJOR}:${SHADING_LIBRARY}/katana"

License

Licensed under either of

at your option.

About

Production Shading Library

License:Apache License 2.0


Languages

Language:C 74.3%Language:C++ 17.3%Language:Python 4.5%Language:Makefile 3.1%Language:Shell 0.8%