├── .gitignore ├── License.txt ├── README.md ├── dist ├── PxrBump2RoughnessMake.oso └── PxrBump2RoughnessRead.oso ├── docs ├── anisotropy_test01.png └── node_connection.png └── src ├── PxrBump2Roughness.h ├── PxrBump2RoughnessRead.osl ├── PxrManifold.h ├── PxrTexture.h ├── deprecated └── PxrBump2RoughnessMake.osl └── not_implemented_yet └── PxrTriplanarBump2Roughness.osl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/README.md -------------------------------------------------------------------------------- /dist/PxrBump2RoughnessMake.oso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/dist/PxrBump2RoughnessMake.oso -------------------------------------------------------------------------------- /dist/PxrBump2RoughnessRead.oso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/dist/PxrBump2RoughnessRead.oso -------------------------------------------------------------------------------- /docs/anisotropy_test01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/docs/anisotropy_test01.png -------------------------------------------------------------------------------- /docs/node_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/docs/node_connection.png -------------------------------------------------------------------------------- /src/PxrBump2Roughness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/src/PxrBump2Roughness.h -------------------------------------------------------------------------------- /src/PxrBump2RoughnessRead.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/src/PxrBump2RoughnessRead.osl -------------------------------------------------------------------------------- /src/PxrManifold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/src/PxrManifold.h -------------------------------------------------------------------------------- /src/PxrTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/src/PxrTexture.h -------------------------------------------------------------------------------- /src/deprecated/PxrBump2RoughnessMake.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/src/deprecated/PxrBump2RoughnessMake.osl -------------------------------------------------------------------------------- /src/not_implemented_yet/PxrTriplanarBump2Roughness.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpelgrims/b2r/HEAD/src/not_implemented_yet/PxrTriplanarBump2Roughness.osl --------------------------------------------------------------------------------