├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── CMakeLists.txt ├── README.md ├── Source ├── ExMesh.cpp ├── ExRenderBuffer.cpp ├── ExRenderDelegate.cpp ├── ExRenderPass.cpp ├── ExRendererPlugin.cpp ├── Include │ └── ExampleDelegate │ │ ├── ExMesh.h │ │ ├── ExRenderBuffer.h │ │ ├── ExRenderDelegate.h │ │ ├── ExRenderPass.h │ │ ├── ExRendererPlugin.h │ │ ├── PxrUsage.h │ │ └── StbUsage.h ├── PxrUsage.cpp ├── StbUsage.cpp └── plugInfo.json ├── StandaloneTest ├── CMakeLists.txt └── StandaloneTest.cpp ├── vcpkg-configuration.json └── vcpkg.json /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .DS_Store 3 | .vs 4 | .idea -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/README.md -------------------------------------------------------------------------------- /Source/ExMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/ExMesh.cpp -------------------------------------------------------------------------------- /Source/ExRenderBuffer.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /Source/ExRenderDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/ExRenderDelegate.cpp -------------------------------------------------------------------------------- /Source/ExRenderPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/ExRenderPass.cpp -------------------------------------------------------------------------------- /Source/ExRendererPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/ExRendererPlugin.cpp -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/ExMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/ExMesh.h -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/ExRenderBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/ExRenderBuffer.h -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/ExRenderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/ExRenderDelegate.h -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/ExRenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/ExRenderPass.h -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/ExRendererPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/ExRendererPlugin.h -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/PxrUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/PxrUsage.h -------------------------------------------------------------------------------- /Source/Include/ExampleDelegate/StbUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/Include/ExampleDelegate/StbUsage.h -------------------------------------------------------------------------------- /Source/PxrUsage.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /Source/StbUsage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/StbUsage.cpp -------------------------------------------------------------------------------- /Source/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/Source/plugInfo.json -------------------------------------------------------------------------------- /StandaloneTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/StandaloneTest/CMakeLists.txt -------------------------------------------------------------------------------- /StandaloneTest/StandaloneTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/StandaloneTest/StandaloneTest.cpp -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsaiej/ExampleHydraRenderDelegate/HEAD/vcpkg.json --------------------------------------------------------------------------------