├── .appveyor.yml ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── BUILDING.md ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── USD_CLA_Corporate.pdf ├── USD_CLA_Individual.pdf ├── cmake ├── defaults │ ├── CXXDefaults.cmake │ ├── CXXHelpers.cmake │ ├── Options.cmake │ ├── Packages.cmake │ ├── ProjectDefaults.cmake │ ├── Version.cmake │ ├── clangdefaults.cmake │ ├── gccclangshareddefaults.cmake │ ├── gccdefaults.cmake │ └── msvcdefaults.cmake ├── macros │ ├── Private.cmake │ ├── Public.cmake │ ├── compilePython.py │ ├── copyHeaderForBuild.cmake │ ├── generateDocs.py │ ├── shebang.py │ └── testWrapper.py └── modules │ ├── FindAlembic.cmake │ ├── FindEmbree.cmake │ ├── FindGLEW.cmake │ ├── FindHoudini.cmake │ ├── FindJinja2.cmake │ ├── FindKatanaAPI.cmake │ ├── FindMaterialX.cmake │ ├── FindMaya.cmake │ ├── FindOSL.cmake │ ├── FindOpenColorIO.cmake │ ├── FindOpenEXR.cmake │ ├── FindOpenImageIO.cmake │ ├── FindOpenSubdiv.cmake │ ├── FindPTex.cmake │ ├── FindPyOpenGL.cmake │ ├── FindPySide.cmake │ ├── FindRenderman.cmake │ └── FindTBB.cmake ├── extras ├── CMakeLists.txt └── usd │ ├── CMakeLists.txt │ ├── examples │ ├── CMakeLists.txt │ ├── usdDancingCubesExample │ │ ├── CMakeLists.txt │ │ ├── dancingCubes.usda │ │ ├── data.cpp │ │ ├── data.h │ │ ├── dataImpl.cpp │ │ ├── dataImpl.h │ │ ├── empty.usddancingcubesexample │ │ ├── fileFormat.cpp │ │ ├── fileFormat.h │ │ ├── overview.dox │ │ └── plugInfo.json │ ├── usdGeomExamples │ │ └── basisCurves.usda │ ├── usdMakeFileVariantModelAsset │ │ ├── CMakeLists.txt │ │ └── usdMakeFileVariantModelAsset.py │ ├── usdObj │ │ ├── CMakeLists.txt │ │ ├── fileFormat.cpp │ │ ├── fileFormat.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── stream.cpp │ │ ├── stream.h │ │ ├── streamIO.cpp │ │ ├── streamIO.h │ │ ├── teapot.obj │ │ ├── translator.cpp │ │ └── translator.h │ ├── usdRecursivePayloadsExample │ │ ├── CMakeLists.txt │ │ ├── cone.usdrecursivepayloadsexample │ │ ├── fileFormat.cpp │ │ ├── fileFormat.h │ │ ├── overview.dox │ │ ├── params.usda │ │ ├── payload.usda │ │ ├── plugInfo.json │ │ ├── root.usda │ │ └── sphere.usdrecursivepayloadsexample │ ├── usdSchemaExamples │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── complex.cpp │ │ ├── complex.h │ │ ├── generatedSchema.usda │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── paramsAPI.cpp │ │ ├── paramsAPI.h │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── schema.usda │ │ ├── simple.cpp │ │ ├── simple.h │ │ ├── tokens.cpp │ │ ├── tokens.h │ │ ├── wrapComplex.cpp │ │ ├── wrapParamsAPI.cpp │ │ ├── wrapSimple.cpp │ │ └── wrapTokens.cpp │ └── usdviewPlugins │ │ └── sendMail.py │ └── tutorials │ ├── CMakeLists.txt │ ├── Houdini │ ├── OVR_house.usda │ ├── OVR_shot.usda │ ├── Toaster.usd │ ├── assets │ │ ├── World.usda │ │ ├── blue_house.usdc │ │ ├── camera.usda │ │ ├── clouds.usdc │ │ ├── house.usdc │ │ ├── house_proxy.usdc │ │ ├── lil_cloud.usdc │ │ └── terrain.usdc │ ├── examples.hip │ ├── overlay_tutorial.hip │ ├── rocks.usd │ ├── shot.usda │ ├── shot_clean.usda │ └── shot_import.usda │ ├── README.md │ ├── animatedTop │ ├── generate_examples.py │ └── top.geom.usd │ ├── authoringProperties │ ├── CMakeLists.txt │ ├── HelloWorld.usda │ └── authorProperties.py │ ├── authoringVariants │ ├── CMakeLists.txt │ ├── HelloWorld.usda │ └── authorVariants.py │ ├── convertingLayerFormats │ ├── CMakeLists.txt │ ├── Sphere.usd │ └── Sphere.usda │ ├── endToEnd │ ├── CMakeLists.txt │ ├── assets │ │ ├── Ball │ │ │ ├── Ball.ma │ │ │ ├── Ball.maya.usd │ │ │ ├── Ball.shadingVariants.usda │ │ │ ├── Ball.usd │ │ │ └── tex │ │ │ │ ├── ball1.jpg │ │ │ │ ├── ball1.tex │ │ │ │ ├── ball4.jpg │ │ │ │ ├── ball4.tex │ │ │ │ ├── ball8.jpg │ │ │ │ ├── ball8.tex │ │ │ │ ├── ball9.jpg │ │ │ │ ├── ball9.tex │ │ │ │ ├── ballCue.jpg │ │ │ │ ├── ballCue.tex │ │ │ │ └── makeTex │ │ ├── Table │ │ │ ├── Table.ma │ │ │ ├── Table.maya.usd │ │ │ └── Table.usd │ │ ├── main_cam.usd │ │ ├── render.exr │ │ ├── shot.usd │ │ └── simple.katana │ ├── scripts │ │ ├── create_asset.py │ │ └── create_shot.py │ └── tutorial_scripts │ │ ├── add_set_to_s00.py │ │ ├── add_shadingVariants.py │ │ ├── anim_shot_s00_01.py │ │ ├── create_Room_set.py │ │ └── layout_shot_s00_01.py │ ├── exampleModelingVariantsKatana │ ├── CMakeLists.txt │ ├── ExampleModelingVariants.geom.usd │ ├── ExampleModelingVariants.shading.usd │ ├── ExampleModelingVariants.usd │ ├── ExampleModelingVariants_payload.usd │ ├── ExampleModelingVariants_slim.gen.usd │ └── exampleModelingVariants.katana │ ├── helloWorld │ ├── CMakeLists.txt │ ├── helloWorld.py │ └── helloWorldRedux.py │ ├── referencingLayers │ ├── CMakeLists.txt │ ├── HelloWorld.usda │ └── authorReferences.py │ ├── simpleShading │ ├── USDLogoLrg.png │ └── generate_simpleShading.py │ └── traversingStage │ ├── CMakeLists.txt │ ├── HelloWorld.usda │ ├── RefExample.usda │ └── traversingStage.py ├── pxr ├── CMakeLists.txt ├── base │ ├── CMakeLists.txt │ └── lib │ │ ├── CMakeLists.txt │ │ ├── arch │ │ ├── CMakeLists.txt │ │ ├── align.h │ │ ├── api.h │ │ ├── assumptions.cpp │ │ ├── attributes.cpp │ │ ├── attributes.h │ │ ├── buildMode.h │ │ ├── daemon.cpp │ │ ├── daemon.h │ │ ├── debugger.cpp │ │ ├── debugger.h │ │ ├── defines.h │ │ ├── demangle.cpp │ │ ├── demangle.h │ │ ├── env.cpp │ │ ├── env.h │ │ ├── errno.cpp │ │ ├── errno.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── export.h │ │ ├── fileSystem.cpp │ │ ├── fileSystem.h │ │ ├── function.cpp │ │ ├── function.h │ │ ├── functionLite.h │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── hints.h │ │ ├── initConfig.cpp │ │ ├── inttypes.h │ │ ├── library.cpp │ │ ├── library.h │ │ ├── mallocHook.cpp │ │ ├── mallocHook.h │ │ ├── math.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── pragmas.h │ │ ├── regex.cpp │ │ ├── regex.h │ │ ├── stackTrace.cpp │ │ ├── stackTrace.h │ │ ├── symbols.cpp │ │ ├── symbols.h │ │ ├── systemInfo.cpp │ │ ├── systemInfo.h │ │ ├── testArchAbi.h │ │ ├── testArchUtil.h │ │ ├── testenv │ │ │ ├── testArchAbi.cpp │ │ │ ├── testArchAbiPlugin.cpp │ │ │ ├── testArchUtil.cpp │ │ │ ├── testAttributes.cpp │ │ │ ├── testDemangle.cpp │ │ │ ├── testErrno.cpp │ │ │ ├── testError.cpp │ │ │ ├── testFileSystem.cpp │ │ │ ├── testFunction.cpp │ │ │ ├── testStackTrace.cpp │ │ │ ├── testSymbols.cpp │ │ │ ├── testSystemInfo.cpp │ │ │ ├── testThreads.cpp │ │ │ ├── testTiming.cpp │ │ │ └── testVsnprintf.cpp │ │ ├── threads.cpp │ │ ├── threads.h │ │ ├── timing.cpp │ │ ├── timing.h │ │ ├── virtualMemory.cpp │ │ ├── virtualMemory.h │ │ ├── vsnprintf.cpp │ │ └── vsnprintf.h │ │ ├── gf │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── bbox3d.cpp │ │ ├── bbox3d.h │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── declare.h │ │ ├── frustum.cpp │ │ ├── frustum.h │ │ ├── gamma.cpp │ │ ├── gamma.h │ │ ├── gfGenCode.py │ │ ├── half.cpp │ │ ├── half.h │ │ ├── homogeneous.cpp │ │ ├── homogeneous.h │ │ ├── ilmbase_eLut.h │ │ ├── ilmbase_half.README │ │ ├── ilmbase_half.cpp │ │ ├── ilmbase_half.h │ │ ├── ilmbase_half.patch │ │ ├── ilmbase_halfLimits.h │ │ ├── ilmbase_toFloat.h │ │ ├── interval.cpp │ │ ├── interval.h │ │ ├── limits.h │ │ ├── line.cpp │ │ ├── line.h │ │ ├── line2d.cpp │ │ ├── line2d.h │ │ ├── lineSeg.cpp │ │ ├── lineSeg.h │ │ ├── lineSeg2d.cpp │ │ ├── lineSeg2d.h │ │ ├── math.cpp │ │ ├── math.h │ │ ├── matrix.template.cpp │ │ ├── matrix.template.h │ │ ├── matrix2.template.cpp │ │ ├── matrix2.template.h │ │ ├── matrix2d.cpp │ │ ├── matrix2d.h │ │ ├── matrix2f.cpp │ │ ├── matrix2f.h │ │ ├── matrix3.template.cpp │ │ ├── matrix3.template.h │ │ ├── matrix3d.cpp │ │ ├── matrix3d.h │ │ ├── matrix3f.cpp │ │ ├── matrix3f.h │ │ ├── matrix4.template.cpp │ │ ├── matrix4.template.h │ │ ├── matrix4d.cpp │ │ ├── matrix4d.h │ │ ├── matrix4f.cpp │ │ ├── matrix4f.h │ │ ├── matrixData.cpp │ │ ├── matrixData.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── multiInterval.cpp │ │ ├── multiInterval.h │ │ ├── ostreamHelpers.cpp │ │ ├── ostreamHelpers.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── plane.cpp │ │ ├── plane.h │ │ ├── pyBufferUtils.cpp │ │ ├── pyBufferUtils.h │ │ ├── quat.template.cpp │ │ ├── quat.template.h │ │ ├── quatd.cpp │ │ ├── quatd.h │ │ ├── quaternion.cpp │ │ ├── quaternion.h │ │ ├── quatf.cpp │ │ ├── quatf.h │ │ ├── quath.cpp │ │ ├── quath.h │ │ ├── range.template.cpp │ │ ├── range.template.h │ │ ├── range1d.cpp │ │ ├── range1d.h │ │ ├── range1f.cpp │ │ ├── range1f.h │ │ ├── range2d.cpp │ │ ├── range2d.h │ │ ├── range2f.cpp │ │ ├── range2f.h │ │ ├── range3d.cpp │ │ ├── range3d.h │ │ ├── range3f.cpp │ │ ├── range3f.h │ │ ├── ray.cpp │ │ ├── ray.h │ │ ├── rect2i.cpp │ │ ├── rect2i.h │ │ ├── rotation.cpp │ │ ├── rotation.h │ │ ├── size2.cpp │ │ ├── size2.h │ │ ├── size3.cpp │ │ ├── size3.h │ │ ├── testenv │ │ │ ├── testGfBBox3d.py │ │ │ ├── testGfCamera.py │ │ │ ├── testGfDecomposeRotation.py │ │ │ ├── testGfFrustum.py │ │ │ ├── testGfGamma.py │ │ │ ├── testGfHardToReach.cpp │ │ │ ├── testGfHomogeneous.py │ │ │ ├── testGfInterval.py │ │ │ ├── testGfIntervalSet.py │ │ │ ├── testGfLine.py │ │ │ ├── testGfLineSeg.py │ │ │ ├── testGfMath.py │ │ │ ├── testGfMatrix.py │ │ │ ├── testGfMultiInterval.py │ │ │ ├── testGfPlane.py │ │ │ ├── testGfQuaternion.py │ │ │ ├── testGfRange.py │ │ │ ├── testGfRay.py │ │ │ ├── testGfRect2i.py │ │ │ ├── testGfRotation.py │ │ │ ├── testGfSize.py │ │ │ ├── testGfTransform.py │ │ │ └── testGfVec.py │ │ ├── traits.h │ │ ├── transform.cpp │ │ ├── transform.h │ │ ├── vec.template.cpp │ │ ├── vec.template.h │ │ ├── vec2d.cpp │ │ ├── vec2d.h │ │ ├── vec2f.cpp │ │ ├── vec2f.h │ │ ├── vec2h.cpp │ │ ├── vec2h.h │ │ ├── vec2i.cpp │ │ ├── vec2i.h │ │ ├── vec3d.cpp │ │ ├── vec3d.h │ │ ├── vec3f.cpp │ │ ├── vec3f.h │ │ ├── vec3h.cpp │ │ ├── vec3h.h │ │ ├── vec3i.cpp │ │ ├── vec3i.h │ │ ├── vec4d.cpp │ │ ├── vec4d.h │ │ ├── vec4f.cpp │ │ ├── vec4f.h │ │ ├── vec4h.cpp │ │ ├── vec4h.h │ │ ├── vec4i.cpp │ │ ├── vec4i.h │ │ ├── wrapBBox3d.cpp │ │ ├── wrapCamera.cpp │ │ ├── wrapFrustum.cpp │ │ ├── wrapGamma.cpp │ │ ├── wrapHalf.cpp │ │ ├── wrapHomogeneous.cpp │ │ ├── wrapInterval.cpp │ │ ├── wrapLimits.cpp │ │ ├── wrapLine.cpp │ │ ├── wrapLineSeg.cpp │ │ ├── wrapMath.cpp │ │ ├── wrapMatrix.template.cpp │ │ ├── wrapMatrix2.template.cpp │ │ ├── wrapMatrix2d.cpp │ │ ├── wrapMatrix2f.cpp │ │ ├── wrapMatrix3.template.cpp │ │ ├── wrapMatrix3d.cpp │ │ ├── wrapMatrix3f.cpp │ │ ├── wrapMatrix4.template.cpp │ │ ├── wrapMatrix4d.cpp │ │ ├── wrapMatrix4f.cpp │ │ ├── wrapMultiInterval.cpp │ │ ├── wrapPlane.cpp │ │ ├── wrapQuat.template.cpp │ │ ├── wrapQuatd.cpp │ │ ├── wrapQuaternion.cpp │ │ ├── wrapQuatf.cpp │ │ ├── wrapQuath.cpp │ │ ├── wrapRange.template.cpp │ │ ├── wrapRange1d.cpp │ │ ├── wrapRange1f.cpp │ │ ├── wrapRange2d.cpp │ │ ├── wrapRange2f.cpp │ │ ├── wrapRange3d.cpp │ │ ├── wrapRange3f.cpp │ │ ├── wrapRay.cpp │ │ ├── wrapRect2i.cpp │ │ ├── wrapRotation.cpp │ │ ├── wrapSize2.cpp │ │ ├── wrapSize3.cpp │ │ ├── wrapTransform.cpp │ │ ├── wrapVec.template.cpp │ │ ├── wrapVec2d.cpp │ │ ├── wrapVec2f.cpp │ │ ├── wrapVec2h.cpp │ │ ├── wrapVec2i.cpp │ │ ├── wrapVec3d.cpp │ │ ├── wrapVec3f.cpp │ │ ├── wrapVec3h.cpp │ │ ├── wrapVec3i.cpp │ │ ├── wrapVec4d.cpp │ │ ├── wrapVec4f.cpp │ │ ├── wrapVec4h.cpp │ │ └── wrapVec4i.cpp │ │ ├── js │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── converter.h │ │ ├── json.cpp │ │ ├── json.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── rapidjson │ │ │ ├── allocators.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ ├── testenv │ │ │ ├── testJsConverter.cpp │ │ │ ├── testJsConverter │ │ │ │ └── values.json │ │ │ ├── testJsDouble.cpp │ │ │ ├── testJsIO.cpp │ │ │ ├── testJsIO │ │ │ │ ├── baseline │ │ │ │ │ ├── plugInfo.json │ │ │ │ │ └── values.json │ │ │ │ ├── plugInfo.json.in │ │ │ │ └── values.json.in │ │ │ ├── testJsIO_Errors │ │ │ │ ├── bad-commaPlacement.json │ │ │ │ ├── bad-mismatchedBraces.json │ │ │ │ └── baseline │ │ │ │ │ ├── testJsIO_Errors-Run1-stderr.txt │ │ │ │ │ └── testJsIO_Errors-Run2-stderr.txt │ │ │ ├── testJsUtils.cpp │ │ │ ├── testJsWriter.cpp │ │ │ └── testJsWriter │ │ │ │ └── baseline │ │ │ │ ├── test-pretty.json │ │ │ │ └── test.json │ │ ├── types.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── value.cpp │ │ └── value.h │ │ ├── plug │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── info.cpp │ │ ├── info.h │ │ ├── initConfig.cpp │ │ ├── interfaceFactory.cpp │ │ ├── interfaceFactory.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── notice.cpp │ │ ├── notice.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── plugin.cpp │ │ ├── plugin.h │ │ ├── registry.cpp │ │ ├── registry.h │ │ ├── staticInterface.cpp │ │ ├── staticInterface.h │ │ ├── testPlug.py │ │ ├── testPlugBase.cpp │ │ ├── testPlugBase.h │ │ ├── testenv │ │ │ ├── TestPlugDso1.cpp │ │ │ ├── TestPlugDso1_plugInfo.json │ │ │ ├── TestPlugDso2.cpp │ │ │ ├── TestPlugDso2_plugInfo.json │ │ │ ├── TestPlugDso3.cpp │ │ │ ├── TestPlugDso3_plugInfo.json │ │ │ ├── TestPlugDsoEmpty.cpp │ │ │ ├── TestPlugDsoEmpty_plugInfo.json │ │ │ ├── TestPlugDsoIncomplete.cpp │ │ │ ├── TestPlugDsoUnloadable.cpp │ │ │ ├── TestPlugDsoUnloadable_plugInfo.json │ │ │ ├── TestPlugModule1__init__.py │ │ │ ├── TestPlugModule1_plugInfo.json │ │ │ ├── TestPlugModule2__init__.py │ │ │ ├── TestPlugModule2_plugInfo.json │ │ │ ├── TestPlugModule3__init__.py │ │ │ ├── TestPlugModule3_plugInfo.json │ │ │ ├── TestPlugModuleDepBadBase__init__.py │ │ │ ├── TestPlugModuleDepBadBase_plugInfo.json │ │ │ ├── TestPlugModuleDepBadDep2__init__.py │ │ │ ├── TestPlugModuleDepBadDep2_plugInfo.json │ │ │ ├── TestPlugModuleDepBadDep__init__.py │ │ │ ├── TestPlugModuleDepBadDep_plugInfo.json │ │ │ ├── TestPlugModuleDepBadLoad__init__.py │ │ │ ├── TestPlugModuleDepBadLoad_plugInfo.json │ │ │ ├── TestPlugModuleDepCycle__init__.py │ │ │ ├── TestPlugModuleDepCycle_plugInfo.json │ │ │ ├── TestPlugModuleEmpty__init__.py │ │ │ ├── TestPlugModuleEmpty_plugInfo.json │ │ │ ├── TestPlugModuleIncomplete__init__.py │ │ │ ├── TestPlugModuleLoadedBadBase__init__.py │ │ │ ├── TestPlugModuleLoadedBadBase_plugInfo.json │ │ │ ├── TestPlugModuleLoaded__init__.py │ │ │ ├── TestPlugModuleLoaded_plugInfo.json │ │ │ ├── TestPlugModuleUnloadable2__init__.py │ │ │ ├── TestPlugModuleUnloadable2_plugInfo.json │ │ │ ├── TestPlugModuleUnloadable__init__.py │ │ │ ├── TestPlugModuleUnloadable_plugInfo.json │ │ │ └── testPlugPixver.cpp │ │ ├── thisPlugin.h │ │ ├── wrapNotice.cpp │ │ ├── wrapPlugin.cpp │ │ ├── wrapRegistry.cpp │ │ └── wrapTestPlugBase.cpp │ │ ├── tf │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── anyUniquePtr.cpp │ │ ├── anyUniquePtr.h │ │ ├── anyWeakPtr.cpp │ │ ├── anyWeakPtr.h │ │ ├── api.h │ │ ├── atomicOfstreamWrapper.cpp │ │ ├── atomicOfstreamWrapper.h │ │ ├── atomicRenameUtil.cpp │ │ ├── atomicRenameUtil.h │ │ ├── bitUtils.cpp │ │ ├── bitUtils.h │ │ ├── callContext.h │ │ ├── cxxCast.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── debugNotice.cpp │ │ ├── debugNotice.h │ │ ├── declarePtrs.h │ │ ├── denseHashMap.cpp │ │ ├── denseHashMap.h │ │ ├── denseHashSet.cpp │ │ ├── denseHashSet.h │ │ ├── diagnostic.cpp │ │ ├── diagnostic.h │ │ ├── diagnosticBase.cpp │ │ ├── diagnosticBase.h │ │ ├── diagnosticHelper.cpp │ │ ├── diagnosticHelper.h │ │ ├── diagnosticLite.h │ │ ├── diagnosticMgr.cpp │ │ ├── diagnosticMgr.h │ │ ├── diagnosticOverview.dox │ │ ├── dl.cpp │ │ ├── dl.h │ │ ├── enum.cpp │ │ ├── enum.h │ │ ├── envSetting.cpp │ │ ├── envSetting.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── errorMark.cpp │ │ ├── errorMark.h │ │ ├── errorOverview.dox │ │ ├── errorTransport.cpp │ │ ├── errorTransport.h │ │ ├── expiryNotifier.cpp │ │ ├── expiryNotifier.h │ │ ├── fastCompression.cpp │ │ ├── fastCompression.h │ │ ├── fileUtils.cpp │ │ ├── fileUtils.h │ │ ├── getenv.cpp │ │ ├── getenv.h │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── hashmap.h │ │ ├── hashset.h │ │ ├── initConfig.cpp │ │ ├── instantiateSingleton.h │ │ ├── instantiateStacked.h │ │ ├── instantiateType.h │ │ ├── iterator.cpp │ │ ├── iterator.h │ │ ├── makePyConstructor.cpp │ │ ├── makePyConstructor.h │ │ ├── mallocTag.cpp │ │ ├── mallocTag.h │ │ ├── mallocTagOverview.dox │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── noteOverview.dox │ │ ├── notice.cpp │ │ ├── notice.h │ │ ├── noticeRegistry.cpp │ │ ├── noticeRegistry.h │ │ ├── nullPtr.cpp │ │ ├── nullPtr.h │ │ ├── ostreamMethods.cpp │ │ ├── ostreamMethods.h │ │ ├── overview.dox │ │ ├── pathUtils.cpp │ │ ├── pathUtils.h │ │ ├── patternMatcher.cpp │ │ ├── patternMatcher.h │ │ ├── pch.h │ │ ├── pointerAndBits.cpp │ │ ├── pointerAndBits.h │ │ ├── preprocessorUtils.cpp │ │ ├── preprocessorUtils.h │ │ ├── preprocessorUtilsLite.h │ │ ├── pxrDoubleConversion │ │ │ ├── README │ │ │ ├── bignum-dtoa.cc │ │ │ ├── bignum-dtoa.h │ │ │ ├── bignum.cc │ │ │ ├── bignum.h │ │ │ ├── cached-powers.cc │ │ │ ├── cached-powers.h │ │ │ ├── diy-fp.cc │ │ │ ├── diy-fp.h │ │ │ ├── double-conversion.cc │ │ │ ├── double-conversion.h │ │ │ ├── fast-dtoa.cc │ │ │ ├── fast-dtoa.h │ │ │ ├── fixed-dtoa.cc │ │ │ ├── fixed-dtoa.h │ │ │ ├── ieee.h │ │ │ ├── pxr-double-conversion.patch │ │ │ ├── strtod.cc │ │ │ ├── strtod.h │ │ │ └── utils.h │ │ ├── pxrLZ4 │ │ │ ├── README.md │ │ │ ├── lz4.cpp │ │ │ └── lz4.h │ │ ├── pyAnnotatedBoolResult.cpp │ │ ├── pyAnnotatedBoolResult.h │ │ ├── pyArg.cpp │ │ ├── pyArg.h │ │ ├── pyCall.cpp │ │ ├── pyCall.h │ │ ├── pyCallContext.cpp │ │ ├── pyCallContext.h │ │ ├── pyClassMethod.cpp │ │ ├── pyClassMethod.h │ │ ├── pyContainerConversions.cpp │ │ ├── pyContainerConversions.h │ │ ├── pyEnum.cpp │ │ ├── pyEnum.h │ │ ├── pyError.cpp │ │ ├── pyError.h │ │ ├── pyErrorInternal.cpp │ │ ├── pyErrorInternal.h │ │ ├── pyExceptionState.cpp │ │ ├── pyExceptionState.h │ │ ├── pyFunction.cpp │ │ ├── pyFunction.h │ │ ├── pyIdentity.cpp │ │ ├── pyIdentity.h │ │ ├── pyInterpreter.cpp │ │ ├── pyInterpreter.h │ │ ├── pyLock.cpp │ │ ├── pyLock.h │ │ ├── pyModule.cpp │ │ ├── pyModule.h │ │ ├── pyModuleNotice.cpp │ │ ├── pyModuleNotice.h │ │ ├── pyNoticeWrapper.cpp │ │ ├── pyNoticeWrapper.h │ │ ├── pyObjWrapper.cpp │ │ ├── pyObjWrapper.h │ │ ├── pyObjectFinder.cpp │ │ ├── pyObjectFinder.h │ │ ├── pyOptional.cpp │ │ ├── pyOptional.h │ │ ├── pyOverride.cpp │ │ ├── pyOverride.h │ │ ├── pyPolymorphic.cpp │ │ ├── pyPolymorphic.h │ │ ├── pyPtrHelpers.cpp │ │ ├── pyPtrHelpers.h │ │ ├── pyResultConversions.cpp │ │ ├── pyResultConversions.h │ │ ├── pySingleton.cpp │ │ ├── pySingleton.h │ │ ├── pyStaticTokens.h │ │ ├── pyTracing.cpp │ │ ├── pyTracing.h │ │ ├── pyUtils.cpp │ │ ├── pyUtils.h │ │ ├── pyWeakObject.cpp │ │ ├── pyWeakObject.h │ │ ├── pyWrapContext.cpp │ │ ├── pyWrapContext.h │ │ ├── refBase.cpp │ │ ├── refBase.h │ │ ├── refCount.cpp │ │ ├── refCount.h │ │ ├── refPtr.cpp │ │ ├── refPtr.h │ │ ├── refPtrTracker.cpp │ │ ├── refPtrTracker.h │ │ ├── regTest.cpp │ │ ├── regTest.h │ │ ├── registryManager.cpp │ │ ├── registryManager.h │ │ ├── registryOverview.dox │ │ ├── safeOutputFile.cpp │ │ ├── safeOutputFile.h │ │ ├── safeTypeCompare.h │ │ ├── scopeDescription.cpp │ │ ├── scopeDescription.h │ │ ├── scopeDescriptionPrivate.h │ │ ├── scoped.cpp │ │ ├── scoped.h │ │ ├── scriptModuleLoader.cpp │ │ ├── scriptModuleLoader.h │ │ ├── setenv.cpp │ │ ├── setenv.h │ │ ├── singleton.cpp │ │ ├── singleton.h │ │ ├── span.h │ │ ├── stackTrace.cpp │ │ ├── stackTrace.h │ │ ├── stacked.cpp │ │ ├── stacked.h │ │ ├── staticData.h │ │ ├── staticTokens.h │ │ ├── status.cpp │ │ ├── status.h │ │ ├── stl.cpp │ │ ├── stl.h │ │ ├── stopwatch.cpp │ │ ├── stopwatch.h │ │ ├── stringUtils.cpp │ │ ├── stringUtils.h │ │ ├── templateString.cpp │ │ ├── templateString.h │ │ ├── testenv │ │ │ ├── SIGFPE.cpp │ │ │ ├── SIGSEGV.cpp │ │ │ ├── SIGSEGV2.cpp │ │ │ ├── TestTfDl.cpp │ │ │ ├── TestTfRegistryFunctionPlugin.cpp │ │ │ ├── __init__.py │ │ │ ├── anyUniquePtr.cpp │ │ │ ├── atomicOfstreamWrapper.cpp │ │ │ ├── baseline │ │ │ │ ├── TfDebugTestEnv │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── debugTestEnv.out │ │ │ │ ├── TfDebugTestEnvList │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── debugTestEnvList.out │ │ │ │ ├── TfDelegate │ │ │ │ │ └── output.txt │ │ │ │ ├── TfDiagnosticNotice1 │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── diagnosticNotice1.out │ │ │ │ ├── TfDiagnosticNotice4 │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── diagnosticNotice4.out │ │ │ │ ├── TfEnum │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── enum.out │ │ │ │ ├── TfEnvSetting │ │ │ │ │ └── debugTfEnvSettingStderr.txt │ │ │ │ ├── TfFileUtils │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── TestTfWalkDirs-log.txt │ │ │ │ ├── TfNotice │ │ │ │ │ └── non-specific │ │ │ │ │ │ └── notice.out │ │ │ │ └── testTfScriptModuleLoader │ │ │ │ │ └── scriptModuleLoader.out │ │ │ ├── bitUtils.cpp │ │ │ ├── debug.cpp │ │ │ ├── delegate.cpp │ │ │ ├── denseHashMap.cpp │ │ │ ├── dl.cpp │ │ │ ├── enum.cpp │ │ │ ├── envSetting.cpp │ │ │ ├── error.cpp │ │ │ ├── fastCompression.cpp │ │ │ ├── fileUtils.cpp │ │ │ ├── getenv.cpp │ │ │ ├── hash.cpp │ │ │ ├── iterator.cpp │ │ │ ├── main.cpp │ │ │ ├── mallocTag.cpp │ │ │ ├── notice.cpp │ │ │ ├── pathUtils.cpp │ │ │ ├── patternMatcher.cpp │ │ │ ├── pointerAndBits.cpp │ │ │ ├── preprocessorUtils.cpp │ │ │ ├── probe.cpp │ │ │ ├── refPtr.cpp │ │ │ ├── registryManager.cpp │ │ │ ├── registryManagerUnload.cpp │ │ │ ├── safeOutputFile.cpp │ │ │ ├── scopeDescription.cpp │ │ │ ├── scoped.cpp │ │ │ ├── setenv.cpp │ │ │ ├── stacked.cpp │ │ │ ├── staticData.cpp │ │ │ ├── staticTokens.cpp │ │ │ ├── stl.cpp │ │ │ ├── stopwatch.cpp │ │ │ ├── stringUtils.cpp │ │ │ ├── templateString.cpp │ │ │ ├── testTfCast.cpp │ │ │ ├── testTfCrashHandler.py │ │ │ ├── testTfFileUtils.py │ │ │ ├── testTfNamedTemporaryFile.py │ │ │ ├── testTfPathUtils.py │ │ │ ├── testTfPyFunction.cpp │ │ │ ├── testTfPyInterpreter.cpp │ │ │ ├── testTfPyLock.cpp │ │ │ ├── testTfPyNotice.py │ │ │ ├── testTfPyOptional.py │ │ │ ├── testTfPyResultConversions.cpp │ │ │ ├── testTfPyScopeDescription.py │ │ │ ├── testTfPyStaticTokens.py │ │ │ ├── testTfPython.py │ │ │ ├── testTfScriptModuleLoader.py │ │ │ ├── testTfScriptModuleLoader_AAA_RaisesError.py │ │ │ ├── testTfScriptModuleLoader_DepLoadsAll.py │ │ │ ├── testTfScriptModuleLoader_LoadsAll.py │ │ │ ├── testTfScriptModuleLoader_LoadsUnknown.py │ │ │ ├── testTfScriptModuleLoader_Other.py │ │ │ ├── testTfScriptModuleLoader_Test.py │ │ │ ├── testTfScriptModuleLoader_Unknown.py │ │ │ ├── testTfSpan.cpp │ │ │ ├── testTfStringUtils.py │ │ │ ├── testTfTemplateString.py │ │ │ ├── testTfType.py │ │ │ ├── testTf_PyAnnotatedBoolResult.py │ │ │ ├── testTf_PyContainerConversions.py │ │ │ ├── testTf_PyPtrHolder.py │ │ │ ├── token.cpp │ │ │ ├── type.cpp │ │ │ ├── typeInfoMap.cpp │ │ │ ├── typeMultipleInheritance.cpp │ │ │ └── weakPtr.cpp │ │ ├── tf.cpp │ │ ├── tf.h │ │ ├── token.cpp │ │ ├── token.h │ │ ├── traits.cpp │ │ ├── traits.h │ │ ├── type.cpp │ │ ├── type.h │ │ ├── typeFunctions.cpp │ │ ├── typeFunctions.h │ │ ├── typeInfoMap.h │ │ ├── typeNotice.cpp │ │ ├── typeNotice.h │ │ ├── type_Impl.h │ │ ├── warning.cpp │ │ ├── warning.h │ │ ├── weakBase.cpp │ │ ├── weakBase.h │ │ ├── weakPtr.cpp │ │ ├── weakPtr.h │ │ ├── weakPtrFacade.cpp │ │ ├── weakPtrFacade.h │ │ ├── wrapAnyWeakPtr.cpp │ │ ├── wrapCallContext.cpp │ │ ├── wrapDebug.cpp │ │ ├── wrapDiagnostic.cpp │ │ ├── wrapDiagnosticBase.cpp │ │ ├── wrapEnum.cpp │ │ ├── wrapEnvSetting.cpp │ │ ├── wrapError.cpp │ │ ├── wrapFileUtils.cpp │ │ ├── wrapFunction.cpp │ │ ├── wrapMallocTag.cpp │ │ ├── wrapNotice.cpp │ │ ├── wrapPathUtils.cpp │ │ ├── wrapPyContainerConversions.cpp │ │ ├── wrapPyModuleNotice.cpp │ │ ├── wrapPyObjWrapper.cpp │ │ ├── wrapPyOptional.cpp │ │ ├── wrapRefPtrTracker.cpp │ │ ├── wrapScopeDescription.cpp │ │ ├── wrapScriptModuleLoader.cpp │ │ ├── wrapSingleton.cpp │ │ ├── wrapStackTrace.cpp │ │ ├── wrapStatus.cpp │ │ ├── wrapStopwatch.cpp │ │ ├── wrapStringUtils.cpp │ │ ├── wrapTemplateString.cpp │ │ ├── wrapTestPyAnnotatedBoolResult.cpp │ │ ├── wrapTestPyContainerConversions.cpp │ │ ├── wrapTestPyStaticTokens.cpp │ │ ├── wrapTestTfPyOptional.cpp │ │ ├── wrapTestTfPython.cpp │ │ ├── wrapToken.cpp │ │ ├── wrapType.cpp │ │ ├── wrapTypeHelpers.cpp │ │ ├── wrapTypeHelpers.h │ │ └── wrapWarning.cpp │ │ ├── trace │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── aggregateNode.cpp │ │ ├── aggregateNode.h │ │ ├── aggregateTree.cpp │ │ ├── aggregateTree.h │ │ ├── aggregateTreeBuilder.cpp │ │ ├── aggregateTreeBuilder.h │ │ ├── api.h │ │ ├── category.cpp │ │ ├── category.h │ │ ├── collection.cpp │ │ ├── collection.h │ │ ├── collectionNotice.cpp │ │ ├── collectionNotice.h │ │ ├── collector.cpp │ │ ├── collector.h │ │ ├── concurrentList.h │ │ ├── counterAccumulator.cpp │ │ ├── counterAccumulator.h │ │ ├── dataBuffer.cpp │ │ ├── dataBuffer.h │ │ ├── detailedOverview.dox │ │ ├── dynamicKey.cpp │ │ ├── dynamicKey.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── eventContainer.cpp │ │ ├── eventContainer.h │ │ ├── eventData.cpp │ │ ├── eventData.h │ │ ├── eventList.cpp │ │ ├── eventList.h │ │ ├── eventNode.cpp │ │ ├── eventNode.h │ │ ├── eventTree.cpp │ │ ├── eventTree.h │ │ ├── eventTreeBuilder.cpp │ │ ├── eventTreeBuilder.h │ │ ├── jsonSerialization.cpp │ │ ├── jsonSerialization.h │ │ ├── key.cpp │ │ ├── key.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── reporter.cpp │ │ ├── reporter.h │ │ ├── reporterBase.cpp │ │ ├── reporterBase.h │ │ ├── reporterDataSourceBase.cpp │ │ ├── reporterDataSourceBase.h │ │ ├── reporterDataSourceCollection.cpp │ │ ├── reporterDataSourceCollection.h │ │ ├── reporterDataSourceCollector.cpp │ │ ├── reporterDataSourceCollector.h │ │ ├── serialization.cpp │ │ ├── serialization.h │ │ ├── staticKeyData.cpp │ │ ├── staticKeyData.h │ │ ├── stringHash.h │ │ ├── testenv │ │ │ ├── testTrace.py │ │ │ ├── testTraceCategory.cpp │ │ │ ├── testTraceCounters.cpp │ │ │ ├── testTraceData.cpp │ │ │ ├── testTraceEventContainer.cpp │ │ │ ├── testTraceEventContainer.testenv │ │ │ │ └── baseline │ │ │ │ │ └── testTraceEventContainer-Run1-stdout.txt │ │ │ ├── testTraceHash.cpp │ │ │ ├── testTraceMacros.cpp │ │ │ ├── testTraceMarkers.cpp │ │ │ ├── testTraceOverhead.cpp │ │ │ ├── testTraceRecursion.py │ │ │ ├── testTraceRecursion.testenv │ │ │ │ └── baseline │ │ │ │ │ ├── recursion_1817.out │ │ │ │ │ ├── recursion_5begins.out │ │ │ │ │ ├── recursion_branch.out │ │ │ │ │ ├── recursion_inner.out │ │ │ │ │ ├── recursion_marker_merge.out │ │ │ │ │ ├── recursion_newnode.out │ │ │ │ │ ├── recursion_timing.out │ │ │ │ │ └── recursion_typical.out │ │ │ ├── testTraceReportPerf.cpp │ │ │ ├── testTraceReporter.py │ │ │ ├── testTraceReports.py │ │ │ ├── testTraceSerialization.cpp │ │ │ ├── testTraceSerialization.testenv │ │ │ │ └── baseline │ │ │ │ │ └── trace.json │ │ │ └── testTraceThreading.cpp │ │ ├── threads.cpp │ │ ├── threads.h │ │ ├── trace.h │ │ ├── wrapAggregateNode.cpp │ │ ├── wrapCollector.cpp │ │ ├── wrapReporter.cpp │ │ └── wrapTestTrace.cpp │ │ ├── vt │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── array.cpp │ │ ├── array.h │ │ ├── arrayPyBuffer.cpp │ │ ├── arrayPyBuffer.h │ │ ├── dictionary.cpp │ │ ├── dictionary.h │ │ ├── functions.cpp │ │ ├── functions.h │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── operators.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── pyOperators.h │ │ ├── streamOut.cpp │ │ ├── streamOut.h │ │ ├── testenv │ │ │ ├── testVtArray.py │ │ │ ├── testVtCpp.cpp │ │ │ ├── testVtFunctions.py │ │ │ └── testVtValue.py │ │ ├── traits.h │ │ ├── typeHeaders.h │ │ ├── types.cpp │ │ ├── types.h │ │ ├── value.cpp │ │ ├── value.h │ │ ├── valueFromPython.cpp │ │ ├── valueFromPython.h │ │ ├── wrapArray.cpp │ │ ├── wrapArray.h │ │ ├── wrapArrayBase.cpp │ │ ├── wrapArrayFloat.cpp │ │ ├── wrapArrayIntegral.cpp │ │ ├── wrapArrayMatrix.cpp │ │ ├── wrapArrayQuaternion.cpp │ │ ├── wrapArrayRange.cpp │ │ ├── wrapArrayString.cpp │ │ ├── wrapArrayToken.cpp │ │ ├── wrapArrayVec.cpp │ │ ├── wrapDictionary.cpp │ │ └── wrapValue.cpp │ │ └── work │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── arenaDispatcher.cpp │ │ ├── arenaDispatcher.h │ │ ├── detachedTask.cpp │ │ ├── detachedTask.h │ │ ├── dispatcher.cpp │ │ ├── dispatcher.h │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── loops.cpp │ │ ├── loops.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── reduce.cpp │ │ ├── reduce.h │ │ ├── singularTask.cpp │ │ ├── singularTask.h │ │ ├── sort.cpp │ │ ├── sort.h │ │ ├── testenv │ │ ├── testWorkDetachedTask.cpp │ │ ├── testWorkDispatcher.cpp │ │ ├── testWorkFilter.cpp │ │ ├── testWorkLoops.cpp │ │ ├── testWorkReduce.cpp │ │ ├── testWorkSort.cpp │ │ └── testWorkThreadLimits.cpp │ │ ├── threadLimits.cpp │ │ ├── threadLimits.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ └── wrapThreadLimits.cpp ├── imaging │ ├── CMakeLists.txt │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── cameraUtil │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── conformWindow.cpp │ │ │ ├── conformWindow.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── pch.h │ │ │ ├── screenWindowParameters.cpp │ │ │ ├── screenWindowParameters.h │ │ │ ├── testenv │ │ │ │ └── testCameraUtil.py │ │ │ ├── wrapConformWindow.cpp │ │ │ └── wrapScreenWindowParameters.cpp │ │ ├── garch │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── gl.h │ │ │ ├── glDebugWindow.cpp │ │ │ ├── glDebugWindow.h │ │ │ ├── glPlatformContext.h │ │ │ ├── glPlatformContextDarwin.h │ │ │ ├── glPlatformContextDarwin.mm │ │ │ ├── glPlatformContextGLX.cpp │ │ │ ├── glPlatformContextGLX.h │ │ │ ├── glPlatformContextWindows.cpp │ │ │ ├── glPlatformContextWindows.h │ │ │ ├── glPlatformDebugContext.cpp │ │ │ ├── glPlatformDebugContext.h │ │ │ ├── glPlatformDebugWindowDarwin.h │ │ │ ├── glPlatformDebugWindowDarwin.mm │ │ │ ├── glPlatformDebugWindowGLX.cpp │ │ │ ├── glPlatformDebugWindowGLX.h │ │ │ ├── glPlatformDebugWindowWindows.cpp │ │ │ ├── glPlatformDebugWindowWindows.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── pch.h │ │ │ └── wrapPlatformDebugContext.cpp │ │ ├── glf │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── arrayTexture.cpp │ │ │ ├── arrayTexture.h │ │ │ ├── baseTexture.cpp │ │ │ ├── baseTexture.h │ │ │ ├── baseTextureData.cpp │ │ │ ├── baseTextureData.h │ │ │ ├── bindingMap.cpp │ │ │ ├── bindingMap.h │ │ │ ├── contextCaps.cpp │ │ │ ├── contextCaps.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── diagnostic.cpp │ │ │ ├── diagnostic.h │ │ │ ├── drawTarget.cpp │ │ │ ├── drawTarget.h │ │ │ ├── glContext.cpp │ │ │ ├── glContext.h │ │ │ ├── glContextRegistry.cpp │ │ │ ├── glContextRegistry.h │ │ │ ├── glRawContext.cpp │ │ │ ├── glRawContext.h │ │ │ ├── glew.cpp │ │ │ ├── glew.h │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ ├── imageRegistry.cpp │ │ │ ├── imageRegistry.h │ │ │ ├── info.cpp │ │ │ ├── info.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── oiioImage.cpp │ │ │ ├── overview.dox │ │ │ ├── package.cpp │ │ │ ├── package.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── plugInfo_NoOIIO.json │ │ │ ├── ptexMipmapTextureLoader.cpp │ │ │ ├── ptexMipmapTextureLoader.h │ │ │ ├── ptexTexture.cpp │ │ │ ├── ptexTexture.h │ │ │ ├── rankedTypeMap.h │ │ │ ├── shaders │ │ │ │ ├── pcfShader.glslfx │ │ │ │ ├── ptexTexture.glslfx │ │ │ │ ├── simpleLighting.glslfx │ │ │ │ └── simpleShadowMapShader.glslfx │ │ │ ├── simpleLight.cpp │ │ │ ├── simpleLight.h │ │ │ ├── simpleLightingContext.cpp │ │ │ ├── simpleLightingContext.h │ │ │ ├── simpleMaterial.cpp │ │ │ ├── simpleMaterial.h │ │ │ ├── simpleShadowArray.cpp │ │ │ ├── simpleShadowArray.h │ │ │ ├── stb │ │ │ │ ├── README │ │ │ │ ├── stb_image.h │ │ │ │ ├── stb_image.patch │ │ │ │ ├── stb_image_resize.h │ │ │ │ ├── stb_image_write.h │ │ │ │ └── stb_image_write.patch │ │ │ ├── stbImage.cpp │ │ │ ├── testGLContext.cpp │ │ │ ├── testGLContext.h │ │ │ ├── texture.cpp │ │ │ ├── texture.h │ │ │ ├── textureHandle.cpp │ │ │ ├── textureHandle.h │ │ │ ├── textureRegistry.cpp │ │ │ ├── textureRegistry.h │ │ │ ├── udimTexture.cpp │ │ │ ├── udimTexture.h │ │ │ ├── uniformBlock.cpp │ │ │ ├── uniformBlock.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── uvTexture.cpp │ │ │ ├── uvTexture.h │ │ │ ├── uvTextureData.cpp │ │ │ ├── uvTextureData.h │ │ │ ├── uvTextureStorage.cpp │ │ │ ├── uvTextureStorage.h │ │ │ ├── uvTextureStorageData.cpp │ │ │ ├── uvTextureStorageData.h │ │ │ ├── wrapBaseTexture.cpp │ │ │ ├── wrapDiagnostic.cpp │ │ │ ├── wrapDrawTarget.cpp │ │ │ ├── wrapGlew.cpp │ │ │ ├── wrapSimpleLight.cpp │ │ │ ├── wrapSimpleMaterial.cpp │ │ │ ├── wrapTexture.cpp │ │ │ ├── wrapTextureRegistry.cpp │ │ │ ├── wrapUVTexture.cpp │ │ │ └── wrapUVTextureStorage.cpp │ │ ├── hd │ │ │ ├── CMakeLists.txt │ │ │ ├── aov.cpp │ │ │ ├── aov.h │ │ │ ├── api.h │ │ │ ├── basisCurves.cpp │ │ │ ├── basisCurves.h │ │ │ ├── basisCurvesTopology.cpp │ │ │ ├── basisCurvesTopology.h │ │ │ ├── binding.cpp │ │ │ ├── binding.h │ │ │ ├── bprim.cpp │ │ │ ├── bprim.h │ │ │ ├── bufferArray.cpp │ │ │ ├── bufferArray.h │ │ │ ├── bufferArrayRange.cpp │ │ │ ├── bufferArrayRange.h │ │ │ ├── bufferArrayRegistry.cpp │ │ │ ├── bufferArrayRegistry.h │ │ │ ├── bufferResource.cpp │ │ │ ├── bufferResource.h │ │ │ ├── bufferSource.cpp │ │ │ ├── bufferSource.h │ │ │ ├── bufferSpec.cpp │ │ │ ├── bufferSpec.h │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── changeTracker.cpp │ │ │ ├── changeTracker.h │ │ │ ├── compExtCompInputSource.cpp │ │ │ ├── compExtCompInputSource.h │ │ │ ├── computation.cpp │ │ │ ├── computation.h │ │ │ ├── coordSys.cpp │ │ │ ├── coordSys.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── dirtyList.cpp │ │ │ ├── dirtyList.h │ │ │ ├── drawItem.cpp │ │ │ ├── drawItem.h │ │ │ ├── drawingCoord.cpp │ │ │ ├── drawingCoord.h │ │ │ ├── engine.cpp │ │ │ ├── engine.h │ │ │ ├── enums.cpp │ │ │ ├── enums.h │ │ │ ├── extCompCpuComputation.cpp │ │ │ ├── extCompCpuComputation.h │ │ │ ├── extCompInputSource.cpp │ │ │ ├── extCompInputSource.h │ │ │ ├── extCompPrimvarBufferSource.cpp │ │ │ ├── extCompPrimvarBufferSource.h │ │ │ ├── extComputation.cpp │ │ │ ├── extComputation.h │ │ │ ├── extComputationContext.cpp │ │ │ ├── extComputationContext.h │ │ │ ├── extComputationContextInternal.cpp │ │ │ ├── extComputationContextInternal.h │ │ │ ├── extComputationUtils.cpp │ │ │ ├── extComputationUtils.h │ │ │ ├── field.cpp │ │ │ ├── field.h │ │ │ ├── flatNormals.cpp │ │ │ ├── flatNormals.h │ │ │ ├── geomSubset.cpp │ │ │ ├── geomSubset.h │ │ │ ├── instanceRegistry.cpp │ │ │ ├── instanceRegistry.h │ │ │ ├── instancer.cpp │ │ │ ├── instancer.h │ │ │ ├── light.cpp │ │ │ ├── light.h │ │ │ ├── material.cpp │ │ │ ├── material.h │ │ │ ├── materialParam.cpp │ │ │ ├── materialParam.h │ │ │ ├── mesh.cpp │ │ │ ├── mesh.h │ │ │ ├── meshTopology.cpp │ │ │ ├── meshTopology.h │ │ │ ├── meshUtil.cpp │ │ │ ├── meshUtil.h │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── perfLog.cpp │ │ │ ├── perfLog.h │ │ │ ├── plugInfo.json │ │ │ ├── points.cpp │ │ │ ├── points.h │ │ │ ├── primGather.cpp │ │ │ ├── primGather.h │ │ │ ├── primTypeIndex.cpp │ │ │ ├── primTypeIndex.h │ │ │ ├── renderBuffer.cpp │ │ │ ├── renderBuffer.h │ │ │ ├── renderDelegate.cpp │ │ │ ├── renderDelegate.h │ │ │ ├── renderIndex.cpp │ │ │ ├── renderIndex.h │ │ │ ├── renderPass.cpp │ │ │ ├── renderPass.h │ │ │ ├── renderPassState.cpp │ │ │ ├── renderPassState.h │ │ │ ├── renderThread.cpp │ │ │ ├── renderThread.h │ │ │ ├── repr.cpp │ │ │ ├── repr.h │ │ │ ├── resource.cpp │ │ │ ├── resource.h │ │ │ ├── resourceRegistry.cpp │ │ │ ├── resourceRegistry.h │ │ │ ├── rprim.cpp │ │ │ ├── rprim.h │ │ │ ├── rprimCollection.cpp │ │ │ ├── rprimCollection.h │ │ │ ├── rprimSharedData.cpp │ │ │ ├── rprimSharedData.h │ │ │ ├── sceneDelegate.cpp │ │ │ ├── sceneDelegate.h │ │ │ ├── sceneExtCompInputSource.cpp │ │ │ ├── sceneExtCompInputSource.h │ │ │ ├── selection.cpp │ │ │ ├── selection.h │ │ │ ├── smoothNormals.cpp │ │ │ ├── smoothNormals.h │ │ │ ├── sortedIds.cpp │ │ │ ├── sortedIds.h │ │ │ ├── sprim.cpp │ │ │ ├── sprim.h │ │ │ ├── strategyBase.cpp │ │ │ ├── strategyBase.h │ │ │ ├── task.cpp │ │ │ ├── task.h │ │ │ ├── texture.cpp │ │ │ ├── texture.h │ │ │ ├── textureResource.cpp │ │ │ ├── textureResource.h │ │ │ ├── timeSampleArray.cpp │ │ │ ├── timeSampleArray.h │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── topology.cpp │ │ │ ├── topology.h │ │ │ ├── types.cpp │ │ │ ├── types.h │ │ │ ├── unitTestDelegate.cpp │ │ │ ├── unitTestDelegate.h │ │ │ ├── unitTestHelper.cpp │ │ │ ├── unitTestHelper.h │ │ │ ├── unitTestNullRenderDelegate.cpp │ │ │ ├── unitTestNullRenderDelegate.h │ │ │ ├── unitTestNullRenderPass.cpp │ │ │ ├── unitTestNullRenderPass.h │ │ │ ├── version.h │ │ │ ├── vertexAdjacency.cpp │ │ │ ├── vertexAdjacency.h │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ ├── vtBufferSource.cpp │ │ │ └── vtBufferSource.h │ │ ├── hdSt │ │ │ ├── CMakeLists.txt │ │ │ ├── api.h │ │ │ ├── basisCurves.cpp │ │ │ ├── basisCurves.h │ │ │ ├── basisCurvesComputations.cpp │ │ │ ├── basisCurvesComputations.h │ │ │ ├── basisCurvesShaderKey.cpp │ │ │ ├── basisCurvesShaderKey.h │ │ │ ├── basisCurvesTopology.cpp │ │ │ ├── basisCurvesTopology.h │ │ │ ├── bufferArrayRangeGL.cpp │ │ │ ├── bufferArrayRangeGL.h │ │ │ ├── bufferResourceGL.cpp │ │ │ ├── bufferResourceGL.h │ │ │ ├── codeGen.cpp │ │ │ ├── codeGen.h │ │ │ ├── commandBuffer.cpp │ │ │ ├── commandBuffer.h │ │ │ ├── computeShader.cpp │ │ │ ├── computeShader.h │ │ │ ├── copyComputation.cpp │ │ │ ├── copyComputation.h │ │ │ ├── cullingShaderKey.cpp │ │ │ ├── cullingShaderKey.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── dispatchBuffer.cpp │ │ │ ├── dispatchBuffer.h │ │ │ ├── drawBatch.cpp │ │ │ ├── drawBatch.h │ │ │ ├── drawItem.cpp │ │ │ ├── drawItem.h │ │ │ ├── drawItemInstance.cpp │ │ │ ├── drawItemInstance.h │ │ │ ├── drawTarget.cpp │ │ │ ├── drawTarget.h │ │ │ ├── drawTargetAttachmentDesc.cpp │ │ │ ├── drawTargetAttachmentDesc.h │ │ │ ├── drawTargetAttachmentDescArray.cpp │ │ │ ├── drawTargetAttachmentDescArray.h │ │ │ ├── drawTargetRenderPassState.cpp │ │ │ ├── drawTargetRenderPassState.h │ │ │ ├── drawTargetTextureResource.cpp │ │ │ ├── drawTargetTextureResource.h │ │ │ ├── extCompGpuComputation.cpp │ │ │ ├── extCompGpuComputation.h │ │ │ ├── extCompGpuComputationBufferSource.cpp │ │ │ ├── extCompGpuComputationBufferSource.h │ │ │ ├── extCompGpuComputationResource.cpp │ │ │ ├── extCompGpuComputationResource.h │ │ │ ├── extCompGpuPrimvarBufferSource.cpp │ │ │ ├── extCompGpuPrimvarBufferSource.h │ │ │ ├── extComputation.cpp │ │ │ ├── extComputation.h │ │ │ ├── fallbackLightingShader.cpp │ │ │ ├── fallbackLightingShader.h │ │ │ ├── flatNormals.cpp │ │ │ ├── flatNormals.h │ │ │ ├── geometricShader.cpp │ │ │ ├── geometricShader.h │ │ │ ├── glConversions.cpp │ │ │ ├── glConversions.h │ │ │ ├── glUtils.cpp │ │ │ ├── glUtils.h │ │ │ ├── glslProgram.cpp │ │ │ ├── glslProgram.h │ │ │ ├── glslfxShader.cpp │ │ │ ├── glslfxShader.h │ │ │ ├── imageShaderRenderPass.cpp │ │ │ ├── imageShaderRenderPass.h │ │ │ ├── imageShaderShaderKey.cpp │ │ │ ├── imageShaderShaderKey.h │ │ │ ├── immediateDrawBatch.cpp │ │ │ ├── immediateDrawBatch.h │ │ │ ├── indirectDrawBatch.cpp │ │ │ ├── indirectDrawBatch.h │ │ │ ├── instancer.cpp │ │ │ ├── instancer.h │ │ │ ├── interleavedMemoryManager.cpp │ │ │ ├── interleavedMemoryManager.h │ │ │ ├── light.cpp │ │ │ ├── light.h │ │ │ ├── lightingShader.cpp │ │ │ ├── lightingShader.h │ │ │ ├── material.cpp │ │ │ ├── material.h │ │ │ ├── mesh.cpp │ │ │ ├── mesh.h │ │ │ ├── meshShaderKey.cpp │ │ │ ├── meshShaderKey.h │ │ │ ├── meshTopology.cpp │ │ │ ├── meshTopology.h │ │ │ ├── mixinShaderCode.cpp │ │ │ ├── mixinShaderCode.h │ │ │ ├── overview.dox │ │ │ ├── package.cpp │ │ │ ├── package.h │ │ │ ├── pch.h │ │ │ ├── persistentBuffer.cpp │ │ │ ├── persistentBuffer.h │ │ │ ├── plugInfo.json │ │ │ ├── points.cpp │ │ │ ├── points.h │ │ │ ├── pointsShaderKey.cpp │ │ │ ├── pointsShaderKey.h │ │ │ ├── quadrangulate.cpp │ │ │ ├── quadrangulate.h │ │ │ ├── renderDelegate.cpp │ │ │ ├── renderDelegate.h │ │ │ ├── renderPass.cpp │ │ │ ├── renderPass.h │ │ │ ├── renderPassShader.cpp │ │ │ ├── renderPassShader.h │ │ │ ├── renderPassState.cpp │ │ │ ├── renderPassState.h │ │ │ ├── resourceBinder.cpp │ │ │ ├── resourceBinder.h │ │ │ ├── resourceGL.cpp │ │ │ ├── resourceGL.h │ │ │ ├── resourceRegistry.cpp │ │ │ ├── resourceRegistry.h │ │ │ ├── shaderCode.cpp │ │ │ ├── shaderCode.h │ │ │ ├── shaderKey.cpp │ │ │ ├── shaderKey.h │ │ │ ├── shaders │ │ │ │ ├── basisCurves.glslfx │ │ │ │ ├── compute.glslfx │ │ │ │ ├── edgeId.glslfx │ │ │ │ ├── fallbackLighting.glslfx │ │ │ │ ├── fallbackLightingShader.glslfx │ │ │ │ ├── fallbackSurface.glslfx │ │ │ │ ├── frustumCull.glslfx │ │ │ │ ├── imageShader.glslfx │ │ │ │ ├── instancing.glslfx │ │ │ │ ├── lighting.glslfx │ │ │ │ ├── lightingIntegrationShader.glslfx │ │ │ │ ├── mesh.glslfx │ │ │ │ ├── meshNormal.glslfx │ │ │ │ ├── meshWire.glslfx │ │ │ │ ├── pointId.glslfx │ │ │ │ ├── points.glslfx │ │ │ │ ├── ptexTexture.glslfx │ │ │ │ ├── renderPass.glslfx │ │ │ │ ├── renderPassShader.glslfx │ │ │ │ ├── terminals.glslfx │ │ │ │ └── visibility.glslfx │ │ │ ├── smoothNormals.cpp │ │ │ ├── smoothNormals.h │ │ │ ├── subdivision.cpp │ │ │ ├── subdivision.h │ │ │ ├── subdivision3.cpp │ │ │ ├── subdivision3.h │ │ │ ├── surfaceShader.cpp │ │ │ ├── surfaceShader.h │ │ │ ├── testenv │ │ │ │ └── testHdStBasicDrawing.cpp │ │ │ ├── texture.cpp │ │ │ ├── texture.h │ │ │ ├── textureResource.cpp │ │ │ ├── textureResource.h │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── triangulate.cpp │ │ │ ├── triangulate.h │ │ │ ├── unitTestDelegate.cpp │ │ │ ├── unitTestDelegate.h │ │ │ ├── unitTestGLDrawing.cpp │ │ │ ├── unitTestGLDrawing.h │ │ │ ├── unitTestHelper.cpp │ │ │ ├── unitTestHelper.h │ │ │ ├── vboMemoryManager.cpp │ │ │ ├── vboMemoryManager.h │ │ │ ├── vboSimpleMemoryManager.cpp │ │ │ └── vboSimpleMemoryManager.h │ │ ├── hdx │ │ │ ├── CMakeLists.txt │ │ │ ├── api.h │ │ │ ├── colorCorrectionTask.cpp │ │ │ ├── colorCorrectionTask.h │ │ │ ├── colorizeSelectionTask.cpp │ │ │ ├── colorizeSelectionTask.h │ │ │ ├── colorizeTask.cpp │ │ │ ├── colorizeTask.h │ │ │ ├── compositor.cpp │ │ │ ├── compositor.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── drawTargetRenderPass.cpp │ │ │ ├── drawTargetRenderPass.h │ │ │ ├── drawTargetResolveTask.cpp │ │ │ ├── drawTargetResolveTask.h │ │ │ ├── drawTargetTask.cpp │ │ │ ├── drawTargetTask.h │ │ │ ├── oitRenderTask.cpp │ │ │ ├── oitRenderTask.h │ │ │ ├── oitResolveTask.cpp │ │ │ ├── oitResolveTask.h │ │ │ ├── overview.dox │ │ │ ├── package.cpp │ │ │ ├── package.h │ │ │ ├── pch.h │ │ │ ├── pickFromRenderBufferTask.cpp │ │ │ ├── pickFromRenderBufferTask.h │ │ │ ├── pickTask.cpp │ │ │ ├── pickTask.h │ │ │ ├── plugInfo.json │ │ │ ├── progressiveTask.cpp │ │ │ ├── progressiveTask.h │ │ │ ├── renderSetupTask.cpp │ │ │ ├── renderSetupTask.h │ │ │ ├── renderTask.cpp │ │ │ ├── renderTask.h │ │ │ ├── rendererPlugin.cpp │ │ │ ├── rendererPlugin.h │ │ │ ├── rendererPluginRegistry.cpp │ │ │ ├── rendererPluginRegistry.h │ │ │ ├── selectionTask.cpp │ │ │ ├── selectionTask.h │ │ │ ├── selectionTracker.cpp │ │ │ ├── selectionTracker.h │ │ │ ├── shaders │ │ │ │ ├── colorCorrection.glslfx │ │ │ │ ├── fullscreen.glslfx │ │ │ │ ├── oitResolveImageShader.glslfx │ │ │ │ ├── renderPass.glslfx │ │ │ │ ├── renderPassIdShader.glslfx │ │ │ │ ├── renderPassOitShader.glslfx │ │ │ │ ├── renderPassPickingShader.glslfx │ │ │ │ ├── renderPassShader.glslfx │ │ │ │ ├── renderPassShadowShader.glslfx │ │ │ │ ├── selection.glslfx │ │ │ │ └── simpleLightingShader.glslfx │ │ │ ├── shadowMatrixComputation.h │ │ │ ├── shadowTask.cpp │ │ │ ├── shadowTask.h │ │ │ ├── simpleLightTask.cpp │ │ │ ├── simpleLightTask.h │ │ │ ├── simpleLightingShader.cpp │ │ │ ├── simpleLightingShader.h │ │ │ ├── taskController.cpp │ │ │ ├── taskController.h │ │ │ ├── testenv │ │ │ │ ├── testHdxCameraAndLight.cpp │ │ │ │ ├── testHdxIdRender.cpp │ │ │ │ ├── testHdxLightAndShadow.cpp │ │ │ │ ├── testHdxPickAndHighlight.cpp │ │ │ │ ├── testHdxPickingWithReprAndRefineChanges.cpp │ │ │ │ ├── testHdxRenderTask.cpp │ │ │ │ └── testHdxUnpickablesAsOccluders.cpp │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── types.cpp │ │ │ ├── types.h │ │ │ ├── unitTestDelegate.cpp │ │ │ ├── unitTestDelegate.h │ │ │ ├── unitTestGLDrawing.cpp │ │ │ ├── unitTestGLDrawing.h │ │ │ ├── unitTestUtils.cpp │ │ │ ├── unitTestUtils.h │ │ │ └── version.h │ │ ├── hf │ │ │ ├── CMakeLists.txt │ │ │ ├── api.h │ │ │ ├── diagnostic.h │ │ │ ├── pch.h │ │ │ ├── perfLog.h │ │ │ ├── pluginBase.cpp │ │ │ ├── pluginBase.h │ │ │ ├── pluginDesc.h │ │ │ ├── pluginEntry.cpp │ │ │ ├── pluginEntry.h │ │ │ ├── pluginRegistry.cpp │ │ │ └── pluginRegistry.h │ │ ├── hio │ │ │ ├── CMakeLists.txt │ │ │ ├── api.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── dictionary.cpp │ │ │ ├── glslfx.cpp │ │ │ ├── glslfx.h │ │ │ ├── glslfxConfig.cpp │ │ │ ├── glslfxConfig.h │ │ │ ├── overview.dox │ │ │ └── pch.h │ │ └── pxOsd │ │ │ ├── CMakeLists.txt │ │ │ ├── api.h │ │ │ ├── meshTopology.cpp │ │ │ ├── meshTopology.h │ │ │ ├── pch.h │ │ │ ├── refinerFactory.cpp │ │ │ ├── refinerFactory.h │ │ │ ├── subdivTags.cpp │ │ │ ├── subdivTags.h │ │ │ ├── tokens.cpp │ │ │ └── tokens.h │ └── plugin │ │ ├── CMakeLists.txt │ │ ├── hdEmbree │ │ ├── CMakeLists.txt │ │ ├── config.cpp │ │ ├── config.h │ │ ├── context.h │ │ ├── instancer.cpp │ │ ├── instancer.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── meshSamplers.cpp │ │ ├── meshSamplers.h │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── renderBuffer.cpp │ │ ├── renderBuffer.h │ │ ├── renderDelegate.cpp │ │ ├── renderDelegate.h │ │ ├── renderParam.h │ │ ├── renderPass.cpp │ │ ├── renderPass.h │ │ ├── renderer.cpp │ │ ├── renderer.h │ │ ├── rendererPlugin.cpp │ │ ├── rendererPlugin.h │ │ ├── sampler.cpp │ │ ├── sampler.h │ │ └── testenv │ │ │ └── testHdEmbree.cpp │ │ └── hdStream │ │ ├── CMakeLists.txt │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── rendererPlugin.cpp │ │ └── rendererPlugin.h ├── pxr.h.in ├── pxrConfig.cmake.in ├── usd │ ├── CMakeLists.txt │ ├── bin │ │ ├── CMakeLists.txt │ │ ├── sdfdump │ │ │ ├── CMakeLists.txt │ │ │ └── sdfdump.cpp │ │ ├── sdffilter │ │ │ ├── CMakeLists.txt │ │ │ └── sdffilter.cpp │ │ ├── usdcat │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ ├── testCatToFile │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── output.usda │ │ │ │ │ └── input.usda │ │ │ │ ├── testLoadOnly │ │ │ │ │ └── input.usda │ │ │ │ ├── testMissingOrInvalidFiles │ │ │ │ │ └── hello.txt │ │ │ │ ├── testUsdCatLayerMetadata │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── output.usda │ │ │ │ │ └── input.usda │ │ │ │ ├── testUsdCatMask │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── output.usda │ │ │ │ │ └── input.usda │ │ │ │ └── testVariadicCatting │ │ │ │ │ ├── a.usd │ │ │ │ │ ├── b.usd │ │ │ │ │ └── c.usd │ │ │ └── usdcat.py │ │ ├── usdchecker │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ └── testUsdChecker │ │ │ │ │ ├── bad │ │ │ │ │ ├── alembic.abc │ │ │ │ │ ├── alembic.usdz │ │ │ │ │ ├── badCollMaterialBinding.usdc │ │ │ │ │ ├── badExtension_arkit.usd │ │ │ │ │ ├── badExtension_arkit.usdz │ │ │ │ │ ├── badMaterialBinding.usdc │ │ │ │ │ ├── badShaderId.usdc │ │ │ │ │ ├── badShaderImplSource.usdc │ │ │ │ │ ├── badShaderInput.usdc │ │ │ │ │ ├── badShaderUnknownTexture.usdc │ │ │ │ │ ├── badShaderUnsupportedTexture.usdc │ │ │ │ │ ├── badUsdz.usdz │ │ │ │ │ ├── brokenDep.usd │ │ │ │ │ ├── brokenRef.usd │ │ │ │ │ ├── mat_bad.bad │ │ │ │ │ ├── mat_bmp.bmp │ │ │ │ │ ├── refAbc.usdc │ │ │ │ │ ├── refAbc.usdz │ │ │ │ │ ├── refs │ │ │ │ │ │ ├── texture.jpg │ │ │ │ │ │ └── world.usd │ │ │ │ │ ├── unencapsulated_asset.usdz │ │ │ │ │ ├── unencapsulated_layer.usdz │ │ │ │ │ ├── unknownfile.usdz │ │ │ │ │ ├── unsupportedTypes_arkit.usdc │ │ │ │ │ ├── variants.usdc │ │ │ │ │ └── zUp.usdc │ │ │ │ │ ├── baseline │ │ │ │ │ ├── arkitRules.txt │ │ │ │ │ ├── baseRules.txt │ │ │ │ │ └── variants_failedChecks.txt │ │ │ │ │ └── clean │ │ │ │ │ ├── clean.usd │ │ │ │ │ ├── clean.usdc │ │ │ │ │ ├── clean.usdz │ │ │ │ │ ├── clean_arkit.usdc │ │ │ │ │ ├── clean_arkit.usdz │ │ │ │ │ ├── clean_flat.usdc │ │ │ │ │ ├── clean_flat.usdz │ │ │ │ │ ├── clean_usdc.usdz │ │ │ │ │ ├── geom.usdc │ │ │ │ │ ├── mat_jpg.jpg │ │ │ │ │ ├── mat_png.png │ │ │ │ │ └── shading.usda │ │ │ └── usdchecker.py │ │ ├── usddiff │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ ├── testDiffToolComposedResults │ │ │ │ │ ├── a.usd │ │ │ │ │ ├── a_payload.usd │ │ │ │ │ ├── b.usd │ │ │ │ │ ├── b_payload.usd │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── composed_diff.txt │ │ │ │ │ │ └── layer_diff.txt │ │ │ │ ├── testDiffToolSelectionDefault │ │ │ │ │ ├── a.usda │ │ │ │ │ ├── b.usda │ │ │ │ │ └── baseline │ │ │ │ │ │ └── out.txt │ │ │ │ ├── testDiffToolVariousUsdFormats │ │ │ │ │ ├── a.abc │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── a.usd │ │ │ │ │ ├── a.usda │ │ │ │ │ └── a.usdc │ │ │ │ ├── testDiffWithDirectories │ │ │ │ │ ├── a.usda │ │ │ │ │ ├── a │ │ │ │ │ │ ├── a.usda │ │ │ │ │ │ └── b.usda │ │ │ │ │ ├── b.usda │ │ │ │ │ └── b │ │ │ │ │ │ ├── a.usda │ │ │ │ │ │ └── b.usda │ │ │ │ ├── testDiffWithVersionSpecifiers │ │ │ │ │ └── a.usda │ │ │ │ └── testExitCodesForDiff │ │ │ │ │ ├── a.usda │ │ │ │ │ └── b.usda │ │ │ └── usddiff.py │ │ ├── usddumpcrate │ │ │ ├── CMakeLists.txt │ │ │ └── usddumpcrate.py │ │ ├── usdedit │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ ├── testUsdEditFilePermissions │ │ │ │ │ └── write_protected.usda │ │ │ │ ├── testUsdEditPackageFile │ │ │ │ │ └── test.usdz │ │ │ │ └── testUsdEditRespectFileFormat │ │ │ │ │ ├── baseline │ │ │ │ │ ├── ascii_output.txt │ │ │ │ │ └── crate_output.txt │ │ │ │ │ ├── hello_ascii.usd │ │ │ │ │ └── hello_crate.usd │ │ │ └── usdedit.py │ │ ├── usdresolve │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ └── testResolveRelPath │ │ │ │ │ ├── baseline │ │ │ │ │ └── output.txt │ │ │ │ │ └── input.usda │ │ │ └── usdresolve.py │ │ ├── usdstitch │ │ │ ├── CMakeLists.txt │ │ │ └── usdstitch.py │ │ ├── usdstitchclips │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ ├── testFileCleanup │ │ │ │ │ ├── a.usd │ │ │ │ │ ├── b.usd │ │ │ │ │ └── preexisting.topology.usd │ │ │ │ ├── testInvalidClipPaths │ │ │ │ │ ├── a.usd │ │ │ │ │ └── b.usd │ │ │ │ ├── testStitchClips │ │ │ │ │ ├── Particles_Splash.101.usd │ │ │ │ │ ├── Particles_Splash.102.usd │ │ │ │ │ ├── Particles_Splash.103.usd │ │ │ │ │ ├── Particles_Splash.104.usd │ │ │ │ │ ├── Particles_Splash.105.usd │ │ │ │ │ ├── Particles_Splash.106.usd │ │ │ │ │ ├── Particles_Splash.107.usd │ │ │ │ │ ├── Particles_Splash.108.usd │ │ │ │ │ ├── Particles_Splash.109.usd │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ ├── result.usda │ │ │ │ │ │ ├── result_customSetName.topology.usda │ │ │ │ │ │ └── result_customSetName.usda │ │ │ │ └── testStitchClipsTemplate │ │ │ │ │ ├── baseline │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ ├── result.usda │ │ │ │ │ ├── result_customSetName.topology.usda │ │ │ │ │ └── result_customSetName.usda │ │ │ │ │ ├── p.101.usda │ │ │ │ │ ├── p.102.usda │ │ │ │ │ ├── p.103.usda │ │ │ │ │ └── p.104.usda │ │ │ └── usdstitchclips.py │ │ ├── usdtree │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ │ ├── testUsdTree │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ └── output_attributes.txt │ │ │ │ │ └── input.usda │ │ │ │ └── testUsdTreePayload │ │ │ │ │ ├── baseline │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── output_fls.txt │ │ │ │ │ ├── output_masked.txt │ │ │ │ │ ├── output_notflattened.txt │ │ │ │ │ ├── output_simple.txt │ │ │ │ │ └── output_unloaded.txt │ │ │ │ │ ├── input.usda │ │ │ │ │ └── pl.usda │ │ │ └── usdtree.py │ │ └── usdzip │ │ │ ├── CMakeLists.txt │ │ │ ├── testenv │ │ │ ├── testUsdZipAsset │ │ │ │ ├── attr_a.usd │ │ │ │ ├── attr_b.usd │ │ │ │ ├── attr_c.usd │ │ │ │ ├── base_a.usd │ │ │ │ ├── baseline │ │ │ │ │ ├── contents.txt │ │ │ │ │ └── contents_arkit.txt │ │ │ │ ├── clip.011.usd │ │ │ │ ├── clip.1.usd │ │ │ │ ├── clip.10.usd │ │ │ │ ├── clip1.usda │ │ │ │ ├── clip2.usda │ │ │ │ ├── meta_a.usd │ │ │ │ ├── meta_b.usd │ │ │ │ ├── meta_c.usd │ │ │ │ ├── payload_a.usd │ │ │ │ ├── ref_a.usd │ │ │ │ ├── ref_b.usd │ │ │ │ ├── root.usd │ │ │ │ ├── sub_a.usd │ │ │ │ ├── sub_b.usd │ │ │ │ ├── v_attr_a.usd │ │ │ │ ├── v_attr_b.usd │ │ │ │ ├── v_attr_c.usd │ │ │ │ ├── v_meta_a.usda │ │ │ │ ├── v_meta_b.usda │ │ │ │ └── v_ref_a.usd │ │ │ └── testUsdZipInputFiles │ │ │ │ ├── baseline │ │ │ │ ├── flat.txt │ │ │ │ └── recursive.txt │ │ │ │ └── src │ │ │ │ ├── a.txt │ │ │ │ ├── b.png │ │ │ │ └── sub │ │ │ │ ├── c.png │ │ │ │ └── d.txt │ │ │ └── usdzip.py │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── ar │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── asset.cpp │ │ │ ├── asset.h │ │ │ ├── assetInfo.cpp │ │ │ ├── assetInfo.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── defaultResolver.cpp │ │ │ ├── defaultResolver.h │ │ │ ├── defaultResolverContext.cpp │ │ │ ├── defaultResolverContext.h │ │ │ ├── definePackageResolver.h │ │ │ ├── defineResolver.h │ │ │ ├── defineResolverContext.h │ │ │ ├── filesystemAsset.cpp │ │ │ ├── filesystemAsset.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── packageResolver.cpp │ │ │ ├── packageResolver.h │ │ │ ├── packageUtils.cpp │ │ │ ├── packageUtils.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── pyResolverContext.cpp │ │ │ ├── pyResolverContext.h │ │ │ ├── resolver.cpp │ │ │ ├── resolver.h │ │ │ ├── resolverContext.cpp │ │ │ ├── resolverContext.h │ │ │ ├── resolverContextBinder.cpp │ │ │ ├── resolverContextBinder.h │ │ │ ├── resolverScopedCache.cpp │ │ │ ├── resolverScopedCache.h │ │ │ ├── testenv │ │ │ │ ├── TestArAdvancedAPI_plugInfo.json │ │ │ │ ├── TestArAdvancedAPI_plugin.cpp │ │ │ │ ├── testArAdvancedAPI.py │ │ │ │ ├── testArDefaultResolver.cpp │ │ │ │ ├── testArDefaultResolver.py │ │ │ │ └── testArPackageUtils.py │ │ │ ├── threadLocalScopedCache.h │ │ │ ├── wrapDefaultResolver.cpp │ │ │ ├── wrapDefaultResolverContext.cpp │ │ │ ├── wrapPackageUtils.cpp │ │ │ ├── wrapResolver.cpp │ │ │ ├── wrapResolverContext.cpp │ │ │ ├── wrapResolverContextBinder.cpp │ │ │ └── wrapResolverScopedCache.cpp │ │ ├── kind │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── registry.cpp │ │ │ ├── registry.h │ │ │ ├── testenv │ │ │ │ ├── testKindRegistry.py │ │ │ │ └── testKindRegistry │ │ │ │ │ └── lib │ │ │ │ │ └── python │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── plugInfo.json │ │ │ ├── wrapRegistry.cpp │ │ │ └── wrapTokens.cpp │ │ ├── ndr │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── declare.cpp │ │ │ ├── declare.h │ │ │ ├── discoveryPlugin.cpp │ │ │ ├── discoveryPlugin.h │ │ │ ├── filesystemDiscovery.cpp │ │ │ ├── filesystemDiscovery.h │ │ │ ├── filesystemDiscoveryHelpers.cpp │ │ │ ├── filesystemDiscoveryHelpers.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── node.cpp │ │ │ ├── node.h │ │ │ ├── nodeDiscoveryResult.h │ │ │ ├── overview.dox │ │ │ ├── parserPlugin.cpp │ │ │ ├── parserPlugin.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── property.cpp │ │ │ ├── property.h │ │ │ ├── registry.cpp │ │ │ ├── registry.h │ │ │ ├── testenv │ │ │ │ ├── testNdrFilesystemDiscovery.py │ │ │ │ ├── testNdrFilesystemDiscovery.testenv │ │ │ │ │ ├── TestNodeARGS.args │ │ │ │ │ ├── TestNodeOSL.osl │ │ │ │ │ ├── TestNodeOSL.oso │ │ │ │ │ ├── TestNodeSameName.args │ │ │ │ │ ├── TestNodeSameName.osl │ │ │ │ │ ├── TestNodeSameName.oso │ │ │ │ │ └── nested │ │ │ │ │ │ ├── NestedTestARGS.args │ │ │ │ │ │ ├── NestedTestOSL.osl │ │ │ │ │ │ └── NestedTestOSL.oso │ │ │ │ └── testNdrVersion.py │ │ │ ├── wrapDeclare.cpp │ │ │ ├── wrapDiscoveryPlugin.cpp │ │ │ ├── wrapFilesystemDiscovery.cpp │ │ │ ├── wrapFilesystemDiscoveryHelpers.cpp │ │ │ ├── wrapNode.cpp │ │ │ ├── wrapNodeDiscoveryResult.cpp │ │ │ ├── wrapProperty.cpp │ │ │ └── wrapRegistry.cpp │ │ ├── pcp │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── arc.cpp │ │ │ ├── arc.h │ │ │ ├── cache.cpp │ │ │ ├── cache.h │ │ │ ├── changes.cpp │ │ │ ├── changes.h │ │ │ ├── composeSite.cpp │ │ │ ├── composeSite.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── dependencies.cpp │ │ │ ├── dependencies.h │ │ │ ├── dependency.cpp │ │ │ ├── dependency.h │ │ │ ├── diagnostic.cpp │ │ │ ├── diagnostic.h │ │ │ ├── dynamicFileFormatContext.cpp │ │ │ ├── dynamicFileFormatContext.h │ │ │ ├── dynamicFileFormatDependencyData.cpp │ │ │ ├── dynamicFileFormatDependencyData.h │ │ │ ├── dynamicFileFormatInterface.h │ │ │ ├── errors.cpp │ │ │ ├── errors.h │ │ │ ├── instanceKey.cpp │ │ │ ├── instanceKey.h │ │ │ ├── instancing.cpp │ │ │ ├── instancing.h │ │ │ ├── iterator.cpp │ │ │ ├── iterator.h │ │ │ ├── layerPrefetchRequest.cpp │ │ │ ├── layerPrefetchRequest.h │ │ │ ├── layerStack.cpp │ │ │ ├── layerStack.h │ │ │ ├── layerStackIdentifier.cpp │ │ │ ├── layerStackIdentifier.h │ │ │ ├── layerStackRegistry.cpp │ │ │ ├── layerStackRegistry.h │ │ │ ├── mapExpression.cpp │ │ │ ├── mapExpression.h │ │ │ ├── mapFunction.cpp │ │ │ ├── mapFunction.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── namespaceEdits.cpp │ │ │ ├── namespaceEdits.h │ │ │ ├── node.cpp │ │ │ ├── node.h │ │ │ ├── node_Iterator.cpp │ │ │ ├── node_Iterator.h │ │ │ ├── overview.dox │ │ │ ├── pathTranslation.cpp │ │ │ ├── pathTranslation.h │ │ │ ├── pch.h │ │ │ ├── primIndex.cpp │ │ │ ├── primIndex.h │ │ │ ├── primIndex_Graph.cpp │ │ │ ├── primIndex_Graph.h │ │ │ ├── primIndex_StackFrame.cpp │ │ │ ├── primIndex_StackFrame.h │ │ │ ├── propertyIndex.cpp │ │ │ ├── propertyIndex.h │ │ │ ├── pyUtils.cpp │ │ │ ├── pyUtils.h │ │ │ ├── site.cpp │ │ │ ├── site.h │ │ │ ├── statistics.cpp │ │ │ ├── statistics.h │ │ │ ├── strengthOrdering.cpp │ │ │ ├── strengthOrdering.h │ │ │ ├── targetIndex.cpp │ │ │ ├── targetIndex.h │ │ │ ├── testenv │ │ │ │ ├── TestPcpDynamicFileFormatPlugin.cpp │ │ │ │ ├── TestPcpDynamicFileFormatPlugin_plugInfo.json │ │ │ │ ├── testPcpCache.py │ │ │ │ ├── testPcpChanges.py │ │ │ │ ├── testPcpChanges.testenv │ │ │ │ │ └── TestSublayerOffsetChanges │ │ │ │ │ │ ├── ref-sublayer.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ ├── root-sublayer.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpCompositionResults.py │ │ │ │ ├── testPcpDependencies.py │ │ │ │ ├── testPcpDependencies.testenv │ │ │ │ │ ├── BasicAncestralReference │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ ├── compositionResults_BasicAncestralReference.txt │ │ │ │ │ │ └── root.sdf │ │ │ │ │ ├── BasicLocalAndGlobalClassCombination │ │ │ │ │ │ ├── compositionResults_BasicLocalAndGlobalClassCombination.txt │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ ├── BasicReference │ │ │ │ │ │ ├── compositionResults_BasicReference.txt │ │ │ │ │ │ ├── defaultRef.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── session.sdf │ │ │ │ │ │ └── sublayer.sdf │ │ │ │ │ ├── BasicVariantWithConnections │ │ │ │ │ │ ├── camera.sdf │ │ │ │ │ │ ├── camera_perspective.sdf │ │ │ │ │ │ ├── compositionResults_BasicVariantWithConnections.txt │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── TrickyConnectionToRelocatedAttribute │ │ │ │ │ │ ├── compositionResults_TrickyConnectionToRelocatedAttribute.txt │ │ │ │ │ │ ├── eye_rig.sdf │ │ │ │ │ │ ├── face_rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpDynamicFileFormatPlugin.py │ │ │ │ ├── testPcpDynamicFileFormatPlugin.testenv │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── cone_0.sdf │ │ │ │ │ │ ├── proc_3_2.sdf │ │ │ │ │ │ └── sphere_0.sdf │ │ │ │ │ ├── cone.testpcpdynamic │ │ │ │ │ ├── params.sdf │ │ │ │ │ ├── payload.sdf │ │ │ │ │ ├── root.sdf │ │ │ │ │ ├── sphere.testpcpdynamic │ │ │ │ │ └── subrootref.sdf │ │ │ │ ├── testPcpHardToReach.cpp │ │ │ │ ├── testPcpInstanceKey.py │ │ │ │ ├── testPcpInstanceKey.testenv │ │ │ │ │ ├── basic.sdf │ │ │ │ │ ├── implied_arcs │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── setA.sdf │ │ │ │ │ │ └── setB.sdf │ │ │ │ │ ├── prop.sdf │ │ │ │ │ ├── prop_ref.sdf │ │ │ │ │ ├── ref.sdf │ │ │ │ │ ├── set.sdf │ │ │ │ │ └── variants.sdf │ │ │ │ ├── testPcpIterator.cpp │ │ │ │ ├── testPcpIterator.testenv │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── iteration_results.txt │ │ │ │ │ ├── mcat.sdf │ │ │ │ │ ├── model_latest.sdf │ │ │ │ │ ├── model_latest_payload.sdf │ │ │ │ │ ├── model_stable.sdf │ │ │ │ │ ├── rig.sdf │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpLayerMuting.py │ │ │ │ ├── testPcpLayerMuting.testenv │ │ │ │ │ ├── refs │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ ├── session │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── session.sdf │ │ │ │ │ └── sublayers │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── sublayer.sdf │ │ │ │ ├── testPcpMapExpression.cpp │ │ │ │ ├── testPcpMapFunction.py │ │ │ │ ├── testPcpMuseum_BasicAncestralReference.testenv │ │ │ │ │ ├── BasicAncestralReference │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicAncestralReference.txt │ │ │ │ ├── testPcpMuseum_BasicDuplicateSublayer.testenv │ │ │ │ │ ├── BasicDuplicateSublayer │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicDuplicateSublayer.txt │ │ │ │ ├── testPcpMuseum_BasicInherits.testenv │ │ │ │ │ ├── BasicInherits │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── nonexistent.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicInherits.txt │ │ │ │ ├── testPcpMuseum_BasicInstancing.testenv │ │ │ │ │ ├── BasicInstancing │ │ │ │ │ │ ├── prop.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── set.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicInstancing.txt │ │ │ │ ├── testPcpMuseum_BasicInstancingAndNestedInstances.testenv │ │ │ │ │ ├── BasicInstancingAndNestedInstances │ │ │ │ │ │ ├── prop.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── set.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicInstancingAndNestedInstances.txt │ │ │ │ ├── testPcpMuseum_BasicInstancingAndVariants.testenv │ │ │ │ │ ├── BasicInstancingAndVariants │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicInstancingAndVariants.txt │ │ │ │ ├── testPcpMuseum_BasicListEditing.testenv │ │ │ │ │ ├── BasicListEditing │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── sub1.sdf │ │ │ │ │ │ └── sub2.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicListEditing.txt │ │ │ │ ├── testPcpMuseum_BasicListEditingWithInherits.testenv │ │ │ │ │ ├── BasicListEditingWithInherits │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_BasicListEditingWithInherits.txt │ │ │ │ │ │ └── compositionResults_BasicListEditingWithInherits_pcp.txt │ │ │ │ ├── testPcpMuseum_BasicLocalAndGlobalClassCombination.testenv │ │ │ │ │ ├── BasicLocalAndGlobalClassCombination │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicLocalAndGlobalClassCombination.txt │ │ │ │ ├── testPcpMuseum_BasicNestedPayload.testenv │ │ │ │ │ ├── BasicNestedPayload │ │ │ │ │ │ ├── prop.sdf │ │ │ │ │ │ ├── prop_payload.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── set.sdf │ │ │ │ │ │ └── set_payload.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicNestedPayload.txt │ │ │ │ ├── testPcpMuseum_BasicNestedVariants.testenv │ │ │ │ │ ├── BasicNestedVariants │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicNestedVariants_pcp.txt │ │ │ │ ├── testPcpMuseum_BasicNestedVariantsWithSameName.testenv │ │ │ │ │ ├── BasicNestedVariantsWithSameName │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicNestedVariantsWithSameName.txt │ │ │ │ ├── testPcpMuseum_BasicOwner.testenv │ │ │ │ │ ├── BasicOwner │ │ │ │ │ │ ├── owned.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── session.sdf │ │ │ │ │ │ ├── stronger.sdf │ │ │ │ │ │ └── weaker.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicOwner.txt │ │ │ │ ├── testPcpMuseum_BasicPayload.testenv │ │ │ │ │ ├── BasicPayload │ │ │ │ │ │ ├── defaultRef.sdf │ │ │ │ │ │ ├── payload.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── session.sdf │ │ │ │ │ │ └── sublayer.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_BasicPayload_pcp.txt │ │ │ │ │ │ └── compositionResults_BasicPayload_pcp.txt │ │ │ │ ├── testPcpMuseum_BasicPayloadDiamond.testenv │ │ │ │ │ ├── BasicPayloadDiamond │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ ├── C.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicPayloadDiamond.txt │ │ │ │ ├── testPcpMuseum_BasicReference.testenv │ │ │ │ │ ├── BasicReference │ │ │ │ │ │ ├── defaultRef.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── session.sdf │ │ │ │ │ │ └── sublayer.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicReference.txt │ │ │ │ ├── testPcpMuseum_BasicReferenceAndClass.testenv │ │ │ │ │ ├── BasicReferenceAndClass │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicReferenceAndClass.txt │ │ │ │ ├── testPcpMuseum_BasicReferenceAndClassDiamond.testenv │ │ │ │ │ ├── BasicReferenceAndClassDiamond │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicReferenceAndClassDiamond.txt │ │ │ │ ├── testPcpMuseum_BasicReferenceDiamond.testenv │ │ │ │ │ ├── BasicReferenceDiamond │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ ├── C.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_BasicReferenceDiamond.txt │ │ │ │ │ │ └── compositionResults_BasicReferenceDiamond_pcp.txt │ │ │ │ ├── testPcpMuseum_BasicRelocateToAnimInterface.testenv │ │ │ │ │ ├── BasicRelocateToAnimInterface │ │ │ │ │ │ ├── charRig.sdf │ │ │ │ │ │ ├── pathRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicRelocateToAnimInterface.txt │ │ │ │ ├── testPcpMuseum_BasicSpecializes.testenv │ │ │ │ │ ├── BasicSpecializes │ │ │ │ │ │ ├── looks.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicSpecializes.txt │ │ │ │ ├── testPcpMuseum_BasicSpecializesAndInherits.testenv │ │ │ │ │ ├── BasicSpecializesAndInherits │ │ │ │ │ │ ├── looks.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicSpecializesAndInherits.txt │ │ │ │ ├── testPcpMuseum_BasicSpecializesAndReferences.testenv │ │ │ │ │ ├── BasicSpecializesAndReferences │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicSpecializesAndReferences.txt │ │ │ │ ├── testPcpMuseum_BasicSpecializesAndVariants.testenv │ │ │ │ │ ├── BasicSpecializesAndVariants │ │ │ │ │ │ ├── looks.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicSpecializesAndVariants.txt │ │ │ │ ├── testPcpMuseum_BasicTimeOffset.testenv │ │ │ │ │ ├── BasicTimeOffset │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref_sub.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicTimeOffset.txt │ │ │ │ ├── testPcpMuseum_BasicVariantWithConnections.testenv │ │ │ │ │ ├── BasicVariantWithConnections │ │ │ │ │ │ ├── camera.sdf │ │ │ │ │ │ ├── camera_perspective.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_BasicVariantWithConnections.txt │ │ │ │ ├── testPcpMuseum_ErrorArcCycle.testenv │ │ │ │ │ ├── ErrorArcCycle │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorArcCycle_pcp.txt │ │ │ │ │ │ └── compositionResults_ErrorArcCycle.txt │ │ │ │ ├── testPcpMuseum_ErrorConnectionPermissionDenied.testenv │ │ │ │ │ └── ErrorConnectionPermissionDenied │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorConnectionPermissionDenied_pcp.txt │ │ │ │ │ │ └── compositionResults_ErrorConnectionPermissionDenied.txt │ │ │ │ │ │ ├── culled.sdf │ │ │ │ │ │ ├── culled_payload.sdf │ │ │ │ │ │ ├── culled_stable.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_ErrorInconsistentProperties.testenv │ │ │ │ │ └── ErrorInconsistentProperties │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorInconsistentProperties.txt │ │ │ │ │ │ └── compositionResults_ErrorInconsistentProperties.txt │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_ErrorInvalidInstanceTargetPath.testenv │ │ │ │ │ └── ErrorInvalidInstanceTargetPath │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorInvalidInstanceTargetPath.txt │ │ │ │ │ │ └── compositionResults_ErrorInvalidInstanceTargetPath.txt │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_ErrorInvalidPayload.testenv │ │ │ │ │ └── ErrorInvalidPayload │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorInvalidPayload_pcp.txt │ │ │ │ │ │ ├── compositionResults_ErrorInvalidPayload.txt │ │ │ │ │ │ └── compositionResults_ErrorInvalidPayload_pcp.txt │ │ │ │ │ │ ├── payload.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_ErrorInvalidPreRelocateTargetPath.testenv │ │ │ │ │ └── ErrorInvalidPreRelocateTargetPath │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorInvalidPreRelocateTargetPath.txt │ │ │ │ │ │ └── compositionResults_ErrorInvalidPreRelocateTargetPath.txt │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── sub1.sdf │ │ │ │ │ │ └── sub2.sdf │ │ │ │ ├── testPcpMuseum_ErrorInvalidTargetPath.testenv │ │ │ │ │ └── ErrorInvalidTargetPath │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorInvalidTargetPath_pcp.txt │ │ │ │ │ │ ├── compositionResults_ErrorInvalidTargetPath.txt │ │ │ │ │ │ └── compositionResults_ErrorInvalidTargetPath_pcp.txt │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_ErrorOpinionAtRelocationSource.testenv │ │ │ │ │ ├── ErrorOpinionAtRelocationSource │ │ │ │ │ │ ├── bogus.sdf │ │ │ │ │ │ ├── pathRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorOpinionAtRelocationSource_pcp.txt │ │ │ │ │ │ └── compositionResults_ErrorOpinionAtRelocationSource.txt │ │ │ │ ├── testPcpMuseum_ErrorOwner.testenv │ │ │ │ │ └── ErrorOwner │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorOwner_pcp.txt │ │ │ │ │ │ └── compositionResults_ErrorOwner.txt │ │ │ │ │ │ ├── owned.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── session.sdf │ │ │ │ │ │ ├── stronger.sdf │ │ │ │ │ │ └── weaker.sdf │ │ │ │ ├── testPcpMuseum_ErrorPermissionDenied.testenv │ │ │ │ │ └── ErrorPermissionDenied │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorPermissionDenied_pcp.txt │ │ │ │ │ │ └── compositionResults_ErrorPermissionDenied.txt │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_ErrorRelocateToSelf.testenv │ │ │ │ │ ├── ErrorRelocateToSelf │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorRelocateToSelf_pcp.txt │ │ │ │ │ │ ├── compositionResults_ErrorRelocateToSelf.txt │ │ │ │ │ │ └── compositionResults_ErrorRelocateToSelf_pcp.txt │ │ │ │ ├── testPcpMuseum_ErrorSublayerCycle.testenv │ │ │ │ │ └── ErrorSublayerCycle │ │ │ │ │ │ ├── A.sdf │ │ │ │ │ │ ├── B.sdf │ │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── compositionErrors_ErrorSublayerCycle_pcp.txt │ │ │ │ │ │ └── compositionResults_ErrorSublayerCycle.txt │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpMuseum_PayloadsAndAncestralArcs.testenv │ │ │ │ │ ├── PayloadsAndAncestralArcs │ │ │ │ │ │ ├── payload.sdf │ │ │ │ │ │ ├── payload2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_PayloadsAndAncestralArcs.txt │ │ │ │ ├── testPcpMuseum_RelativePathPayloads.testenv │ │ │ │ │ ├── RelativePathPayloads │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── sub1 │ │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ │ └── sub1.sdf │ │ │ │ │ │ ├── sub2 │ │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ │ └── sub2.sdf │ │ │ │ │ │ └── sub3.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_RelativePathPayloads.txt │ │ │ │ ├── testPcpMuseum_RelativePathReferences.testenv │ │ │ │ │ ├── RelativePathReferences │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ ├── sub1 │ │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ │ └── sub1.sdf │ │ │ │ │ │ ├── sub2 │ │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ │ └── sub2.sdf │ │ │ │ │ │ └── sub3.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_RelativePathReferences.txt │ │ │ │ ├── testPcpMuseum_RelocatePrimsWithSameName.testenv │ │ │ │ │ ├── RelocatePrimsWithSameName │ │ │ │ │ │ ├── base.sdf │ │ │ │ │ │ ├── ref_1.sdf │ │ │ │ │ │ ├── ref_2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_RelocatePrimsWithSameName.txt │ │ │ │ ├── testPcpMuseum_SpecializesAndAncestralArcs.testenv │ │ │ │ │ ├── SpecializesAndAncestralArcs │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_SpecializesAndAncestralArcs.txt │ │ │ │ ├── testPcpMuseum_SubrootReferenceAndClasses.testenv │ │ │ │ │ ├── SubrootReferenceAndClasses │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── set.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_SubrootReferenceAndClasses.txt │ │ │ │ ├── testPcpMuseum_SubrootReferenceAndVariants.testenv │ │ │ │ │ ├── SubrootReferenceAndVariants │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_SubrootReferenceAndVariants.txt │ │ │ │ ├── testPcpMuseum_SubrootReferenceNonCycle.testenv │ │ │ │ │ ├── SubrootReferenceNonCycle │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_SubrootReferenceNonCycle.txt │ │ │ │ │ │ └── compositionResults_SubrootReferenceNonCycle.txt │ │ │ │ ├── testPcpMuseum_TrickyClassHierarchy.testenv │ │ │ │ │ ├── TrickyClassHierarchy │ │ │ │ │ │ ├── Sullivan.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyClassHierarchy.txt │ │ │ │ ├── testPcpMuseum_TrickyConnectionToRelocatedAttribute.testenv │ │ │ │ │ ├── TrickyConnectionToRelocatedAttribute │ │ │ │ │ │ ├── eye_rig.sdf │ │ │ │ │ │ ├── face_rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyConnectionToRelocatedAttribute.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritedVariantSelection.testenv │ │ │ │ │ ├── TrickyInheritedVariantSelection │ │ │ │ │ │ ├── model-pin.sdf │ │ │ │ │ │ ├── model-shade.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── sequence.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritedVariantSelection.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsAndRelocates.testenv │ │ │ │ │ ├── TrickyInheritsAndRelocates │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_TrickyInheritsAndRelocates_pcp.txt │ │ │ │ │ │ └── compositionResults_TrickyInheritsAndRelocates.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsAndRelocates2.testenv │ │ │ │ │ ├── TrickyInheritsAndRelocates2 │ │ │ │ │ │ ├── b.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritsAndRelocates2.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsAndRelocates3.testenv │ │ │ │ │ ├── TrickyInheritsAndRelocates3 │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── strings_rig.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritsAndRelocates3.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsAndRelocates4.testenv │ │ │ │ │ ├── TrickyInheritsAndRelocates4 │ │ │ │ │ │ ├── ConstraintRig.sdf │ │ │ │ │ │ ├── CurveTrackRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritsAndRelocates4.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsAndRelocates5.testenv │ │ │ │ │ ├── TrickyInheritsAndRelocates5 │ │ │ │ │ │ ├── TentacleRig.sdf │ │ │ │ │ │ ├── TentaclesRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritsAndRelocates5.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsInVariants.testenv │ │ │ │ │ ├── TrickyInheritsInVariants │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritsInVariants.txt │ │ │ │ ├── testPcpMuseum_TrickyInheritsInVariants2.testenv │ │ │ │ │ ├── TrickyInheritsInVariants2 │ │ │ │ │ │ ├── Sarah_modelComplexity.sdf │ │ │ │ │ │ ├── Sarah_rig.sdf │ │ │ │ │ │ ├── Sarah_rig2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyInheritsInVariants2.txt │ │ │ │ ├── testPcpMuseum_TrickyListEditedTargetPaths.testenv │ │ │ │ │ ├── TrickyListEditedTargetPaths │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyListEditedTargetPaths.txt │ │ │ │ ├── testPcpMuseum_TrickyLocalClassHierarchyWithRelocates.testenv │ │ │ │ │ ├── TrickyLocalClassHierarchyWithRelocates │ │ │ │ │ │ ├── ArmsRig.sdf │ │ │ │ │ │ ├── CharRigBase.sdf │ │ │ │ │ │ ├── Sullivan_masterrig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyLocalClassHierarchyWithRelocates.txt │ │ │ │ ├── testPcpMuseum_TrickyMultipleRelocations.testenv │ │ │ │ │ ├── TrickyMultipleRelocations │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ ├── root.sdf │ │ │ │ │ │ └── subrig.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyMultipleRelocations.txt │ │ │ │ ├── testPcpMuseum_TrickyMultipleRelocations2.testenv │ │ │ │ │ ├── TrickyMultipleRelocations2 │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyMultipleRelocations2.txt │ │ │ │ ├── testPcpMuseum_TrickyMultipleRelocations3.testenv │ │ │ │ │ ├── TrickyMultipleRelocations3 │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyMultipleRelocations3.txt │ │ │ │ ├── testPcpMuseum_TrickyMultipleRelocations4.testenv │ │ │ │ │ ├── TrickyMultipleRelocations4 │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionErrors_TrickyMultipleRelocations4.txt │ │ │ │ │ │ └── compositionResults_TrickyMultipleRelocations4.txt │ │ │ │ ├── testPcpMuseum_TrickyMultipleRelocationsAndClasses.testenv │ │ │ │ │ ├── TrickyMultipleRelocationsAndClasses │ │ │ │ │ │ ├── EyeLidRig.sdf │ │ │ │ │ │ ├── EyeRig.sdf │ │ │ │ │ │ ├── FaceRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyMultipleRelocationsAndClasses.txt │ │ │ │ ├── testPcpMuseum_TrickyMultipleRelocationsAndClasses2.testenv │ │ │ │ │ ├── TrickyMultipleRelocationsAndClasses2 │ │ │ │ │ │ ├── LegsRig.sdf │ │ │ │ │ │ ├── SymLegRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyMultipleRelocationsAndClasses2.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedClasses.testenv │ │ │ │ │ ├── TrickyNestedClasses │ │ │ │ │ │ ├── HandRig.sdf │ │ │ │ │ │ ├── HandsRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedClasses.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedClasses2.testenv │ │ │ │ │ ├── TrickyNestedClasses2 │ │ │ │ │ │ ├── ClothHemRig.sdf │ │ │ │ │ │ ├── ClothRig.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedClasses2.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedClasses3.testenv │ │ │ │ │ ├── TrickyNestedClasses3 │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedClasses3.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedClasses4.testenv │ │ │ │ │ ├── TrickyNestedClasses4 │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedClasses4.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedSpecializes.testenv │ │ │ │ │ ├── TrickyNestedSpecializes │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ ├── ref3.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedSpecializes.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedSpecializes2.testenv │ │ │ │ │ ├── TrickyNestedSpecializes2 │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedSpecializes2.txt │ │ │ │ ├── testPcpMuseum_TrickyNestedVariants.testenv │ │ │ │ │ ├── TrickyNestedVariants │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNestedVariants.txt │ │ │ │ ├── testPcpMuseum_TrickyNonLocalVariantSelection.testenv │ │ │ │ │ ├── TrickyNonLocalVariantSelection │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyNonLocalVariantSelection.txt │ │ │ │ ├── testPcpMuseum_TrickyRelocatedTargetInVariant.testenv │ │ │ │ │ ├── TrickyRelocatedTargetInVariant │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyRelocatedTargetInVariant.txt │ │ │ │ ├── testPcpMuseum_TrickyRelocationOfPrimFromPayload.testenv │ │ │ │ │ ├── TrickyRelocationOfPrimFromPayload │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── model_payload.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickyRelocationOfPrimFromPayload.txt │ │ │ │ │ │ └── compositionResults_TrickyRelocationOfPrimFromPayload_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyRelocationOfPrimFromVariant.testenv │ │ │ │ │ ├── TrickyRelocationOfPrimFromVariant │ │ │ │ │ │ ├── CharRig.sdf │ │ │ │ │ │ ├── TailRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickyRelocationOfPrimFromVariant.txt │ │ │ │ │ │ └── compositionResults_TrickyRelocationOfPrimFromVariant_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyRelocationSquatter.testenv │ │ │ │ │ ├── TrickyRelocationSquatter │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyRelocationSquatter.txt │ │ │ │ ├── testPcpMuseum_TrickySpecializesAndInherits.testenv │ │ │ │ │ ├── TrickySpecializesAndInherits │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickySpecializesAndInherits.txt │ │ │ │ ├── testPcpMuseum_TrickySpecializesAndInherits2.testenv │ │ │ │ │ ├── TrickySpecializesAndInherits2 │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ ├── ref3.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickySpecializesAndInherits2.txt │ │ │ │ ├── testPcpMuseum_TrickySpecializesAndRelocates.testenv │ │ │ │ │ ├── TrickySpecializesAndRelocates │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickySpecializesAndRelocates.txt │ │ │ │ ├── testPcpMuseum_TrickySpookyInherits.testenv │ │ │ │ │ ├── TrickySpookyInherits │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickySpookyInherits.txt │ │ │ │ │ │ └── compositionResults_TrickySpookyInherits_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickySpookyInheritsInSymmetricArmRig.testenv │ │ │ │ │ ├── TrickySpookyInheritsInSymmetricArmRig │ │ │ │ │ │ ├── armRig.sdf │ │ │ │ │ │ ├── humanRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickySpookyInheritsInSymmetricArmRig.txt │ │ │ │ ├── testPcpMuseum_TrickySpookyInheritsInSymmetricBrowRig.testenv │ │ │ │ │ ├── TrickySpookyInheritsInSymmetricBrowRig │ │ │ │ │ │ ├── BrowRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickySpookyInheritsInSymmetricBrowRig.txt │ │ │ │ ├── testPcpMuseum_TrickySpookyVariantSelection.testenv │ │ │ │ │ ├── TrickySpookyVariantSelection │ │ │ │ │ │ ├── FaceRig.sdf │ │ │ │ │ │ ├── LipRig.sdf │ │ │ │ │ │ ├── SingleLip.sdf │ │ │ │ │ │ ├── TwoLips.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickySpookyVariantSelection.txt │ │ │ │ │ │ └── compositionResults_TrickySpookyVariantSelection_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickySpookyVariantSelectionInClass.testenv │ │ │ │ │ ├── TrickySpookyVariantSelectionInClass │ │ │ │ │ │ ├── CharRig.sdf │ │ │ │ │ │ ├── LegRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickySpookyVariantSelectionInClass.txt │ │ │ │ │ │ └── compositionResults_TrickySpookyVariantSelectionInClass_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantAncestralSelection.testenv │ │ │ │ │ ├── TrickyVariantAncestralSelection │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ ├── ref2.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickyVariantAncestralSelection.txt │ │ │ │ │ │ └── compositionResults_TrickyVariantAncestralSelection_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantFallbackDrivingAuthoredVariant.testenv │ │ │ │ │ ├── TrickyVariantFallbackDrivingAuthoredVariant │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantFallbackDrivingAuthoredVariant.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantInPayload.testenv │ │ │ │ │ ├── TrickyVariantInPayload │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantInPayload.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantIndependentSelection.testenv │ │ │ │ │ ├── TrickyVariantIndependentSelection │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickyVariantIndependentSelection.txt │ │ │ │ │ │ └── compositionResults_TrickyVariantIndependentSelection_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantOverrideOfFallback.testenv │ │ │ │ │ ├── TrickyVariantOverrideOfFallback │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantOverrideOfFallback.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantOverrideOfLocalClass.testenv │ │ │ │ │ ├── TrickyVariantOverrideOfLocalClass │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantOverrideOfLocalClass.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantOverrideOfRelocatedPrim.testenv │ │ │ │ │ ├── TrickyVariantOverrideOfRelocatedPrim │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantOverrideOfRelocatedPrim.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantSelectionInVariant.testenv │ │ │ │ │ ├── TrickyVariantSelectionInVariant │ │ │ │ │ │ ├── SlugJ_modelInterface.gen.sdf │ │ │ │ │ │ ├── SlugJ_payload.sdf │ │ │ │ │ │ ├── SlugJ_shaderDisplayDefs.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantSelectionInVariant_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantWeakerSelection.testenv │ │ │ │ │ ├── TrickyVariantWeakerSelection │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── compositionResults_TrickyVariantWeakerSelection.txt │ │ │ │ │ │ └── compositionResults_TrickyVariantWeakerSelection_pcp.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantWeakerSelection2.testenv │ │ │ │ │ ├── TrickyVariantWeakerSelection2 │ │ │ │ │ │ ├── geo.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantWeakerSelection2.txt │ │ │ │ ├── testPcpMuseum_TrickyVariantWeakerSelection3.testenv │ │ │ │ │ ├── TrickyVariantWeakerSelection3 │ │ │ │ │ │ ├── geo.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TrickyVariantWeakerSelection3.txt │ │ │ │ ├── testPcpMuseum_TypicalReferenceToChargroup.testenv │ │ │ │ │ ├── TypicalReferenceToChargroup │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TypicalReferenceToChargroup_pcp.txt │ │ │ │ ├── testPcpMuseum_TypicalReferenceToChargroupWithRename.testenv │ │ │ │ │ ├── TypicalReferenceToChargroupWithRename │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TypicalReferenceToChargroupWithRename.txt │ │ │ │ ├── testPcpMuseum_TypicalReferenceToRiggedModel.testenv │ │ │ │ │ ├── TypicalReferenceToRiggedModel │ │ │ │ │ │ ├── mcat.sdf │ │ │ │ │ │ ├── model_latest.sdf │ │ │ │ │ │ ├── model_latest_payload.sdf │ │ │ │ │ │ ├── model_stable.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ │ └── baseline │ │ │ │ │ │ └── compositionResults_TypicalReferenceToRiggedModel.txt │ │ │ │ ├── testPcpOwner.py │ │ │ │ ├── testPcpOwner.testenv │ │ │ │ │ ├── anim.sdf │ │ │ │ │ ├── owned.sdf │ │ │ │ │ ├── sequence.sdf │ │ │ │ │ ├── shot.sdf │ │ │ │ │ ├── stronger.sdf │ │ │ │ │ └── weaker.sdf │ │ │ │ ├── testPcpPathTranslation.py │ │ │ │ ├── testPcpPathTranslation.testenv │ │ │ │ │ ├── Ref.sdf │ │ │ │ │ ├── Root.sdf │ │ │ │ │ └── bug77818 │ │ │ │ │ │ ├── unit_main_cam.sdf │ │ │ │ │ │ └── unit_main_cam_defs.sdf │ │ │ │ ├── testPcpPathTranslation_HardToReach.cpp │ │ │ │ ├── testPcpPathTranslation_HardToReach.testenv │ │ │ │ │ ├── TestReverseTranslation_1 │ │ │ │ │ │ ├── 1.sdf │ │ │ │ │ │ ├── 2.sdf │ │ │ │ │ │ ├── 3.sdf │ │ │ │ │ │ └── 4.sdf │ │ │ │ │ └── TestReverseTranslation_3 │ │ │ │ │ │ ├── armRig.sdf │ │ │ │ │ │ ├── humanRig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug101300.py │ │ │ │ ├── testPcpRegressionBugs_bug101300.testenv │ │ │ │ │ └── bug101300 │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug69932.testenv │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── compositionResults_bug69932.txt │ │ │ │ │ └── bug69932 │ │ │ │ │ │ ├── LegsRig.sdf │ │ │ │ │ │ ├── Pigeon_bodyrig.sdf │ │ │ │ │ │ ├── Pigeon_rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug70951.py │ │ │ │ ├── testPcpRegressionBugs_bug70951.testenv │ │ │ │ │ └── bug70951 │ │ │ │ │ │ ├── JoyGroup.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug74847.testenv │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── compositionResults_bug74847.txt │ │ │ │ │ └── bug74847 │ │ │ │ │ │ ├── payload.sdf │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug82180.py │ │ │ │ ├── testPcpRegressionBugs_bug82180.testenv │ │ │ │ │ └── bug82180 │ │ │ │ │ │ ├── empty.sdf │ │ │ │ │ │ ├── group.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug90508.py │ │ │ │ ├── testPcpRegressionBugs_bug90508.testenv │ │ │ │ │ └── bug90508 │ │ │ │ │ │ ├── ref.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug90706.py │ │ │ │ ├── testPcpRegressionBugs_bug90706.testenv │ │ │ │ │ └── bug90706 │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug92827.testenv │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── compositionResults_bug92827.txt │ │ │ │ │ └── bug92827 │ │ │ │ │ │ └── root.sdf │ │ │ │ ├── testPcpRegressionBugs_bug92955.py │ │ │ │ ├── testPcpRegressionBugs_bug92955.testenv │ │ │ │ │ └── bug92955 │ │ │ │ │ │ ├── model.sdf │ │ │ │ │ │ ├── rig.sdf │ │ │ │ │ │ └── root.sdf │ │ │ │ └── testPcpRegressionBugs_case1.testenv │ │ │ │ │ ├── baseline │ │ │ │ │ └── compositionResults_case1.txt │ │ │ │ │ └── case1 │ │ │ │ │ ├── CurveTrackRig.sdf │ │ │ │ │ ├── FergusCloak_render.sdf │ │ │ │ │ ├── FergusCloak_standins.sdf │ │ │ │ │ └── root.sdf │ │ │ ├── types.cpp │ │ │ ├── types.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── wrapCache.cpp │ │ │ ├── wrapDependency.cpp │ │ │ ├── wrapDynamicFileFormatDependencyData.cpp │ │ │ ├── wrapErrors.cpp │ │ │ ├── wrapInstanceKey.cpp │ │ │ ├── wrapLayerStack.cpp │ │ │ ├── wrapLayerStackIdentifier.cpp │ │ │ ├── wrapMapExpression.cpp │ │ │ ├── wrapMapFunction.cpp │ │ │ ├── wrapNode.cpp │ │ │ ├── wrapPathTranslation.cpp │ │ │ ├── wrapPrimIndex.cpp │ │ │ ├── wrapPropertyIndex.cpp │ │ │ ├── wrapSite.cpp │ │ │ ├── wrapTestChangeProcessor.cpp │ │ │ └── wrapTypes.cpp │ │ ├── sdf │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── abstractData.cpp │ │ │ ├── abstractData.h │ │ │ ├── accessorHelpers.h │ │ │ ├── allowed.cpp │ │ │ ├── allowed.h │ │ │ ├── api.h │ │ │ ├── assetPath.cpp │ │ │ ├── assetPath.h │ │ │ ├── assetPathResolver.cpp │ │ │ ├── assetPathResolver.h │ │ │ ├── attributeSpec.cpp │ │ │ ├── attributeSpec.h │ │ │ ├── changeBlock.cpp │ │ │ ├── changeBlock.h │ │ │ ├── changeList.cpp │ │ │ ├── changeList.h │ │ │ ├── changeManager.cpp │ │ │ ├── changeManager.h │ │ │ ├── children.cpp │ │ │ ├── children.h │ │ │ ├── childrenPolicies.cpp │ │ │ ├── childrenPolicies.h │ │ │ ├── childrenProxy.cpp │ │ │ ├── childrenProxy.h │ │ │ ├── childrenUtils.cpp │ │ │ ├── childrenUtils.h │ │ │ ├── childrenView.cpp │ │ │ ├── childrenView.h │ │ │ ├── cleanupEnabler.cpp │ │ │ ├── cleanupEnabler.h │ │ │ ├── cleanupTracker.cpp │ │ │ ├── cleanupTracker.h │ │ │ ├── connectionListEditor.cpp │ │ │ ├── connectionListEditor.h │ │ │ ├── copyUtils.cpp │ │ │ ├── copyUtils.h │ │ │ ├── data.cpp │ │ │ ├── data.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── declareHandles.cpp │ │ │ ├── declareHandles.h │ │ │ ├── declareSpec.h │ │ │ ├── fileFormat.cpp │ │ │ ├── fileFormat.h │ │ │ ├── fileFormatRegistry.cpp │ │ │ ├── fileFormatRegistry.h │ │ │ ├── fileIO.cpp │ │ │ ├── fileIO.h │ │ │ ├── fileIO_Common.cpp │ │ │ ├── fileIO_Common.h │ │ │ ├── identity.cpp │ │ │ ├── identity.h │ │ │ ├── instantiatePool.h │ │ │ ├── layer.cpp │ │ │ ├── layer.h │ │ │ ├── layerOffset.cpp │ │ │ ├── layerOffset.h │ │ │ ├── layerRegistry.cpp │ │ │ ├── layerRegistry.h │ │ │ ├── layerStateDelegate.cpp │ │ │ ├── layerStateDelegate.h │ │ │ ├── layerTree.cpp │ │ │ ├── layerTree.h │ │ │ ├── layerUtils.cpp │ │ │ ├── layerUtils.h │ │ │ ├── listEditor.cpp │ │ │ ├── listEditor.h │ │ │ ├── listEditorProxy.cpp │ │ │ ├── listEditorProxy.h │ │ │ ├── listOp.cpp │ │ │ ├── listOp.h │ │ │ ├── listOpListEditor.cpp │ │ │ ├── listOpListEditor.h │ │ │ ├── listProxy.cpp │ │ │ ├── listProxy.h │ │ │ ├── mapEditProxy.cpp │ │ │ ├── mapEditProxy.h │ │ │ ├── mapEditor.cpp │ │ │ ├── mapEditor.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── namespaceEdit.cpp │ │ │ ├── namespaceEdit.h │ │ │ ├── notice.cpp │ │ │ ├── notice.h │ │ │ ├── overview.dox │ │ │ ├── parserHelpers.cpp │ │ │ ├── parserHelpers.h │ │ │ ├── parserValueContext.cpp │ │ │ ├── parserValueContext.h │ │ │ ├── path.cpp │ │ │ ├── path.h │ │ │ ├── path.lex.cpp │ │ │ ├── path.ll │ │ │ ├── path.tab.cpp │ │ │ ├── path.tab.h │ │ │ ├── path.yy │ │ │ ├── pathNode.cpp │ │ │ ├── pathNode.h │ │ │ ├── pathParser.cpp │ │ │ ├── pathParser.h │ │ │ ├── pathTable.cpp │ │ │ ├── pathTable.h │ │ │ ├── payload.cpp │ │ │ ├── payload.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── pool.cpp │ │ │ ├── pool.h │ │ │ ├── primSpec.cpp │ │ │ ├── primSpec.h │ │ │ ├── propertySpec.cpp │ │ │ ├── propertySpec.h │ │ │ ├── proxyPolicies.cpp │ │ │ ├── proxyPolicies.h │ │ │ ├── proxyTypes.cpp │ │ │ ├── proxyTypes.h │ │ │ ├── pseudoRootSpec.cpp │ │ │ ├── pseudoRootSpec.h │ │ │ ├── pyChildrenProxy.cpp │ │ │ ├── pyChildrenProxy.h │ │ │ ├── pyChildrenView.cpp │ │ │ ├── pyChildrenView.h │ │ │ ├── pyListEditorProxy.cpp │ │ │ ├── pyListEditorProxy.h │ │ │ ├── pyListOp.cpp │ │ │ ├── pyListOp.h │ │ │ ├── pyListProxy.cpp │ │ │ ├── pyListProxy.h │ │ │ ├── pyMapEditProxy.cpp │ │ │ ├── pyMapEditProxy.h │ │ │ ├── pySpec.cpp │ │ │ ├── pySpec.h │ │ │ ├── pyUtils.cpp │ │ │ ├── pyUtils.h │ │ │ ├── reference.cpp │ │ │ ├── reference.h │ │ │ ├── relationshipSpec.cpp │ │ │ ├── relationshipSpec.h │ │ │ ├── schema.cpp │ │ │ ├── schema.h │ │ │ ├── schemaTypeRegistration.h │ │ │ ├── sdfGenAsciiParsers.py │ │ │ ├── site.cpp │ │ │ ├── site.h │ │ │ ├── siteUtils.cpp │ │ │ ├── siteUtils.h │ │ │ ├── spec.cpp │ │ │ ├── spec.h │ │ │ ├── specType.cpp │ │ │ ├── specType.h │ │ │ ├── subLayerListEditor.cpp │ │ │ ├── subLayerListEditor.h │ │ │ ├── testenv │ │ │ │ ├── testSdfAttributeBlocking.cpp │ │ │ │ ├── testSdfAttributeBlocking.py │ │ │ │ ├── testSdfBatchNamespaceEdit.py │ │ │ │ ├── testSdfBatchNamespaceEdit.testenv │ │ │ │ │ ├── final.usda │ │ │ │ │ └── test.usda │ │ │ │ ├── testSdfColorConfig.py │ │ │ │ ├── testSdfColorConfig.testenv │ │ │ │ │ ├── colorConfig.sdf │ │ │ │ │ └── colorSpace.sdf │ │ │ │ ├── testSdfCopyUtils.py │ │ │ │ ├── testSdfCustomLayerData.py │ │ │ │ ├── testSdfCustomLayerData.testenv │ │ │ │ │ └── layerAccess.sdf │ │ │ │ ├── testSdfFileFormat.py │ │ │ │ ├── testSdfHardToReach.cpp │ │ │ │ ├── testSdfLayer.py │ │ │ │ ├── testSdfLayerMuting.py │ │ │ │ ├── testSdfLayerMuting.testenv │ │ │ │ │ ├── a.sdf │ │ │ │ │ └── b.sdf │ │ │ │ ├── testSdfListOp.py │ │ │ │ ├── testSdfMetaDataPlugInfo.cpp │ │ │ │ ├── testSdfMetaDataPlugInfo.testenv │ │ │ │ │ └── plugInfo.json │ │ │ │ ├── testSdfParsing.py │ │ │ │ ├── testSdfParsing.testenv │ │ │ │ │ ├── 01_empty.sdf │ │ │ │ │ ├── 02_simple.sdf │ │ │ │ │ ├── 03_bad_file.sdf │ │ │ │ │ ├── 04_general.sdf │ │ │ │ │ ├── 05_bad_file.sdf │ │ │ │ │ ├── 06_largevalue.sdf │ │ │ │ │ ├── 07_end.sdf │ │ │ │ │ ├── 08_bad_file.sdf │ │ │ │ │ ├── 09_bad_type.sdf │ │ │ │ │ ├── 100_bad_roleNameChange.sdf │ │ │ │ │ ├── 103_bad_attributeVariability.sdf │ │ │ │ │ ├── 104_uniformAttributes.sdf │ │ │ │ │ ├── 108_bad_inheritPath.sdf │ │ │ │ │ ├── 10_bad_value.sdf │ │ │ │ │ ├── 111_string_arrays.sdf │ │ │ │ │ ├── 112_nested_dictionaries.sdf │ │ │ │ │ ├── 113_displayName_metadata.sdf │ │ │ │ │ ├── 114_bad_prefix_metadata.sdf │ │ │ │ │ ├── 115_symmetricPeer_metadata.sdf │ │ │ │ │ ├── 116_permission_metadata.sdf │ │ │ │ │ ├── 117_bad_permission_metadata.sdf │ │ │ │ │ ├── 118_bad_permission_metadata_2.sdf │ │ │ │ │ ├── 119_bad_permission_metadata_3.sdf │ │ │ │ │ ├── 11_debug.sdf │ │ │ │ │ ├── 124_badwrite_marker_names.sdf │ │ │ │ │ ├── 127_varyingRelationship.sdf │ │ │ │ │ ├── 12_bad_value.sdf │ │ │ │ │ ├── 132_references.sdf │ │ │ │ │ ├── 133_bad_reference.sdf │ │ │ │ │ ├── 139_relocates_metadata.sdf │ │ │ │ │ ├── 13_bad_value.sdf │ │ │ │ │ ├── 140_bad_relocates_paths_1.sdf │ │ │ │ │ ├── 141_bad_relocates_paths_2.sdf │ │ │ │ │ ├── 142_bad_relocates_paths_3.sdf │ │ │ │ │ ├── 143_bad_relocates_formatting_1.sdf │ │ │ │ │ ├── 144_bad_relocates_formatting_2.sdf │ │ │ │ │ ├── 145_bad_relocates_formatting_3.sdf │ │ │ │ │ ├── 146_bad_relocates_formatting_4.sdf │ │ │ │ │ ├── 147_bad_relocates_formatting_5.sdf │ │ │ │ │ ├── 148_relocates_empty_map.sdf │ │ │ │ │ ├── 149_kind_metadata.sdf │ │ │ │ │ ├── 14_bad_value.sdf │ │ │ │ │ ├── 150_bad_kind_metadata_1.sdf │ │ │ │ │ ├── 152_payloads.sdf │ │ │ │ │ ├── 153_bad_payloads.sdf │ │ │ │ │ ├── 154_relationship_noLoadHint.sdf │ │ │ │ │ ├── 155_bad_relationship_noLoadHint.sdf │ │ │ │ │ ├── 159_symmetryFunction_empty.sdf │ │ │ │ │ ├── 15_bad_list.sdf │ │ │ │ │ ├── 160_bad_variant_name1.sdf │ │ │ │ │ ├── 161_bad_variant_name2.sdf │ │ │ │ │ ├── 162_bad_variant_selection1.sdf │ │ │ │ │ ├── 163_bad_variant_selection2.sdf │ │ │ │ │ ├── 164_attr_mappers.sdf │ │ │ │ │ ├── 16_bad_list.sdf │ │ │ │ │ ├── 175_asset_path_with_colons.sdf │ │ │ │ │ ├── 176_empty_lists.sdf │ │ │ │ │ ├── 177_bad_empty_lists.sdf │ │ │ │ │ ├── 178_invalid_typeName.sdf │ │ │ │ │ ├── 179_bad_shaped_attr_dimensions1.sdf │ │ │ │ │ ├── 17_bad_attributeaccess.sdf │ │ │ │ │ ├── 180_asset_paths.sdf │ │ │ │ │ ├── 181_bad_variant_in_connection.sdf │ │ │ │ │ ├── 182_bad_variant_in_relationship.sdf │ │ │ │ │ ├── 183_time_samples.sdf │ │ │ │ │ ├── 183_unknown_type_and_metadata.sdf │ │ │ │ │ ├── 184_def_AnyType.sdf │ │ │ │ │ ├── 185_namespaced_properties.sdf │ │ │ │ │ ├── 186_bad_prefix_substitution_key.sdf │ │ │ │ │ ├── 187_displayName_metadata.sdf │ │ │ │ │ ├── 188_defaultRefTarget_metadata.sdf │ │ │ │ │ ├── 189_prim_assetInfo.sdf │ │ │ │ │ ├── 18_bad_primaccess.sdf │ │ │ │ │ ├── 190_property_assetInfo.sdf │ │ │ │ │ ├── 191_instanceable.sdf │ │ │ │ │ ├── 192_listop_metadata.sdf │ │ │ │ │ ├── 193_customLayerData_metadata.sdf │ │ │ │ │ ├── 194_bad_customLayerData_metadata.sdf │ │ │ │ │ ├── 195_specializes.sdf │ │ │ │ │ ├── 196_colorConfiguration_metadata.sdf │ │ │ │ │ ├── 197_bad_colorConfiguration_metadata.sdf │ │ │ │ │ ├── 198_colorSpace_metadata.sdf │ │ │ │ │ ├── 199_bad_colorSpace_metadata.sdf │ │ │ │ │ ├── 19_bad_relationshipaccess.sdf │ │ │ │ │ ├── 200_bad_emptyFile.sdf │ │ │ │ │ ├── 201_format_specifiers_in_strings.sdf │ │ │ │ │ ├── 20_optionalsemicolons.sdf │ │ │ │ │ ├── 21_bad_newline1.sdf │ │ │ │ │ ├── 22_bad_newline2.sdf │ │ │ │ │ ├── 23_bad_newline3.sdf │ │ │ │ │ ├── 24_bad_newline4.sdf │ │ │ │ │ ├── 25_bad_newline5.sdf │ │ │ │ │ ├── 26_bad_newline6.sdf │ │ │ │ │ ├── 27_bad_newline7.sdf │ │ │ │ │ ├── 28_bad_newline8.sdf │ │ │ │ │ ├── 29_bad_newline9.sdf │ │ │ │ │ ├── 30_bad_specifier.sdf │ │ │ │ │ ├── 31_attribute_values.sdf │ │ │ │ │ ├── 32_relationship_syntax.sdf │ │ │ │ │ ├── 33_bad_relationship_duplicate_target.sdf │ │ │ │ │ ├── 34_bad_relationship_duplicate_target_attr.sdf │ │ │ │ │ ├── 36_tasks.sdf │ │ │ │ │ ├── 37_keyword_properties.sdf │ │ │ │ │ ├── 38_attribute_connections.sdf │ │ │ │ │ ├── 39_variants.sdf │ │ │ │ │ ├── 40_repeater.sdf │ │ │ │ │ ├── 41_noEndingNewline.sdf │ │ │ │ │ ├── 42_bad_noNewlineBetweenComps.sdf │ │ │ │ │ ├── 45_rareValueTypes.sdf │ │ │ │ │ ├── 46_weirdStringContent.sdf │ │ │ │ │ ├── 47_miscSceneInfo.sdf │ │ │ │ │ ├── 49_bad_list.sdf │ │ │ │ │ ├── 50_bad_primPath.sdf │ │ │ │ │ ├── 51_propPath.sdf │ │ │ │ │ ├── 52_bad_attr.sdf │ │ │ │ │ ├── 53_bad_typeName.sdf │ │ │ │ │ ├── 54_bad_value.sdf │ │ │ │ │ ├── 55_bad_value.sdf │ │ │ │ │ ├── 56_bad_value.sdf │ │ │ │ │ ├── 57_bad_relListEditing.sdf │ │ │ │ │ ├── 58_bad_relListEditing.sdf │ │ │ │ │ ├── 59_bad_connectListEditing.sdf │ │ │ │ │ ├── 60_bad_groupListEditing.sdf │ │ │ │ │ ├── 61_bad_primName.sdf │ │ │ │ │ ├── 64_bad_boolPrimInstantiate.sdf │ │ │ │ │ ├── 66_bad_attrVariability.sdf │ │ │ │ │ ├── 69_bad_list.sdf │ │ │ │ │ ├── 70_bad_list.sdf │ │ │ │ │ ├── 71_empty_shaped_attrs.sdf │ │ │ │ │ ├── 74_prim_customData.sdf │ │ │ │ │ ├── 75_attribute_customData.sdf │ │ │ │ │ ├── 76_relationship_customData.sdf │ │ │ │ │ ├── 80_bad_hidden.sdf │ │ │ │ │ ├── 81_namespace_reorder.sdf │ │ │ │ │ ├── 82_bad_tuple_dimensions1.sdf │ │ │ │ │ ├── 83_bad_tuple_dimensions2.sdf │ │ │ │ │ ├── 84_bad_tuple_dimensions3.sdf │ │ │ │ │ ├── 85_bad_tuple_dimensions4.sdf │ │ │ │ │ ├── 86_bad_tuple_dimensions5.sdf │ │ │ │ │ ├── 88_attribute_displayUnit.sdf │ │ │ │ │ ├── 89_bad_attribute_displayUnit.sdf │ │ │ │ │ ├── 90_bad_dupePrim.sdf │ │ │ │ │ ├── 91_bad_valueType.sdf │ │ │ │ │ ├── 92_bad_variantSelectionType.sdf │ │ │ │ │ ├── 93_hidden.sdf │ │ │ │ │ ├── 94_bad_hiddenAttr.sdf │ │ │ │ │ ├── 95_bad_hiddenRel.sdf │ │ │ │ │ ├── 96_bad_valueType.sdf │ │ │ │ │ ├── 97_bad_valueType.sdf │ │ │ │ │ ├── 98_bad_valueType.sdf │ │ │ │ │ ├── 99_bad_typeNameChange.sdf │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── 01_empty.sdf │ │ │ │ │ │ ├── 02_simple.sdf │ │ │ │ │ │ ├── 04_general.sdf │ │ │ │ │ │ ├── 06_largevalue.sdf │ │ │ │ │ │ ├── 104_uniformAttributes.sdf │ │ │ │ │ │ ├── 111_string_arrays.sdf │ │ │ │ │ │ ├── 112_nested_dictionaries.sdf │ │ │ │ │ │ ├── 113_displayName_metadata.sdf │ │ │ │ │ │ ├── 115_symmetricPeer_metadata.sdf │ │ │ │ │ │ ├── 116_permission_metadata.sdf │ │ │ │ │ │ ├── 11_debug.sdf │ │ │ │ │ │ ├── 120_sub_attribute_relations.sdf │ │ │ │ │ │ ├── 127_varyingRelationship.sdf │ │ │ │ │ │ ├── 132_references.sdf │ │ │ │ │ │ ├── 139_relocates_metadata.sdf │ │ │ │ │ │ ├── 148_relocates_empty_map.sdf │ │ │ │ │ │ ├── 149_kind_metadata.sdf │ │ │ │ │ │ ├── 152_payloads.sdf │ │ │ │ │ │ ├── 154_relationship_noLoadHint.sdf │ │ │ │ │ │ ├── 159_symmetryFunction_empty.sdf │ │ │ │ │ │ ├── 175_asset_path_with_colons.sdf │ │ │ │ │ │ ├── 176_empty_lists.sdf │ │ │ │ │ │ ├── 178_invalid_typeName.sdf │ │ │ │ │ │ ├── 180_asset_paths.sdf │ │ │ │ │ │ ├── 183_time_samples.sdf │ │ │ │ │ │ ├── 183_unknown_type_and_metadata.sdf │ │ │ │ │ │ ├── 184_def_AnyType.sdf │ │ │ │ │ │ ├── 185_namespaced_properties.sdf │ │ │ │ │ │ ├── 187_displayName_metadata.sdf │ │ │ │ │ │ ├── 188_defaultRefTarget_metadata.sdf │ │ │ │ │ │ ├── 189_prim_assetInfo.sdf │ │ │ │ │ │ ├── 190_property_assetInfo.sdf │ │ │ │ │ │ ├── 191_instanceable.sdf │ │ │ │ │ │ ├── 192_listop_metadata.sdf │ │ │ │ │ │ ├── 193_customLayerData_metadata.sdf │ │ │ │ │ │ ├── 194_bad_customLayerData_metadata.sdf │ │ │ │ │ │ ├── 195_specializes.sdf │ │ │ │ │ │ ├── 196_colorConfiguration_metadata.sdf │ │ │ │ │ │ ├── 198_colorSpace_metadata.sdf │ │ │ │ │ │ ├── 201_format_specifiers_in_strings.sdf │ │ │ │ │ │ ├── 20_optionalsemicolons.sdf │ │ │ │ │ │ ├── 31_attribute_values.sdf │ │ │ │ │ │ ├── 32_relationship_syntax.sdf │ │ │ │ │ │ ├── 36_tasks.sdf │ │ │ │ │ │ ├── 37_keyword_properties.sdf │ │ │ │ │ │ ├── 38_attribute_connections.sdf │ │ │ │ │ │ ├── 39_variants.sdf │ │ │ │ │ │ ├── 40_repeater.sdf │ │ │ │ │ │ ├── 41_noEndingNewline.sdf │ │ │ │ │ │ ├── 45_rareValueTypes.sdf │ │ │ │ │ │ ├── 46_weirdStringContent.sdf │ │ │ │ │ │ ├── 47_miscSceneInfo.sdf │ │ │ │ │ │ ├── 51_propPath.sdf │ │ │ │ │ │ ├── 71_empty_shaped_attrs.sdf │ │ │ │ │ │ ├── 74_prim_customData.sdf │ │ │ │ │ │ ├── 75_attribute_customData.sdf │ │ │ │ │ │ ├── 76_relationship_customData.sdf │ │ │ │ │ │ ├── 81_namespace_reorder.sdf │ │ │ │ │ │ ├── 88_attribute_displayUnit.sdf │ │ │ │ │ │ └── 93_hidden.sdf │ │ │ │ │ └── plugInfo.json │ │ │ │ ├── testSdfParsingOld.testenv │ │ │ │ │ ├── 01_empty.sdf │ │ │ │ │ ├── 02_simple.sdf │ │ │ │ │ ├── 03_bad_file.sdf │ │ │ │ │ ├── 04_general.sdf │ │ │ │ │ ├── 05_bad_file.sdf │ │ │ │ │ ├── 06_largevalue.sdf │ │ │ │ │ ├── 07_end.sdf │ │ │ │ │ ├── 08_bad_file.sdf │ │ │ │ │ ├── 09_bad_type.sdf │ │ │ │ │ ├── 100_bad_roleNameChange.sdf │ │ │ │ │ ├── 103_bad_attributeVariability.sdf │ │ │ │ │ ├── 104_uniformAttributes.sdf │ │ │ │ │ ├── 108_bad_inheritPath.sdf │ │ │ │ │ ├── 10_bad_value.sdf │ │ │ │ │ ├── 111_string_arrays.sdf │ │ │ │ │ ├── 112_nested_dictionaries.sdf │ │ │ │ │ ├── 113_displayName_metadata.sdf │ │ │ │ │ ├── 114_bad_prefix_metadata.sdf │ │ │ │ │ ├── 115_symmetricPeer_metadata.sdf │ │ │ │ │ ├── 116_permission_metadata.sdf │ │ │ │ │ ├── 117_bad_permission_metadata.sdf │ │ │ │ │ ├── 118_bad_permission_metadata_2.sdf │ │ │ │ │ ├── 119_bad_permission_metadata_3.sdf │ │ │ │ │ ├── 11_debug.sdf │ │ │ │ │ ├── 124_badwrite_marker_names.sdf │ │ │ │ │ ├── 127_varyingRelationship.sdf │ │ │ │ │ ├── 12_bad_value.sdf │ │ │ │ │ ├── 132_references.sdf │ │ │ │ │ ├── 133_bad_reference.sdf │ │ │ │ │ ├── 139_relocates_metadata.sdf │ │ │ │ │ ├── 13_bad_value.sdf │ │ │ │ │ ├── 140_bad_relocates_paths_1.sdf │ │ │ │ │ ├── 141_bad_relocates_paths_2.sdf │ │ │ │ │ ├── 142_bad_relocates_paths_3.sdf │ │ │ │ │ ├── 143_bad_relocates_formatting_1.sdf │ │ │ │ │ ├── 144_bad_relocates_formatting_2.sdf │ │ │ │ │ ├── 145_bad_relocates_formatting_3.sdf │ │ │ │ │ ├── 146_bad_relocates_formatting_4.sdf │ │ │ │ │ ├── 147_bad_relocates_formatting_5.sdf │ │ │ │ │ ├── 148_relocates_empty_map.sdf │ │ │ │ │ ├── 149_kind_metadata.sdf │ │ │ │ │ ├── 14_bad_value.sdf │ │ │ │ │ ├── 150_bad_kind_metadata_1.sdf │ │ │ │ │ ├── 152_payloads.sdf │ │ │ │ │ ├── 153_bad_payloads.sdf │ │ │ │ │ ├── 154_relationship_noLoadHint.sdf │ │ │ │ │ ├── 155_bad_relationship_noLoadHint.sdf │ │ │ │ │ ├── 159_symmetryFunction_empty.sdf │ │ │ │ │ ├── 15_bad_list.sdf │ │ │ │ │ ├── 160_bad_variant_name1.sdf │ │ │ │ │ ├── 161_bad_variant_name2.sdf │ │ │ │ │ ├── 162_bad_variant_selection1.sdf │ │ │ │ │ ├── 163_bad_variant_selection2.sdf │ │ │ │ │ ├── 16_bad_list.sdf │ │ │ │ │ ├── 175_asset_path_with_colons.sdf │ │ │ │ │ ├── 176_empty_lists.sdf │ │ │ │ │ ├── 177_bad_empty_lists.sdf │ │ │ │ │ ├── 178_invalid_typeName.sdf │ │ │ │ │ ├── 179_bad_shaped_attr_dimensions1.sdf │ │ │ │ │ ├── 17_bad_attributeaccess.sdf │ │ │ │ │ ├── 180_asset_paths.sdf │ │ │ │ │ ├── 181_bad_variant_in_connection.sdf │ │ │ │ │ ├── 182_bad_variant_in_relationship.sdf │ │ │ │ │ ├── 183_time_samples.sdf │ │ │ │ │ ├── 183_unknown_type_and_metadata.sdf │ │ │ │ │ ├── 184_def_AnyType.sdf │ │ │ │ │ ├── 185_namespaced_properties.sdf │ │ │ │ │ ├── 186_bad_prefix_substitution_key.sdf │ │ │ │ │ ├── 187_displayName_metadata.sdf │ │ │ │ │ ├── 188_defaultRefTarget_metadata.sdf │ │ │ │ │ ├── 189_prim_assetInfo.sdf │ │ │ │ │ ├── 18_bad_primaccess.sdf │ │ │ │ │ ├── 190_property_assetInfo.sdf │ │ │ │ │ ├── 191_instanceable.sdf │ │ │ │ │ ├── 192_listop_metadata.sdf │ │ │ │ │ ├── 193_customLayerData_metadata.sdf │ │ │ │ │ ├── 194_bad_customLayerData_metadata.sdf │ │ │ │ │ ├── 195_specializes.sdf │ │ │ │ │ ├── 196_colorConfiguration_metadata.sdf │ │ │ │ │ ├── 197_bad_colorConfiguration_metadata.sdf │ │ │ │ │ ├── 198_colorSpace_metadata.sdf │ │ │ │ │ ├── 199_bad_colorSpace_metadata.sdf │ │ │ │ │ ├── 19_bad_relationshipaccess.sdf │ │ │ │ │ ├── 200_bad_emptyFile.sdf │ │ │ │ │ ├── 201_format_specifiers_in_strings.sdf │ │ │ │ │ ├── 20_optionalsemicolons.sdf │ │ │ │ │ ├── 21_bad_newline1.sdf │ │ │ │ │ ├── 22_bad_newline2.sdf │ │ │ │ │ ├── 23_bad_newline3.sdf │ │ │ │ │ ├── 24_bad_newline4.sdf │ │ │ │ │ ├── 25_bad_newline5.sdf │ │ │ │ │ ├── 26_bad_newline6.sdf │ │ │ │ │ ├── 27_bad_newline7.sdf │ │ │ │ │ ├── 28_bad_newline8.sdf │ │ │ │ │ ├── 29_bad_newline9.sdf │ │ │ │ │ ├── 30_bad_specifier.sdf │ │ │ │ │ ├── 31_attribute_values.sdf │ │ │ │ │ ├── 32_relationship_syntax.sdf │ │ │ │ │ ├── 33_bad_relationship_duplicate_target.sdf │ │ │ │ │ ├── 34_bad_relationship_duplicate_target_attr.sdf │ │ │ │ │ ├── 36_tasks.sdf │ │ │ │ │ ├── 37_keyword_properties.sdf │ │ │ │ │ ├── 38_attribute_connections.sdf │ │ │ │ │ ├── 39_variants.sdf │ │ │ │ │ ├── 40_repeater.sdf │ │ │ │ │ ├── 41_noEndingNewline.sdf │ │ │ │ │ ├── 42_bad_noNewlineBetweenComps.sdf │ │ │ │ │ ├── 45_rareValueTypes.sdf │ │ │ │ │ ├── 46_weirdStringContent.sdf │ │ │ │ │ ├── 47_miscSceneInfo.sdf │ │ │ │ │ ├── 49_bad_list.sdf │ │ │ │ │ ├── 50_bad_primPath.sdf │ │ │ │ │ ├── 51_propPath.sdf │ │ │ │ │ ├── 52_bad_attr.sdf │ │ │ │ │ ├── 53_bad_typeName.sdf │ │ │ │ │ ├── 54_bad_value.sdf │ │ │ │ │ ├── 55_bad_value.sdf │ │ │ │ │ ├── 56_bad_value.sdf │ │ │ │ │ ├── 57_bad_relListEditing.sdf │ │ │ │ │ ├── 58_bad_relListEditing.sdf │ │ │ │ │ ├── 59_bad_connectListEditing.sdf │ │ │ │ │ ├── 60_bad_groupListEditing.sdf │ │ │ │ │ ├── 61_bad_primName.sdf │ │ │ │ │ ├── 64_bad_boolPrimInstantiate.sdf │ │ │ │ │ ├── 66_bad_attrVariability.sdf │ │ │ │ │ ├── 69_bad_list.sdf │ │ │ │ │ ├── 70_bad_list.sdf │ │ │ │ │ ├── 71_empty_shaped_attrs.sdf │ │ │ │ │ ├── 74_prim_customData.sdf │ │ │ │ │ ├── 75_attribute_customData.sdf │ │ │ │ │ ├── 76_relationship_customData.sdf │ │ │ │ │ ├── 80_bad_hidden.sdf │ │ │ │ │ ├── 81_namespace_reorder.sdf │ │ │ │ │ ├── 82_bad_tuple_dimensions1.sdf │ │ │ │ │ ├── 83_bad_tuple_dimensions2.sdf │ │ │ │ │ ├── 84_bad_tuple_dimensions3.sdf │ │ │ │ │ ├── 85_bad_tuple_dimensions4.sdf │ │ │ │ │ ├── 86_bad_tuple_dimensions5.sdf │ │ │ │ │ ├── 88_attribute_displayUnit.sdf │ │ │ │ │ ├── 89_bad_attribute_displayUnit.sdf │ │ │ │ │ ├── 90_bad_dupePrim.sdf │ │ │ │ │ ├── 91_bad_valueType.sdf │ │ │ │ │ ├── 92_bad_variantSelectionType.sdf │ │ │ │ │ ├── 93_hidden.sdf │ │ │ │ │ ├── 94_bad_hiddenAttr.sdf │ │ │ │ │ ├── 95_bad_hiddenRel.sdf │ │ │ │ │ ├── 96_bad_valueType.sdf │ │ │ │ │ ├── 97_bad_valueType.sdf │ │ │ │ │ ├── 98_bad_valueType.sdf │ │ │ │ │ ├── 99_bad_typeNameChange.sdf │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── 01_empty.sdf │ │ │ │ │ │ ├── 02_simple.sdf │ │ │ │ │ │ ├── 04_general.sdf │ │ │ │ │ │ ├── 06_largevalue.sdf │ │ │ │ │ │ ├── 104_uniformAttributes.sdf │ │ │ │ │ │ ├── 111_string_arrays.sdf │ │ │ │ │ │ ├── 112_nested_dictionaries.sdf │ │ │ │ │ │ ├── 113_displayName_metadata.sdf │ │ │ │ │ │ ├── 115_symmetricPeer_metadata.sdf │ │ │ │ │ │ ├── 116_permission_metadata.sdf │ │ │ │ │ │ ├── 11_debug.sdf │ │ │ │ │ │ ├── 120_sub_attribute_relations.sdf │ │ │ │ │ │ ├── 127_varyingRelationship.sdf │ │ │ │ │ │ ├── 132_references.sdf │ │ │ │ │ │ ├── 139_relocates_metadata.sdf │ │ │ │ │ │ ├── 148_relocates_empty_map.sdf │ │ │ │ │ │ ├── 149_kind_metadata.sdf │ │ │ │ │ │ ├── 152_payloads.sdf │ │ │ │ │ │ ├── 154_relationship_noLoadHint.sdf │ │ │ │ │ │ ├── 159_symmetryFunction_empty.sdf │ │ │ │ │ │ ├── 175_asset_path_with_colons.sdf │ │ │ │ │ │ ├── 176_empty_lists.sdf │ │ │ │ │ │ ├── 178_invalid_typeName.sdf │ │ │ │ │ │ ├── 180_asset_paths.sdf │ │ │ │ │ │ ├── 183_time_samples.sdf │ │ │ │ │ │ ├── 183_unknown_type_and_metadata.sdf │ │ │ │ │ │ ├── 184_def_AnyType.sdf │ │ │ │ │ │ ├── 185_namespaced_properties.sdf │ │ │ │ │ │ ├── 187_displayName_metadata.sdf │ │ │ │ │ │ ├── 188_defaultRefTarget_metadata.sdf │ │ │ │ │ │ ├── 189_prim_assetInfo.sdf │ │ │ │ │ │ ├── 190_property_assetInfo.sdf │ │ │ │ │ │ ├── 191_instanceable.sdf │ │ │ │ │ │ ├── 192_listop_metadata.sdf │ │ │ │ │ │ ├── 193_customLayerData_metadata.sdf │ │ │ │ │ │ ├── 194_bad_customLayerData_metadata.sdf │ │ │ │ │ │ ├── 195_specializes.sdf │ │ │ │ │ │ ├── 196_colorConfiguration_metadata.sdf │ │ │ │ │ │ ├── 198_colorSpace_metadata.sdf │ │ │ │ │ │ ├── 201_format_specifiers_in_strings.sdf │ │ │ │ │ │ ├── 20_optionalsemicolons.sdf │ │ │ │ │ │ ├── 31_attribute_values.sdf │ │ │ │ │ │ ├── 32_relationship_syntax.sdf │ │ │ │ │ │ ├── 36_tasks.sdf │ │ │ │ │ │ ├── 37_keyword_properties.sdf │ │ │ │ │ │ ├── 38_attribute_connections.sdf │ │ │ │ │ │ ├── 39_variants.sdf │ │ │ │ │ │ ├── 40_repeater.sdf │ │ │ │ │ │ ├── 41_noEndingNewline.sdf │ │ │ │ │ │ ├── 45_rareValueTypes.sdf │ │ │ │ │ │ ├── 46_weirdStringContent.sdf │ │ │ │ │ │ ├── 47_miscSceneInfo.sdf │ │ │ │ │ │ ├── 51_propPath.sdf │ │ │ │ │ │ ├── 71_empty_shaped_attrs.sdf │ │ │ │ │ │ ├── 74_prim_customData.sdf │ │ │ │ │ │ ├── 75_attribute_customData.sdf │ │ │ │ │ │ ├── 76_relationship_customData.sdf │ │ │ │ │ │ ├── 81_namespace_reorder.sdf │ │ │ │ │ │ ├── 88_attribute_displayUnit.sdf │ │ │ │ │ │ └── 93_hidden.sdf │ │ │ │ │ └── plugInfo.json │ │ │ │ ├── testSdfPath.py │ │ │ │ ├── testSdfPath2.py │ │ │ │ ├── testSdfPath2Construct.py │ │ │ │ ├── testSdfPathParser.cpp │ │ │ │ ├── testSdfPathTable.cpp │ │ │ │ ├── testSdfPathThreading.cpp │ │ │ │ ├── testSdfPayload.py │ │ │ │ ├── testSdfReference.py │ │ │ │ ├── testSdfSpecHash.py │ │ │ │ ├── testSdfTimeSamples.py │ │ │ │ └── testSdfTypes.py │ │ │ ├── textFileFormat.cpp │ │ │ ├── textFileFormat.h │ │ │ ├── textFileFormat.lex.cpp │ │ │ ├── textFileFormat.ll │ │ │ ├── textFileFormat.tab.cpp │ │ │ ├── textFileFormat.tab.h │ │ │ ├── textFileFormat.yy │ │ │ ├── textParserContext.cpp │ │ │ ├── textParserContext.h │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── types.cpp │ │ │ ├── types.h │ │ │ ├── valueTypeName.cpp │ │ │ ├── valueTypeName.h │ │ │ ├── valueTypePrivate.h │ │ │ ├── valueTypeRegistry.cpp │ │ │ ├── valueTypeRegistry.h │ │ │ ├── variantSetSpec.cpp │ │ │ ├── variantSetSpec.h │ │ │ ├── variantSpec.cpp │ │ │ ├── variantSpec.h │ │ │ ├── vectorListEditor.cpp │ │ │ ├── vectorListEditor.h │ │ │ ├── wrapArrayAssetPath.cpp │ │ │ ├── wrapAssetPath.cpp │ │ │ ├── wrapAttributeSpec.cpp │ │ │ ├── wrapChangeBlock.cpp │ │ │ ├── wrapCleanupEnabler.cpp │ │ │ ├── wrapCopyUtils.cpp │ │ │ ├── wrapFileFormat.cpp │ │ │ ├── wrapLayer.cpp │ │ │ ├── wrapLayerOffset.cpp │ │ │ ├── wrapLayerTree.cpp │ │ │ ├── wrapNamespaceEdit.cpp │ │ │ ├── wrapNotice.cpp │ │ │ ├── wrapPath.cpp │ │ │ ├── wrapPayload.cpp │ │ │ ├── wrapPrimSpec.cpp │ │ │ ├── wrapPropertySpec.cpp │ │ │ ├── wrapPseudoRootSpec.cpp │ │ │ ├── wrapReference.cpp │ │ │ ├── wrapRelationshipSpec.cpp │ │ │ ├── wrapSpec.cpp │ │ │ ├── wrapTypes.cpp │ │ │ ├── wrapValueTypeName.cpp │ │ │ ├── wrapVariantSetSpec.cpp │ │ │ └── wrapVariantSpec.cpp │ │ ├── sdr │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── declare.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── registry.cpp │ │ │ ├── registry.h │ │ │ ├── shaderMetadataHelpers.cpp │ │ │ ├── shaderMetadataHelpers.h │ │ │ ├── shaderNode.cpp │ │ │ ├── shaderNode.h │ │ │ ├── shaderParserTestUtils.py │ │ │ ├── shaderProperty.cpp │ │ │ ├── shaderProperty.h │ │ │ ├── testenv │ │ │ │ ├── TestSdrRegistry_argsParserPlugin.cpp │ │ │ │ ├── TestSdrRegistry_discoveryPlugin.cpp │ │ │ │ ├── TestSdrRegistry_oslParserPlugin.cpp │ │ │ │ ├── TestSdrRegistry_plugInfo.json │ │ │ │ └── testSdrRegistry.py │ │ │ ├── wrapRegistry.cpp │ │ │ ├── wrapShaderNode.cpp │ │ │ └── wrapShaderProperty.cpp │ │ ├── usd │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.in │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── apiSchemaBase.cpp │ │ │ ├── apiSchemaBase.h │ │ │ ├── attribute.cpp │ │ │ ├── attribute.h │ │ │ ├── attributeQuery.cpp │ │ │ ├── attributeQuery.h │ │ │ ├── clip.cpp │ │ │ ├── clip.h │ │ │ ├── clipCache.cpp │ │ │ ├── clipCache.h │ │ │ ├── clipsAPI.cpp │ │ │ ├── clipsAPI.h │ │ │ ├── codegenTemplates │ │ │ │ ├── api.h │ │ │ │ ├── plugInfo.json │ │ │ │ ├── schemaClass.cpp │ │ │ │ ├── schemaClass.h │ │ │ │ ├── tokens.cpp │ │ │ │ ├── tokens.h │ │ │ │ ├── wrapSchemaClass.cpp │ │ │ │ └── wrapTokens.cpp │ │ │ ├── collectionAPI.cpp │ │ │ ├── collectionAPI.h │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── crateData.cpp │ │ │ ├── crateData.h │ │ │ ├── crateDataTypes.h │ │ │ ├── crateFile.cpp │ │ │ ├── crateFile.h │ │ │ ├── crateInfo.cpp │ │ │ ├── crateInfo.h │ │ │ ├── crateValueInliners.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── doxygen │ │ │ │ ├── advancedFeatures.dox │ │ │ │ ├── authoringEditing.dox │ │ │ │ ├── bestPractices.dox │ │ │ │ ├── commonIdioms.dox │ │ │ │ ├── datatypes.dox │ │ │ │ ├── dynamicFileFormat.dox │ │ │ │ ├── externalOverview.dox │ │ │ │ ├── front.dox │ │ │ │ ├── generatingSchemas.dox │ │ │ │ ├── instancing.dox │ │ │ │ ├── multiThreading.dox │ │ │ │ ├── objectModel.dox │ │ │ │ ├── propertiesOfSceneDescription.dox │ │ │ │ └── valueClips.dox │ │ │ ├── editContext.cpp │ │ │ ├── editContext.h │ │ │ ├── editTarget.cpp │ │ │ ├── editTarget.h │ │ │ ├── examples.cpp │ │ │ ├── generatedSchema.usda │ │ │ ├── images │ │ │ │ ├── USDLogoDocs.png │ │ │ │ ├── USDLogoLrgWithAlpha.png │ │ │ │ └── instancing │ │ │ │ │ ├── Instancing_Example.png │ │ │ │ │ ├── Nested_Instancing_Example.png │ │ │ │ │ ├── Relationship_Example.png │ │ │ │ │ └── Uninstanced_vs_Instanced.png │ │ │ ├── inherits.cpp │ │ │ ├── inherits.h │ │ │ ├── instanceCache.cpp │ │ │ ├── instanceCache.h │ │ │ ├── instanceKey.cpp │ │ │ ├── instanceKey.h │ │ │ ├── integerCoding.cpp │ │ │ ├── integerCoding.h │ │ │ ├── interpolation.cpp │ │ │ ├── interpolation.h │ │ │ ├── interpolators.cpp │ │ │ ├── interpolators.h │ │ │ ├── modelAPI.cpp │ │ │ ├── modelAPI.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── notice.cpp │ │ │ ├── notice.h │ │ │ ├── object.cpp │ │ │ ├── object.h │ │ │ ├── payloads.cpp │ │ │ ├── payloads.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── prim.cpp │ │ │ ├── prim.h │ │ │ ├── primData.cpp │ │ │ ├── primData.h │ │ │ ├── primDataHandle.cpp │ │ │ ├── primDataHandle.h │ │ │ ├── primFlags.cpp │ │ │ ├── primFlags.h │ │ │ ├── primRange.cpp │ │ │ ├── primRange.h │ │ │ ├── property.cpp │ │ │ ├── property.h │ │ │ ├── pyConversions.cpp │ │ │ ├── pyConversions.h │ │ │ ├── pyEditContext.cpp │ │ │ ├── pyEditContext.h │ │ │ ├── refOrPayloadListEditImpl.h │ │ │ ├── references.cpp │ │ │ ├── references.h │ │ │ ├── relationship.cpp │ │ │ ├── relationship.h │ │ │ ├── resolveInfo.cpp │ │ │ ├── resolveInfo.h │ │ │ ├── resolver.cpp │ │ │ ├── resolver.h │ │ │ ├── schema.usda │ │ │ ├── schemaBase.cpp │ │ │ ├── schemaBase.h │ │ │ ├── schemaRegistry.cpp │ │ │ ├── schemaRegistry.h │ │ │ ├── shared.cpp │ │ │ ├── shared.h │ │ │ ├── specializes.cpp │ │ │ ├── specializes.h │ │ │ ├── stage.cpp │ │ │ ├── stage.h │ │ │ ├── stageCache.cpp │ │ │ ├── stageCache.h │ │ │ ├── stageCacheContext.cpp │ │ │ ├── stageCacheContext.h │ │ │ ├── stagePopulationMask.cpp │ │ │ ├── stagePopulationMask.h │ │ │ ├── testenv │ │ │ │ ├── testUsdAttributeBlocking.cpp │ │ │ │ ├── testUsdAttributeBlocking.py │ │ │ │ ├── testUsdAttributeConnections.py │ │ │ │ ├── testUsdAttributeInterpolationCpp.cpp │ │ │ │ ├── testUsdBug119633.py │ │ │ │ ├── testUsdBug119633.testenv │ │ │ │ │ ├── ref.usda │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdBug141491.py │ │ │ │ ├── testUsdBug141491.testenv │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdBugs.py │ │ │ │ ├── testUsdChangeProcessing.py │ │ │ │ ├── testUsdClasses.py │ │ │ │ ├── testUsdCollectionAPI.py │ │ │ │ ├── testUsdCollectionAPI │ │ │ │ │ ├── Cube.usda │ │ │ │ │ └── Test.usda │ │ │ │ ├── testUsdCrate07To08Conversion.py │ │ │ │ ├── testUsdCrate07To08Conversion.testenv │ │ │ │ │ ├── crate07SinglePayload.usdc │ │ │ │ │ └── singlePayload.usda │ │ │ │ ├── testUsdCreateAttributeCpp.cpp │ │ │ │ ├── testUsdCreateProperties.py │ │ │ │ ├── testUsdDataFormats.py │ │ │ │ ├── testUsdEditTarget.py │ │ │ │ ├── testUsdEditTarget.testenv │ │ │ │ │ ├── test.usda │ │ │ │ │ ├── testAPI_root.usda │ │ │ │ │ ├── testAPI_sub1.usda │ │ │ │ │ ├── testAPI_sub2.usda │ │ │ │ │ └── testSessionSublayerEditTarget.usda │ │ │ │ ├── testUsdFileFormats.py │ │ │ │ ├── testUsdFileFormats │ │ │ │ │ ├── ascii.usd │ │ │ │ │ └── crate.usd │ │ │ │ ├── testUsdFlatten.py │ │ │ │ ├── testUsdFlatten │ │ │ │ │ ├── assetPaths │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── badMetadata.usd │ │ │ │ │ ├── badPropertyTypeNames.usd │ │ │ │ │ ├── clips │ │ │ │ │ │ ├── Particles_Splash.101.usd │ │ │ │ │ │ ├── Particles_Splash.102.usd │ │ │ │ │ │ ├── Particles_Splash.103.usd │ │ │ │ │ │ ├── Particles_Splash.104.usd │ │ │ │ │ │ ├── Particles_Splash.105.usd │ │ │ │ │ │ ├── root.topology.usd │ │ │ │ │ │ └── root.usd │ │ │ │ │ ├── connections │ │ │ │ │ │ ├── asset.usda │ │ │ │ │ │ └── source.usda │ │ │ │ │ ├── hole_clips │ │ │ │ │ │ ├── Particles_Splash.101.usd │ │ │ │ │ │ ├── Particles_Splash.102.usd │ │ │ │ │ │ ├── Particles_Splash.103.usd │ │ │ │ │ │ ├── Particles_Splash.104.usd │ │ │ │ │ │ ├── Particles_Splash.105.usd │ │ │ │ │ │ ├── root.topology.usd │ │ │ │ │ │ └── root.usd │ │ │ │ │ ├── payload.usd │ │ │ │ │ ├── ref.usd │ │ │ │ │ ├── relationshipTargets │ │ │ │ │ │ ├── asset.usda │ │ │ │ │ │ └── source.usda │ │ │ │ │ ├── root.usd │ │ │ │ │ ├── sparse_topology_clips │ │ │ │ │ │ ├── Particles_Splash.101.usd │ │ │ │ │ │ ├── Particles_Splash.102.usd │ │ │ │ │ │ ├── Particles_Splash.103.usd │ │ │ │ │ │ ├── Particles_Splash.104.usd │ │ │ │ │ │ ├── Particles_Splash.105.usd │ │ │ │ │ │ ├── root.topology.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ └── time_samples │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── sub.usda │ │ │ │ ├── testUsdFlatten2.py │ │ │ │ ├── testUsdFlatten2 │ │ │ │ │ ├── BasicInstancing │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ ├── BasicInstancingAndNestedInstances │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ ├── BasicInstancingAndVariants │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── flat_BasicInstancing.usda │ │ │ │ │ │ ├── flat_BasicInstancingAndNestedInstances.usda │ │ │ │ │ │ └── flat_BasicInstancingAndVariants.usda │ │ │ │ ├── testUsdFlattenProperties.py │ │ │ │ ├── testUsdFlattenProperties │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── generatedSchema.usda │ │ │ │ │ │ ├── plugInfo.json │ │ │ │ │ │ └── schema.usda │ │ │ │ │ ├── root.usda │ │ │ │ │ └── sub.usda │ │ │ │ ├── testUsdHardToReach.cpp │ │ │ │ ├── testUsdInherits.py │ │ │ │ ├── testUsdInstanceProxy.py │ │ │ │ ├── testUsdInstanceProxy │ │ │ │ │ ├── attrs │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── nested │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ ├── nested_payloads │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ └── rels │ │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdInstancing.py │ │ │ │ ├── testUsdInstancing │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ ├── deactivated │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── deactivated_2 │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── inherits │ │ │ │ │ │ ├── model.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── setA.usda │ │ │ │ │ │ └── setB.usda │ │ │ │ │ ├── local_variants │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── nested │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ ├── nested_2 │ │ │ │ │ │ ├── payload.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── payloads │ │ │ │ │ │ ├── payload.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── payloads_2 │ │ │ │ │ │ ├── model.usda │ │ │ │ │ │ ├── payload.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── specializes │ │ │ │ │ │ ├── model.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── setA.usda │ │ │ │ │ │ └── setB.usda │ │ │ │ │ ├── subroot_refs │ │ │ │ │ │ ├── ref1.usda │ │ │ │ │ │ ├── ref2.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ └── variants │ │ │ │ │ │ ├── model.usda │ │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdIntegerCoding.cpp │ │ │ │ ├── testUsdMetadata.cpp │ │ │ │ ├── testUsdMetadata.py │ │ │ │ ├── testUsdMetadata │ │ │ │ │ ├── assetPaths │ │ │ │ │ │ ├── asset.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ └── plugInfo.json │ │ │ │ ├── testUsdModel.py │ │ │ │ ├── testUsdNotices.py │ │ │ │ ├── testUsdNotices.testenv │ │ │ │ │ ├── payload_base.usda │ │ │ │ │ └── payload_target.usda │ │ │ │ ├── testUsdPayloads.py │ │ │ │ ├── testUsdPrimFlagsPredicate.py │ │ │ │ ├── testUsdPrimGetDescendants.cpp │ │ │ │ ├── testUsdPrimGetDescendants.testenv │ │ │ │ │ ├── nested │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── set.usda │ │ │ │ │ ├── payload.usda │ │ │ │ │ └── test.usda │ │ │ │ ├── testUsdPrimRange.py │ │ │ │ ├── testUsdPrimRange │ │ │ │ │ ├── testHasDefiningSpecifier.usda │ │ │ │ │ └── testHasDefiningSpecifier.usdc │ │ │ │ ├── testUsdPrims.py │ │ │ │ ├── testUsdPrims.testenv │ │ │ │ │ ├── MilkCartonA.usda │ │ │ │ │ ├── payload.usda │ │ │ │ │ └── test.usda │ │ │ │ ├── testUsdReferences.py │ │ │ │ ├── testUsdRelationships.py │ │ │ │ ├── testUsdSchemaBase.cpp │ │ │ │ ├── testUsdSchemaGen │ │ │ │ │ ├── baseSchema.usda │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── base.cpp │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── derived.cpp │ │ │ │ │ │ ├── derived.h │ │ │ │ │ │ ├── derivedMultipleApplyAPI.cpp │ │ │ │ │ │ ├── derivedMultipleApplyAPI.h │ │ │ │ │ │ ├── emptyMultipleApplyAPI.cpp │ │ │ │ │ │ ├── emptyMultipleApplyAPI.h │ │ │ │ │ │ ├── generatedSchema.usda │ │ │ │ │ │ ├── multipleApplyAPI.cpp │ │ │ │ │ │ ├── multipleApplyAPI.h │ │ │ │ │ │ ├── nested_ns_base.cpp │ │ │ │ │ │ ├── nested_ns_base.h │ │ │ │ │ │ ├── nested_ns_derived.cpp │ │ │ │ │ │ ├── nested_ns_derived.h │ │ │ │ │ │ ├── nested_ns_derivedMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_derivedMultipleApplyAPI.h │ │ │ │ │ │ ├── nested_ns_emptyMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_emptyMultipleApplyAPI.h │ │ │ │ │ │ ├── nested_ns_generatedSchema.usda │ │ │ │ │ │ ├── nested_ns_multipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_multipleApplyAPI.h │ │ │ │ │ │ ├── nested_ns_nonAppliedAPI.cpp │ │ │ │ │ │ ├── nested_ns_nonAppliedAPI.h │ │ │ │ │ │ ├── nested_ns_plugInfo.json │ │ │ │ │ │ ├── nested_ns_publicMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_publicMultipleApplyAPI.h │ │ │ │ │ │ ├── nested_ns_singleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_singleApplyAPI.h │ │ │ │ │ │ ├── nested_ns_testHairman.cpp │ │ │ │ │ │ ├── nested_ns_testHairman.h │ │ │ │ │ │ ├── nested_ns_tokens.cpp │ │ │ │ │ │ ├── nested_ns_tokens.h │ │ │ │ │ │ ├── nested_ns_wrapBase.cpp │ │ │ │ │ │ ├── nested_ns_wrapDerived.cpp │ │ │ │ │ │ ├── nested_ns_wrapDerivedMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_wrapEmptyMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_wrapMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_wrapNonAppliedAPI.cpp │ │ │ │ │ │ ├── nested_ns_wrapPublicMultipleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_wrapSingleApplyAPI.cpp │ │ │ │ │ │ ├── nested_ns_wrapTestHairman.cpp │ │ │ │ │ │ ├── nested_ns_wrapTokens.cpp │ │ │ │ │ │ ├── nonAppliedAPI.cpp │ │ │ │ │ │ ├── nonAppliedAPI.h │ │ │ │ │ │ ├── ns_base.cpp │ │ │ │ │ │ ├── ns_base.h │ │ │ │ │ │ ├── ns_derived.cpp │ │ │ │ │ │ ├── ns_derived.h │ │ │ │ │ │ ├── ns_derivedMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_derivedMultipleApplyAPI.h │ │ │ │ │ │ ├── ns_emptyMultipleApply.cpp │ │ │ │ │ │ ├── ns_emptyMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_emptyMultipleApplyAPI.h │ │ │ │ │ │ ├── ns_generatedSchema.usda │ │ │ │ │ │ ├── ns_multipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_multipleApplyAPI.h │ │ │ │ │ │ ├── ns_nonAppliedAPI.cpp │ │ │ │ │ │ ├── ns_nonAppliedAPI.h │ │ │ │ │ │ ├── ns_plugInfo.json │ │ │ │ │ │ ├── ns_publicMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_publicMultipleApplyAPI.h │ │ │ │ │ │ ├── ns_singleApplyAPI.cpp │ │ │ │ │ │ ├── ns_singleApplyAPI.h │ │ │ │ │ │ ├── ns_testHairman.cpp │ │ │ │ │ │ ├── ns_testHairman.h │ │ │ │ │ │ ├── ns_tokens.cpp │ │ │ │ │ │ ├── ns_tokens.h │ │ │ │ │ │ ├── ns_wrapBase.cpp │ │ │ │ │ │ ├── ns_wrapDerived.cpp │ │ │ │ │ │ ├── ns_wrapDerivedMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_wrapEmptyMultipleApply.cpp │ │ │ │ │ │ ├── ns_wrapEmptyMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_wrapMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_wrapNonAppliedAPI.cpp │ │ │ │ │ │ ├── ns_wrapPublicMultipleApplyAPI.cpp │ │ │ │ │ │ ├── ns_wrapSingleApplyAPI.cpp │ │ │ │ │ │ ├── ns_wrapTestHairman.cpp │ │ │ │ │ │ ├── ns_wrapTokens.cpp │ │ │ │ │ │ ├── plugInfo.json │ │ │ │ │ │ ├── publicMultipleApplyAPI.cpp │ │ │ │ │ │ ├── publicMultipleApplyAPI.h │ │ │ │ │ │ ├── singleApplyAPI.cpp │ │ │ │ │ │ ├── singleApplyAPI.h │ │ │ │ │ │ ├── testHairman.cpp │ │ │ │ │ │ ├── testHairman.h │ │ │ │ │ │ ├── tokens.cpp │ │ │ │ │ │ ├── tokens.h │ │ │ │ │ │ ├── wrapBase.cpp │ │ │ │ │ │ ├── wrapDerived.cpp │ │ │ │ │ │ ├── wrapDerivedMultipleApplyAPI.cpp │ │ │ │ │ │ ├── wrapEmptyMultipleApplyAPI.cpp │ │ │ │ │ │ ├── wrapMultipleApplyAPI.cpp │ │ │ │ │ │ ├── wrapNonAppliedAPI.cpp │ │ │ │ │ │ ├── wrapPublicMultipleApplyAPI.cpp │ │ │ │ │ │ ├── wrapSingleApplyAPI.cpp │ │ │ │ │ │ ├── wrapTestHairman.cpp │ │ │ │ │ │ └── wrapTokens.cpp │ │ │ │ │ ├── ns_schema.usda │ │ │ │ │ ├── plugInfo.json │ │ │ │ │ ├── schema.usda │ │ │ │ │ ├── schemaFail.usda │ │ │ │ │ ├── schemaFail10.usda │ │ │ │ │ ├── schemaFail11.usda │ │ │ │ │ ├── schemaFail12.usda │ │ │ │ │ ├── schemaFail13.usda │ │ │ │ │ ├── schemaFail14.usda │ │ │ │ │ ├── schemaFail2.usda │ │ │ │ │ ├── schemaFail3.usda │ │ │ │ │ ├── schemaFail4.usda │ │ │ │ │ ├── schemaFail5.usda │ │ │ │ │ ├── schemaFail6.usda │ │ │ │ │ ├── schemaFail7.usda │ │ │ │ │ ├── schemaFail8.usda │ │ │ │ │ └── schemaFail9.usda │ │ │ │ ├── testUsdSchemaRegistry.py │ │ │ │ ├── testUsdSchemaRegistry │ │ │ │ │ └── resources │ │ │ │ │ │ ├── generatedSchema.usda │ │ │ │ │ │ ├── plugInfo.json │ │ │ │ │ │ └── schema.usda │ │ │ │ ├── testUsdSpecializes.py │ │ │ │ ├── testUsdStage.py │ │ │ │ ├── testUsdStageCache.py │ │ │ │ ├── testUsdStageCache │ │ │ │ │ └── asset.usd │ │ │ │ ├── testUsdStageLoadUnload.py │ │ │ │ ├── testUsdStageNoPython.cpp │ │ │ │ ├── testUsdStageNoPython.testenv │ │ │ │ │ ├── ascii.usd │ │ │ │ │ └── binary.usd │ │ │ │ ├── testUsdStageNotification.cpp │ │ │ │ ├── testUsdStagePopulationMasks.py │ │ │ │ ├── testUsdStageThreading.cpp │ │ │ │ ├── testUsdStageThreading │ │ │ │ │ ├── a │ │ │ │ │ │ ├── payload.usda │ │ │ │ │ │ └── test.usda │ │ │ │ │ ├── b │ │ │ │ │ │ ├── prop.usda │ │ │ │ │ │ ├── set.usda │ │ │ │ │ │ └── test.usda │ │ │ │ │ ├── c │ │ │ │ │ │ └── test.usda │ │ │ │ │ ├── d │ │ │ │ │ │ └── test.usda │ │ │ │ │ └── e │ │ │ │ │ │ └── test.usda │ │ │ │ ├── testUsdTemplatedIO.cpp │ │ │ │ ├── testUsdThreadedAuthoring.cpp │ │ │ │ ├── testUsdTimeCodeRepr.py │ │ │ │ ├── testUsdTimeCodeStream.cpp │ │ │ │ ├── testUsdTimeOffsets.py │ │ │ │ ├── testUsdTimeSamples.py │ │ │ │ ├── testUsdUsdzFileFormat.py │ │ │ │ ├── testUsdUsdzFileFormat │ │ │ │ │ ├── anchored_refs.usdz │ │ │ │ │ ├── anchored_refs │ │ │ │ │ │ ├── ref.usd │ │ │ │ │ │ ├── root.usd │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ │ └── ref.usdc │ │ │ │ │ ├── anchored_refs_sub.usdz │ │ │ │ │ ├── first_file_not_usd.usdz │ │ │ │ │ ├── nested_anchored_refs.usdz │ │ │ │ │ ├── nested_anchored_refs_sub.usdz │ │ │ │ │ ├── nested_search_refs.usdz │ │ │ │ │ ├── nested_search_refs_sub.usdz │ │ │ │ │ ├── refs.usda │ │ │ │ │ ├── search_refs.usdz │ │ │ │ │ ├── search_refs │ │ │ │ │ │ ├── refs │ │ │ │ │ │ │ ├── ref.usd │ │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ │ ├── ref_in_both.usd │ │ │ │ │ │ │ │ └── ref_in_subdir.usd │ │ │ │ │ │ ├── root.usd │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ ├── ref_in_both.usd │ │ │ │ │ │ │ └── ref_in_root.usd │ │ │ │ │ ├── search_refs_sub.usdz │ │ │ │ │ ├── single │ │ │ │ │ │ ├── test.usd │ │ │ │ │ │ ├── test.usda │ │ │ │ │ │ └── test.usdc │ │ │ │ │ ├── single_usd.usdz │ │ │ │ │ ├── single_usda.usdz │ │ │ │ │ ├── single_usdc.usdz │ │ │ │ │ └── sublayers.usda │ │ │ │ ├── testUsdUsdzResolver.cpp │ │ │ │ ├── testUsdUsdzResolver │ │ │ │ │ ├── src │ │ │ │ │ │ ├── file_1.usdc │ │ │ │ │ │ ├── file_2.usdc │ │ │ │ │ │ ├── nested.usdz │ │ │ │ │ │ └── subdir │ │ │ │ │ │ │ └── file_3.usdc │ │ │ │ │ └── test.usdz │ │ │ │ ├── testUsdValueClips.py │ │ │ │ ├── testUsdValueClips │ │ │ │ │ ├── ancestral │ │ │ │ │ │ ├── clip-group.usda │ │ │ │ │ │ ├── clip-model.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── payload.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── clipsetListEdits │ │ │ │ │ │ ├── clip_a.usda │ │ │ │ │ │ ├── clip_b.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ └── sublayer.usda │ │ │ │ │ ├── clipsets │ │ │ │ │ │ ├── non_template_clip.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── set.usda │ │ │ │ │ │ ├── template_clip.00.usda │ │ │ │ │ │ ├── template_clip.01.usda │ │ │ │ │ │ └── template_clip.02.usda │ │ │ │ │ ├── flatten │ │ │ │ │ │ ├── clip1.usda │ │ │ │ │ │ ├── clip2.usda │ │ │ │ │ │ ├── flat.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── interpolation │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── layerOffsets │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ ├── ref2.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── root_anim.usda │ │ │ │ │ │ └── root_sublayer.usda │ │ │ │ │ ├── manifest │ │ │ │ │ │ ├── clip_1.usda │ │ │ │ │ │ ├── clip_2.usda │ │ │ │ │ │ ├── clip_manifest.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── multiclip │ │ │ │ │ │ ├── clip1.usda │ │ │ │ │ │ ├── clip2.usda │ │ │ │ │ │ ├── nosamples_clip.usda │ │ │ │ │ │ ├── nosamples_clip2.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── span_1.usda │ │ │ │ │ │ ├── span_2.usda │ │ │ │ │ │ ├── times_1.usda │ │ │ │ │ │ └── times_2.usda │ │ │ │ │ ├── nonmodel │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── ordering │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── sublayer_with_clip_intro.usda │ │ │ │ │ │ └── sublayer_with_opinion.usda │ │ │ │ │ ├── precision │ │ │ │ │ │ ├── p101.usda │ │ │ │ │ │ ├── p102.usda │ │ │ │ │ │ ├── p103.usda │ │ │ │ │ │ ├── root.topology.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── singleclip │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── sparseOverrides │ │ │ │ │ │ ├── 101.usda │ │ │ │ │ │ ├── 103.usda │ │ │ │ │ │ ├── a.usda │ │ │ │ │ │ ├── b.usda │ │ │ │ │ │ ├── over_root.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── template_over_root.usda │ │ │ │ │ │ └── template_root.usda │ │ │ │ │ ├── template │ │ │ │ │ │ ├── int1 │ │ │ │ │ │ │ ├── p.001.usd │ │ │ │ │ │ │ ├── p.002.usd │ │ │ │ │ │ │ ├── p.003.usd │ │ │ │ │ │ │ ├── p.004.usd │ │ │ │ │ │ │ ├── p.101.usd │ │ │ │ │ │ │ ├── p.102.usd │ │ │ │ │ │ │ ├── p.103.usd │ │ │ │ │ │ │ ├── p.104.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_int_1.usda │ │ │ │ │ │ ├── int2 │ │ │ │ │ │ │ ├── p.1.usd │ │ │ │ │ │ │ ├── p.17.usd │ │ │ │ │ │ │ ├── p.33.usd │ │ │ │ │ │ │ ├── p.49.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_int_2.usda │ │ │ │ │ │ ├── int3 │ │ │ │ │ │ │ ├── p.001.usd │ │ │ │ │ │ │ ├── p.003.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_int_3.usda │ │ │ │ │ │ ├── int4 │ │ │ │ │ │ │ ├── p.001.usd │ │ │ │ │ │ │ ├── p.003.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_int_4.usda │ │ │ │ │ │ ├── layerOffsets │ │ │ │ │ │ │ ├── 1.usda │ │ │ │ │ │ │ ├── 2.usda │ │ │ │ │ │ │ ├── 3.usda │ │ │ │ │ │ │ ├── model.usda │ │ │ │ │ │ │ ├── model_sub.usda │ │ │ │ │ │ │ └── root.usda │ │ │ │ │ │ ├── subint1 │ │ │ │ │ │ │ ├── p.101.000.usd │ │ │ │ │ │ │ ├── p.102.000.usd │ │ │ │ │ │ │ ├── p.103.000.usd │ │ │ │ │ │ │ ├── p.104.000.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_subint_1.usda │ │ │ │ │ │ ├── subint2 │ │ │ │ │ │ │ ├── p.10.00.usd │ │ │ │ │ │ │ ├── p.10.05.usd │ │ │ │ │ │ │ ├── p.10.10.usd │ │ │ │ │ │ │ ├── p.10.15.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_subint_2.usda │ │ │ │ │ │ └── subint3 │ │ │ │ │ │ │ ├── p.10.00.usd │ │ │ │ │ │ │ ├── p.10.10.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_subint_3.usda │ │ │ │ │ ├── timing │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── timingOutsideClip │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── topology │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ └── validation │ │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdValueClips_Legacy │ │ │ │ │ ├── ancestral │ │ │ │ │ │ ├── clip-group.usda │ │ │ │ │ │ ├── clip-model.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── payload.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── flatten │ │ │ │ │ │ ├── clip1.usda │ │ │ │ │ │ ├── clip2.usda │ │ │ │ │ │ ├── flat.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── interpolation │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── layerOffsets │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ ├── ref2.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── root_anim.usda │ │ │ │ │ │ └── root_sublayer.usda │ │ │ │ │ ├── manifest │ │ │ │ │ │ ├── clip_1.usda │ │ │ │ │ │ ├── clip_2.usda │ │ │ │ │ │ ├── clip_manifest.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── multiclip │ │ │ │ │ │ ├── clip1.usda │ │ │ │ │ │ ├── clip2.usda │ │ │ │ │ │ ├── nosamples_clip.usda │ │ │ │ │ │ ├── nosamples_clip2.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── nonmodel │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── ordering │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── sublayer_with_clip_intro.usda │ │ │ │ │ │ └── sublayer_with_opinion.usda │ │ │ │ │ ├── precision │ │ │ │ │ │ ├── p101.usda │ │ │ │ │ │ ├── p102.usda │ │ │ │ │ │ ├── p103.usda │ │ │ │ │ │ ├── root.topology.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── singleclip │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── sparseOverrides │ │ │ │ │ │ ├── 101.usda │ │ │ │ │ │ ├── 103.usda │ │ │ │ │ │ ├── a.usda │ │ │ │ │ │ ├── b.usda │ │ │ │ │ │ ├── over_root.usda │ │ │ │ │ │ ├── root.usda │ │ │ │ │ │ ├── template_over_root.usda │ │ │ │ │ │ └── template_root.usda │ │ │ │ │ ├── template │ │ │ │ │ │ ├── int1 │ │ │ │ │ │ │ ├── p.001.usd │ │ │ │ │ │ │ ├── p.002.usd │ │ │ │ │ │ │ ├── p.003.usd │ │ │ │ │ │ │ ├── p.004.usd │ │ │ │ │ │ │ ├── p.101.usd │ │ │ │ │ │ │ ├── p.102.usd │ │ │ │ │ │ │ ├── p.103.usd │ │ │ │ │ │ │ ├── p.104.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_int_1.usda │ │ │ │ │ │ ├── int2 │ │ │ │ │ │ │ ├── p.1.usd │ │ │ │ │ │ │ ├── p.17.usd │ │ │ │ │ │ │ ├── p.33.usd │ │ │ │ │ │ │ ├── p.49.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_int_2.usda │ │ │ │ │ │ ├── layerOffsets │ │ │ │ │ │ │ ├── 1.usda │ │ │ │ │ │ │ ├── 2.usda │ │ │ │ │ │ │ ├── 3.usda │ │ │ │ │ │ │ ├── model.usda │ │ │ │ │ │ │ ├── model_sub.usda │ │ │ │ │ │ │ └── root.usda │ │ │ │ │ │ ├── subint1 │ │ │ │ │ │ │ ├── p.101.000.usd │ │ │ │ │ │ │ ├── p.102.000.usd │ │ │ │ │ │ │ ├── p.103.000.usd │ │ │ │ │ │ │ ├── p.104.000.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_subint_1.usda │ │ │ │ │ │ └── subint2 │ │ │ │ │ │ │ ├── p.10.00.usd │ │ │ │ │ │ │ ├── p.10.05.usd │ │ │ │ │ │ │ ├── p.10.10.usd │ │ │ │ │ │ │ ├── p.10.15.usd │ │ │ │ │ │ │ ├── result.topology.usda │ │ │ │ │ │ │ └── result_subint_2.usda │ │ │ │ │ ├── timing │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── timingOutsideClip │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ ├── ref.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ ├── topology │ │ │ │ │ │ ├── clip.usda │ │ │ │ │ │ └── root.usda │ │ │ │ │ └── validation │ │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdVariantEditing.py │ │ │ │ ├── testUsdVariantEditing.testenv │ │ │ │ │ └── testAPI_var.usda │ │ │ │ ├── testUsdVariantFallbacks.py │ │ │ │ ├── testUsdVariantFallbacks.testenv │ │ │ │ │ ├── plugInfo.json │ │ │ │ │ └── testAPI_var.usda │ │ │ │ ├── testUsdVariants.py │ │ │ │ ├── testUsdVariants │ │ │ │ │ └── MilkCartonA.usda │ │ │ │ ├── testUsdZipFile.py │ │ │ │ └── testUsdZipFile.testenv │ │ │ │ │ ├── src │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.png │ │ │ │ │ └── sub │ │ │ │ │ │ ├── c.png │ │ │ │ │ │ └── d.txt │ │ │ │ │ └── test_reader.usdz │ │ │ ├── timeCode.cpp │ │ │ ├── timeCode.h │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── typed.cpp │ │ │ ├── typed.h │ │ │ ├── usdFileFormat.cpp │ │ │ ├── usdFileFormat.h │ │ │ ├── usdGenSchema.py │ │ │ ├── usd_style.css │ │ │ ├── usdaFileFormat.cpp │ │ │ ├── usdaFileFormat.h │ │ │ ├── usdcFileFormat.cpp │ │ │ ├── usdcFileFormat.h │ │ │ ├── usdzFileFormat.cpp │ │ │ ├── usdzFileFormat.h │ │ │ ├── usdzResolver.cpp │ │ │ ├── usdzResolver.h │ │ │ ├── valueUtils.cpp │ │ │ ├── valueUtils.h │ │ │ ├── variantSets.cpp │ │ │ ├── variantSets.h │ │ │ ├── wrapAPISchemaBase.cpp │ │ │ ├── wrapAttribute.cpp │ │ │ ├── wrapAttributeQuery.cpp │ │ │ ├── wrapClipsAPI.cpp │ │ │ ├── wrapCollectionAPI.cpp │ │ │ ├── wrapCommon.cpp │ │ │ ├── wrapCrateInfo.cpp │ │ │ ├── wrapEditContext.cpp │ │ │ ├── wrapEditTarget.cpp │ │ │ ├── wrapInherits.cpp │ │ │ ├── wrapInterpolation.cpp │ │ │ ├── wrapModelAPI.cpp │ │ │ ├── wrapNotice.cpp │ │ │ ├── wrapObject.cpp │ │ │ ├── wrapPayloads.cpp │ │ │ ├── wrapPrim.cpp │ │ │ ├── wrapPrimFlags.cpp │ │ │ ├── wrapPrimRange.cpp │ │ │ ├── wrapProperty.cpp │ │ │ ├── wrapReferences.cpp │ │ │ ├── wrapRelationship.cpp │ │ │ ├── wrapResolveInfo.cpp │ │ │ ├── wrapSchemaBase.cpp │ │ │ ├── wrapSchemaRegistry.cpp │ │ │ ├── wrapSpecializes.cpp │ │ │ ├── wrapStage.cpp │ │ │ ├── wrapStageCache.cpp │ │ │ ├── wrapStageCacheContext.cpp │ │ │ ├── wrapStagePopulationMask.cpp │ │ │ ├── wrapTimeCode.cpp │ │ │ ├── wrapTokens.cpp │ │ │ ├── wrapTyped.cpp │ │ │ ├── wrapUtils.cpp │ │ │ ├── wrapUtils.h │ │ │ ├── wrapVariantSets.cpp │ │ │ ├── wrapVersion.cpp │ │ │ ├── wrapZipFile.cpp │ │ │ ├── zipFile.cpp │ │ │ └── zipFile.h │ │ ├── usdGeom │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── basisCurves.cpp │ │ │ ├── basisCurves.h │ │ │ ├── bboxCache.cpp │ │ │ ├── bboxCache.h │ │ │ ├── boundable.cpp │ │ │ ├── boundable.h │ │ │ ├── boundableComputeExtent.cpp │ │ │ ├── boundableComputeExtent.h │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── capsule.cpp │ │ │ ├── capsule.h │ │ │ ├── cone.cpp │ │ │ ├── cone.h │ │ │ ├── constraintTarget.cpp │ │ │ ├── constraintTarget.h │ │ │ ├── cube.cpp │ │ │ ├── cube.h │ │ │ ├── curves.cpp │ │ │ ├── curves.h │ │ │ ├── cylinder.cpp │ │ │ ├── cylinder.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── examples.cpp │ │ │ ├── generatedSchema.usda │ │ │ ├── gprim.cpp │ │ │ ├── gprim.h │ │ │ ├── imageable.cpp │ │ │ ├── imageable.h │ │ │ ├── images │ │ │ │ ├── USDCurveBasisMatrix.png │ │ │ │ ├── USDCurveHydra.png │ │ │ │ └── USDCurvePrimvars.png │ │ │ ├── mesh.cpp │ │ │ ├── mesh.h │ │ │ ├── metrics.cpp │ │ │ ├── metrics.h │ │ │ ├── modelAPI.cpp │ │ │ ├── modelAPI.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── motionAPI.cpp │ │ │ ├── motionAPI.h │ │ │ ├── nurbsCurves.cpp │ │ │ ├── nurbsCurves.h │ │ │ ├── nurbsPatch.cpp │ │ │ ├── nurbsPatch.h │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── pointBased.cpp │ │ │ ├── pointBased.h │ │ │ ├── pointInstancer.cpp │ │ │ ├── pointInstancer.h │ │ │ ├── points.cpp │ │ │ ├── points.h │ │ │ ├── primvar.cpp │ │ │ ├── primvar.h │ │ │ ├── primvarsAPI.cpp │ │ │ ├── primvarsAPI.h │ │ │ ├── schema.usda │ │ │ ├── scope.cpp │ │ │ ├── scope.h │ │ │ ├── sphere.cpp │ │ │ ├── sphere.h │ │ │ ├── subset.cpp │ │ │ ├── subset.h │ │ │ ├── testenv │ │ │ │ ├── testUsdGeomBBoxCache.py │ │ │ │ ├── testUsdGeomBBoxCache │ │ │ │ │ ├── animVis.usda │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── testUsdGeomBBoxCache-Run1-stderr.txt │ │ │ │ │ │ └── testUsdGeomBBoxCache-Run1-stdout.txt │ │ │ │ │ ├── cubePayload.usda │ │ │ │ │ ├── cubeSbdv.usda │ │ │ │ │ ├── cubeSbdv_instanced.usda │ │ │ │ │ ├── pointsAndCurves.usda │ │ │ │ │ ├── testBug125048.usda │ │ │ │ │ ├── testUSD4957.usda │ │ │ │ │ └── unloadedCubeModel.usda │ │ │ │ ├── testUsdGeomBasisCurves.py │ │ │ │ ├── testUsdGeomBasisCurves │ │ │ │ │ └── basisCurves.usda │ │ │ │ ├── testUsdGeomCamera.py │ │ │ │ ├── testUsdGeomComputeAtTime.py │ │ │ │ ├── testUsdGeomComputeAtTime │ │ │ │ │ └── test.usda │ │ │ │ ├── testUsdGeomConstraintTarget.py │ │ │ │ ├── testUsdGeomConsts.py │ │ │ │ ├── testUsdGeomConsts │ │ │ │ │ └── testConsts.usda │ │ │ │ ├── testUsdGeomCreateAttribute.cpp │ │ │ │ ├── testUsdGeomCurves.py │ │ │ │ ├── testUsdGeomExtentTransform.py │ │ │ │ ├── testUsdGeomExtentTransform │ │ │ │ │ ├── testCurves.usda │ │ │ │ │ ├── testPointBased.usda │ │ │ │ │ ├── testPointInstancer.usda │ │ │ │ │ └── testPoints.usda │ │ │ │ ├── testUsdGeomHasAPI.cpp │ │ │ │ ├── testUsdGeomIsA.cpp │ │ │ │ ├── testUsdGeomMesh.py │ │ │ │ ├── testUsdGeomMetrics.py │ │ │ │ ├── testUsdGeomMotionAPI.py │ │ │ │ ├── testUsdGeomNoPlugLoad.py │ │ │ │ ├── testUsdGeomPointInstancer.py │ │ │ │ ├── testUsdGeomPointInstancer │ │ │ │ │ └── CubeModel.usda │ │ │ │ ├── testUsdGeomPrimvar.py │ │ │ │ ├── testUsdGeomPurposeVisibility.py │ │ │ │ ├── testUsdGeomSchemata.py │ │ │ │ ├── testUsdGeomSubset.py │ │ │ │ ├── testUsdGeomSubset │ │ │ │ │ └── Sphere.usda │ │ │ │ ├── testUsdGeomTypeRegistry.py │ │ │ │ ├── testUsdGeomXformCache.cpp │ │ │ │ ├── testUsdGeomXformCommonAPI.py │ │ │ │ └── testUsdGeomXformable.py │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── wrapBBoxCache.cpp │ │ │ ├── wrapBasisCurves.cpp │ │ │ ├── wrapBoundable.cpp │ │ │ ├── wrapCamera.cpp │ │ │ ├── wrapCapsule.cpp │ │ │ ├── wrapCone.cpp │ │ │ ├── wrapConstraintTarget.cpp │ │ │ ├── wrapCube.cpp │ │ │ ├── wrapCurves.cpp │ │ │ ├── wrapCylinder.cpp │ │ │ ├── wrapGprim.cpp │ │ │ ├── wrapImageable.cpp │ │ │ ├── wrapMesh.cpp │ │ │ ├── wrapMetrics.cpp │ │ │ ├── wrapModelAPI.cpp │ │ │ ├── wrapMotionAPI.cpp │ │ │ ├── wrapNurbsCurves.cpp │ │ │ ├── wrapNurbsPatch.cpp │ │ │ ├── wrapPointBased.cpp │ │ │ ├── wrapPointInstancer.cpp │ │ │ ├── wrapPoints.cpp │ │ │ ├── wrapPrimvar.cpp │ │ │ ├── wrapPrimvarsAPI.cpp │ │ │ ├── wrapScope.cpp │ │ │ ├── wrapSphere.cpp │ │ │ ├── wrapSubset.cpp │ │ │ ├── wrapTokens.cpp │ │ │ ├── wrapXform.cpp │ │ │ ├── wrapXformCache.cpp │ │ │ ├── wrapXformCommonAPI.cpp │ │ │ ├── wrapXformOp.cpp │ │ │ ├── wrapXformable.cpp │ │ │ ├── xform.cpp │ │ │ ├── xform.h │ │ │ ├── xformCache.cpp │ │ │ ├── xformCache.h │ │ │ ├── xformCommonAPI.cpp │ │ │ ├── xformCommonAPI.h │ │ │ ├── xformOp.cpp │ │ │ ├── xformOp.h │ │ │ ├── xformable.cpp │ │ │ └── xformable.h │ │ ├── usdHydra │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── discoveryPlugin.cpp │ │ │ ├── discoveryPlugin.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── shaders │ │ │ │ ├── empty.glslfx │ │ │ │ └── shaderDefs.usda │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ └── wrapTokens.cpp │ │ ├── usdLux │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── blackbody.cpp │ │ │ ├── blackbody.h │ │ │ ├── cylinderLight.cpp │ │ │ ├── cylinderLight.h │ │ │ ├── diskLight.cpp │ │ │ ├── diskLight.h │ │ │ ├── distantLight.cpp │ │ │ ├── distantLight.h │ │ │ ├── domeLight.cpp │ │ │ ├── domeLight.h │ │ │ ├── generatedSchema.usda │ │ │ ├── geometryLight.cpp │ │ │ ├── geometryLight.h │ │ │ ├── light.cpp │ │ │ ├── light.h │ │ │ ├── lightFilter.cpp │ │ │ ├── lightFilter.h │ │ │ ├── lightPortal.cpp │ │ │ ├── lightPortal.h │ │ │ ├── listAPI.cpp │ │ │ ├── listAPI.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── rectLight.cpp │ │ │ ├── rectLight.h │ │ │ ├── schema.usda │ │ │ ├── shadowAPI.cpp │ │ │ ├── shadowAPI.h │ │ │ ├── shapingAPI.cpp │ │ │ ├── shapingAPI.h │ │ │ ├── sphereLight.cpp │ │ │ ├── sphereLight.h │ │ │ ├── testenv │ │ │ │ ├── testUsdLuxLight.py │ │ │ │ ├── testUsdLuxLinkingAPI.py │ │ │ │ ├── testUsdLuxLinkingAPI │ │ │ │ │ ├── linking_example.usda │ │ │ │ │ └── meshWithFaceSet.usda │ │ │ │ ├── testUsdLuxListAPI.py │ │ │ │ └── testUsdLuxListAPI │ │ │ │ │ ├── root.usda │ │ │ │ │ ├── root_with_instances.usda │ │ │ │ │ ├── teapot.usda │ │ │ │ │ └── torch.usda │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── wrapCylinderLight.cpp │ │ │ ├── wrapDiskLight.cpp │ │ │ ├── wrapDistantLight.cpp │ │ │ ├── wrapDomeLight.cpp │ │ │ ├── wrapGeometryLight.cpp │ │ │ ├── wrapLight.cpp │ │ │ ├── wrapLightFilter.cpp │ │ │ ├── wrapLightPortal.cpp │ │ │ ├── wrapListAPI.cpp │ │ │ ├── wrapRectLight.cpp │ │ │ ├── wrapShadowAPI.cpp │ │ │ ├── wrapShapingAPI.cpp │ │ │ ├── wrapSphereLight.cpp │ │ │ └── wrapTokens.cpp │ │ ├── usdRi │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── generatedSchema.usda │ │ │ ├── lightAPI.cpp │ │ │ ├── lightAPI.h │ │ │ ├── lightFilterAPI.cpp │ │ │ ├── lightFilterAPI.h │ │ │ ├── lightPortalAPI.cpp │ │ │ ├── lightPortalAPI.h │ │ │ ├── materialAPI.cpp │ │ │ ├── materialAPI.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── pxrAovLight.cpp │ │ │ ├── pxrAovLight.h │ │ │ ├── pxrBarnLightFilter.cpp │ │ │ ├── pxrBarnLightFilter.h │ │ │ ├── pxrCookieLightFilter.cpp │ │ │ ├── pxrCookieLightFilter.h │ │ │ ├── pxrEnvDayLight.cpp │ │ │ ├── pxrEnvDayLight.h │ │ │ ├── pxrIntMultLightFilter.cpp │ │ │ ├── pxrIntMultLightFilter.h │ │ │ ├── pxrRampLightFilter.cpp │ │ │ ├── pxrRampLightFilter.h │ │ │ ├── pxrRodLightFilter.cpp │ │ │ ├── pxrRodLightFilter.h │ │ │ ├── riLightFilterAPI.cpp │ │ │ ├── riLightFilterAPI.h │ │ │ ├── risBxdf.cpp │ │ │ ├── risBxdf.h │ │ │ ├── risIntegrator.cpp │ │ │ ├── risIntegrator.h │ │ │ ├── risObject.cpp │ │ │ ├── risObject.h │ │ │ ├── risOslPattern.cpp │ │ │ ├── risOslPattern.h │ │ │ ├── risPattern.cpp │ │ │ ├── risPattern.h │ │ │ ├── rmanUtilities.cpp │ │ │ ├── rmanUtilities.h │ │ │ ├── rslShader.cpp │ │ │ ├── rslShader.h │ │ │ ├── schema.usda │ │ │ ├── splineAPI.cpp │ │ │ ├── splineAPI.h │ │ │ ├── statementsAPI.cpp │ │ │ ├── statementsAPI.h │ │ │ ├── testenv │ │ │ │ ├── testUsdRiSchemata.py │ │ │ │ ├── testUsdRiSplineAPI.py │ │ │ │ └── testUsdRiUtilities.py │ │ │ ├── textureAPI.cpp │ │ │ ├── textureAPI.h │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── typeUtils.cpp │ │ │ ├── typeUtils.h │ │ │ ├── wrapLightAPI.cpp │ │ │ ├── wrapLightFilterAPI.cpp │ │ │ ├── wrapLightPortalAPI.cpp │ │ │ ├── wrapMaterialAPI.cpp │ │ │ ├── wrapPxrAovLight.cpp │ │ │ ├── wrapPxrBarnLightFilter.cpp │ │ │ ├── wrapPxrCookieLightFilter.cpp │ │ │ ├── wrapPxrEnvDayLight.cpp │ │ │ ├── wrapPxrIntMultLightFilter.cpp │ │ │ ├── wrapPxrRampLightFilter.cpp │ │ │ ├── wrapPxrRodLightFilter.cpp │ │ │ ├── wrapRiLightFilterAPI.cpp │ │ │ ├── wrapRiLightPortalAPI.cpp │ │ │ ├── wrapRisBxdf.cpp │ │ │ ├── wrapRisIntegrator.cpp │ │ │ ├── wrapRisObject.cpp │ │ │ ├── wrapRisOslPattern.cpp │ │ │ ├── wrapRisPattern.cpp │ │ │ ├── wrapRmanUtilities.cpp │ │ │ ├── wrapRslShader.cpp │ │ │ ├── wrapSplineAPI.cpp │ │ │ ├── wrapStatementsAPI.cpp │ │ │ ├── wrapTextureAPI.cpp │ │ │ └── wrapTokens.cpp │ │ ├── usdShade │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── connectableAPI.cpp │ │ │ ├── connectableAPI.h │ │ │ ├── coordSysAPI.cpp │ │ │ ├── coordSysAPI.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── generatedSchema.usda │ │ │ ├── input.cpp │ │ │ ├── input.h │ │ │ ├── material.cpp │ │ │ ├── material.h │ │ │ ├── materialBindingAPI.cpp │ │ │ ├── materialBindingAPI.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── nodeGraph.cpp │ │ │ ├── nodeGraph.h │ │ │ ├── output.cpp │ │ │ ├── output.h │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── schema.usda │ │ │ ├── shader.cpp │ │ │ ├── shader.h │ │ │ ├── shaderDefParser.cpp │ │ │ ├── shaderDefParser.h │ │ │ ├── shaderDefUtils.cpp │ │ │ ├── shaderDefUtils.h │ │ │ ├── testenv │ │ │ │ ├── testUsdShadeBinding.py │ │ │ │ ├── testUsdShadeConnectability.py │ │ │ │ ├── testUsdShadeCoordSysAPI.py │ │ │ │ ├── testUsdShadeCoordSysAPI │ │ │ │ │ └── test.usda │ │ │ │ ├── testUsdShadeInterfaceInputConsumers.py │ │ │ │ ├── testUsdShadeMaterialAuthoring.py │ │ │ │ ├── testUsdShadeMaterialAuthoring │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── char_shading.usda │ │ │ │ │ │ └── char_shading_compact.usda │ │ │ │ ├── testUsdShadeMaterialBaseMaterial.py │ │ │ │ ├── testUsdShadeMaterialBaseMaterial │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── test_base_material.usda │ │ │ │ │ │ └── test_base_material_specializes.usda │ │ │ │ ├── testUsdShadeMaterialBindFaceSubset.py │ │ │ │ ├── testUsdShadeMaterialBindFaceSubset │ │ │ │ │ ├── Sphere.usda │ │ │ │ │ └── baseline │ │ │ │ │ │ └── SphereWithMaterialBind.usda │ │ │ │ ├── testUsdShadeMaterialBinding.py │ │ │ │ ├── testUsdShadeMaterialBinding │ │ │ │ │ ├── lamp.usda │ │ │ │ │ └── room_set.usda │ │ │ │ ├── testUsdShadeMaterialOutputs.py │ │ │ │ ├── testUsdShadeMaterialSpecializesBaseComposition.py │ │ │ │ ├── testUsdShadeMaterialSpecializesBaseComposition │ │ │ │ │ ├── asset.usda │ │ │ │ │ ├── concealed_parent_material.usda │ │ │ │ │ ├── library.usda │ │ │ │ │ ├── multiple_referenced_parents.usda │ │ │ │ │ └── set_with_specialized_materials.usda │ │ │ │ ├── testUsdShadeNodeGraphs.py │ │ │ │ ├── testUsdShadeShaderDef.py │ │ │ │ └── testUsdShadeShaders.py │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── wrapConnectableAPI.cpp │ │ │ ├── wrapCoordSysAPI.cpp │ │ │ ├── wrapInput.cpp │ │ │ ├── wrapMaterial.cpp │ │ │ ├── wrapMaterialBindingAPI.cpp │ │ │ ├── wrapNodeGraph.cpp │ │ │ ├── wrapOutput.cpp │ │ │ ├── wrapShader.cpp │ │ │ ├── wrapShaderDefParser.cpp │ │ │ ├── wrapShaderDefUtils.cpp │ │ │ ├── wrapTokens.cpp │ │ │ └── wrapUtils.cpp │ │ ├── usdSkel │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── animMapper.cpp │ │ │ ├── animMapper.h │ │ │ ├── animQuery.cpp │ │ │ ├── animQuery.h │ │ │ ├── animQueryImpl.cpp │ │ │ ├── animQueryImpl.h │ │ │ ├── animation.cpp │ │ │ ├── animation.h │ │ │ ├── api.h │ │ │ ├── binding.h │ │ │ ├── bindingAPI.cpp │ │ │ ├── bindingAPI.h │ │ │ ├── blendShape.cpp │ │ │ ├── blendShape.h │ │ │ ├── blendShapeQuery.cpp │ │ │ ├── blendShapeQuery.h │ │ │ ├── cache.cpp │ │ │ ├── cache.h │ │ │ ├── cacheImpl.cpp │ │ │ ├── cacheImpl.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── doxygen │ │ │ │ ├── apiIntro.dox │ │ │ │ ├── bestPractices.dox │ │ │ │ ├── instancing.dox │ │ │ │ ├── intro.dox │ │ │ │ ├── objectModel.dox │ │ │ │ ├── schemaOverview.dox │ │ │ │ └── schemas.dox │ │ │ ├── generatedSchema.usda │ │ │ ├── images │ │ │ │ ├── blendshapes.svg │ │ │ │ ├── blendshapesWithInbetweens.svg │ │ │ │ ├── influencesPrimvarLayout.svg │ │ │ │ └── unboundedInterpolationExample.svg │ │ │ ├── inbetweenShape.cpp │ │ │ ├── inbetweenShape.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── packedJointAnimation.cpp │ │ │ ├── packedJointAnimation.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── root.cpp │ │ │ ├── root.h │ │ │ ├── schema.usda │ │ │ ├── skelDefinition.cpp │ │ │ ├── skelDefinition.h │ │ │ ├── skeleton.cpp │ │ │ ├── skeleton.h │ │ │ ├── skeletonQuery.cpp │ │ │ ├── skeletonQuery.h │ │ │ ├── skinningQuery.cpp │ │ │ ├── skinningQuery.h │ │ │ ├── testenv │ │ │ │ ├── testUsdSkelAnimMapper.py │ │ │ │ ├── testUsdSkelAnimQuery.py │ │ │ │ ├── testUsdSkelBakeSkinning.py │ │ │ │ ├── testUsdSkelBakeSkinning │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── blendshapes.baked.usda │ │ │ │ │ │ └── lbs.baked.usda │ │ │ │ │ ├── blendshapes.usda │ │ │ │ │ └── lbs.usda │ │ │ │ ├── testUsdSkelBindingAPI.py │ │ │ │ ├── testUsdSkelCache.py │ │ │ │ ├── testUsdSkelCache │ │ │ │ │ └── populate.usda │ │ │ │ ├── testUsdSkelRoot.py │ │ │ │ ├── testUsdSkelRoot │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── root.computedExtents.usda │ │ │ │ │ └── root.usda │ │ │ │ ├── testUsdSkelSkeletonQuery.py │ │ │ │ ├── testUsdSkelSkinningQuery.py │ │ │ │ ├── testUsdSkelSkinningQuery │ │ │ │ │ └── jointInfluences.usda │ │ │ │ ├── testUsdSkelTopology.py │ │ │ │ └── testUsdSkelUtils.py │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── topology.cpp │ │ │ ├── topology.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── wrapAnimMapper.cpp │ │ │ ├── wrapAnimQuery.cpp │ │ │ ├── wrapAnimation.cpp │ │ │ ├── wrapBinding.cpp │ │ │ ├── wrapBindingAPI.cpp │ │ │ ├── wrapBlendShape.cpp │ │ │ ├── wrapBlendShapeQuery.cpp │ │ │ ├── wrapCache.cpp │ │ │ ├── wrapInbetweenShape.cpp │ │ │ ├── wrapPackedJointAnimation.cpp │ │ │ ├── wrapRoot.cpp │ │ │ ├── wrapSkeleton.cpp │ │ │ ├── wrapSkeletonQuery.cpp │ │ │ ├── wrapSkinningQuery.cpp │ │ │ ├── wrapTokens.cpp │ │ │ ├── wrapTopology.cpp │ │ │ └── wrapUtils.cpp │ │ ├── usdUI │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── backdrop.cpp │ │ │ ├── backdrop.h │ │ │ ├── generatedSchema.usda │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── nodeGraphNodeAPI.cpp │ │ │ ├── nodeGraphNodeAPI.h │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── sceneGraphPrimAPI.cpp │ │ │ ├── sceneGraphPrimAPI.h │ │ │ ├── schema.usda │ │ │ ├── testenv │ │ │ │ ├── testUsdUIBackdrop.py │ │ │ │ ├── testUsdUIBackdrop │ │ │ │ │ └── baseline │ │ │ │ │ │ └── backdrop.usda │ │ │ │ ├── testUsdUINodeGraphNode.py │ │ │ │ ├── testUsdUINodeGraphNode │ │ │ │ │ └── baseline │ │ │ │ │ │ └── nodeGraph.usda │ │ │ │ ├── testUsdUISceneGraphPrim.py │ │ │ │ └── testUsdUISceneGraphPrim │ │ │ │ │ └── baseline │ │ │ │ │ └── sceneGraph.usda │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── wrapBackdrop.cpp │ │ │ ├── wrapNodeGraphNodeAPI.cpp │ │ │ ├── wrapSceneGraphPrimAPI.cpp │ │ │ └── wrapTokens.cpp │ │ ├── usdUtils │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── authoring.cpp │ │ │ ├── authoring.h │ │ │ ├── coalescingDiagnosticDelegate.cpp │ │ │ ├── coalescingDiagnosticDelegate.h │ │ │ ├── complianceChecker.py │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── dependencies.cpp │ │ │ ├── dependencies.h │ │ │ ├── flattenLayerStack.cpp │ │ │ ├── flattenLayerStack.h │ │ │ ├── introspection.cpp │ │ │ ├── introspection.h │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── overview.dox │ │ │ ├── pch.h │ │ │ ├── pipeline.cpp │ │ │ ├── pipeline.h │ │ │ ├── registeredVariantSet.cpp │ │ │ ├── registeredVariantSet.h │ │ │ ├── sparseValueWriter.cpp │ │ │ ├── sparseValueWriter.h │ │ │ ├── stageCache.cpp │ │ │ ├── stageCache.h │ │ │ ├── stitch.cpp │ │ │ ├── stitch.h │ │ │ ├── stitchClips.cpp │ │ │ ├── stitchClips.h │ │ │ ├── testenv │ │ │ │ ├── testUsdUtilsAuthoring.py │ │ │ │ ├── testUsdUtilsAuthoring │ │ │ │ │ ├── Lamp.usda │ │ │ │ │ ├── collections.usda │ │ │ │ │ ├── dirtyLayer1.usda │ │ │ │ │ ├── dirtyLayer2.usda │ │ │ │ │ ├── dirtyLayer3.usda │ │ │ │ │ └── layerWithMetadata.usda │ │ │ │ ├── testUsdUtilsCoalescingDiagnosticDelegate.cpp │ │ │ │ ├── testUsdUtilsCoalescingDiagnosticDelegate.py │ │ │ │ ├── testUsdUtilsCreateNewUsdzPackage.py │ │ │ │ ├── testUsdUtilsCreateNewUsdzPackage │ │ │ │ │ ├── attr_a.usd │ │ │ │ │ ├── attr_b.usd │ │ │ │ │ ├── attr_c.usd │ │ │ │ │ ├── base_a.usd │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── contents.txt │ │ │ │ │ │ ├── contents_arkit.txt │ │ │ │ │ │ ├── contents_arkit_flat.txt │ │ │ │ │ │ ├── contents_arkit_nested.txt │ │ │ │ │ │ ├── contents_arkit_nested_2.txt │ │ │ │ │ │ ├── contents_arkit_renamed.txt │ │ │ │ │ │ ├── contents_nested.txt │ │ │ │ │ │ ├── contents_nested_2.txt │ │ │ │ │ │ └── contents_renamed.txt │ │ │ │ │ ├── clip.011.usd │ │ │ │ │ ├── clip.1.usd │ │ │ │ │ ├── clip.10.usd │ │ │ │ │ ├── clip1.usda │ │ │ │ │ ├── clip2.usda │ │ │ │ │ ├── flat.usda │ │ │ │ │ ├── meta_a.usd │ │ │ │ │ ├── meta_b.usd │ │ │ │ │ ├── meta_c.usd │ │ │ │ │ ├── nestedUsdz │ │ │ │ │ │ ├── combined.usda │ │ │ │ │ │ ├── combined.usdz │ │ │ │ │ │ ├── combined2.usda │ │ │ │ │ │ ├── simpleMaterial.usdz │ │ │ │ │ │ └── simpleMesh.usdz │ │ │ │ │ ├── payload_a.usd │ │ │ │ │ ├── ref_a.usd │ │ │ │ │ ├── ref_b.usd │ │ │ │ │ ├── root.usd │ │ │ │ │ ├── sub_a.usd │ │ │ │ │ ├── sub_b.usd │ │ │ │ │ ├── v_attr_a.usd │ │ │ │ │ ├── v_attr_b.usd │ │ │ │ │ ├── v_attr_c.usd │ │ │ │ │ ├── v_meta_a.usda │ │ │ │ │ ├── v_meta_b.usda │ │ │ │ │ └── v_ref_a.usd │ │ │ │ ├── testUsdUtilsDependencyExtractor.py │ │ │ │ ├── testUsdUtilsDependencyExtractor │ │ │ │ │ ├── ascii.usd │ │ │ │ │ ├── ascii.usda │ │ │ │ │ ├── baseline │ │ │ │ │ │ ├── ascii-usd.txt │ │ │ │ │ │ ├── ascii-usda.txt │ │ │ │ │ │ ├── crate-usd.txt │ │ │ │ │ │ └── crate-usdc.txt │ │ │ │ │ ├── clip.010.usd │ │ │ │ │ ├── clip.1.usd │ │ │ │ │ ├── clip.11.usd │ │ │ │ │ ├── crate.usd │ │ │ │ │ └── crate.usdc │ │ │ │ ├── testUsdUtilsFlattenLayerStack.py │ │ │ │ ├── testUsdUtilsFlattenLayerStack │ │ │ │ │ ├── clip_moving_sphere.usda │ │ │ │ │ ├── clip_static_sphere.usda │ │ │ │ │ ├── emptyAssetPaths.usda │ │ │ │ │ ├── payload.usda │ │ │ │ │ ├── reference.usda │ │ │ │ │ ├── root.usda │ │ │ │ │ └── sub.usda │ │ │ │ ├── testUsdUtilsIntrospection.py │ │ │ │ ├── testUsdUtilsIntrospection │ │ │ │ │ └── stageStats.usda │ │ │ │ ├── testUsdUtilsModifyAssetPaths.py │ │ │ │ ├── testUsdUtilsModifyAssetPaths │ │ │ │ │ ├── baseline │ │ │ │ │ │ └── modified.usda │ │ │ │ │ └── layer.usda │ │ │ │ ├── testUsdUtilsPipeline.py │ │ │ │ ├── testUsdUtilsPipeline │ │ │ │ │ ├── BottleMedicalDefaultPrim.usd │ │ │ │ │ ├── BottleMedicalRootPrim.usd │ │ │ │ │ └── BottleMedicalSameName.usd │ │ │ │ ├── testUsdUtilsSparseValueWriter.py │ │ │ │ ├── testUsdUtilsStageCache.py │ │ │ │ ├── testUsdUtilsStitch.cpp │ │ │ │ ├── testUsdUtilsStitch.py │ │ │ │ ├── testUsdUtilsStitch.testenv │ │ │ │ │ └── src │ │ │ │ │ │ ├── Particles_Splash.101.usd │ │ │ │ │ │ ├── Particles_Splash.103.usd │ │ │ │ │ │ ├── Particles_Splash.104.usd │ │ │ │ │ │ ├── Particles_Splash.105.usd │ │ │ │ │ │ ├── Particles_Splash.106.usd │ │ │ │ │ │ ├── Particles_Splash.107.usd │ │ │ │ │ │ ├── Particles_Splash.108.usd │ │ │ │ │ │ ├── Particles_Splash.109.usd │ │ │ │ │ │ ├── letters_perFrame.101.usda │ │ │ │ │ │ ├── letters_perFrame.102.usda │ │ │ │ │ │ ├── letters_perFrame.103.usda │ │ │ │ │ │ ├── letters_perFrame.protos.usda │ │ │ │ │ │ ├── variants_1.usda │ │ │ │ │ │ └── variants_2.usda │ │ │ │ ├── testUsdUtilsStitchClips.py │ │ │ │ ├── testUsdUtilsStitchClips.testenv │ │ │ │ │ └── src │ │ │ │ │ │ ├── PTS_dev.1.usd │ │ │ │ │ │ ├── PTS_dev.10.usd │ │ │ │ │ │ ├── PTS_dev.11.usd │ │ │ │ │ │ ├── PTS_dev.12.usd │ │ │ │ │ │ ├── PTS_dev.13.usd │ │ │ │ │ │ ├── PTS_dev.14.usd │ │ │ │ │ │ ├── PTS_dev.15.usd │ │ │ │ │ │ ├── PTS_dev.16.usd │ │ │ │ │ │ ├── PTS_dev.17.usd │ │ │ │ │ │ ├── PTS_dev.18.usd │ │ │ │ │ │ ├── PTS_dev.19.usd │ │ │ │ │ │ ├── PTS_dev.2.usd │ │ │ │ │ │ ├── PTS_dev.20.usd │ │ │ │ │ │ ├── PTS_dev.21.usd │ │ │ │ │ │ ├── PTS_dev.22.usd │ │ │ │ │ │ ├── PTS_dev.23.usd │ │ │ │ │ │ ├── PTS_dev.24.usd │ │ │ │ │ │ ├── PTS_dev.3.usd │ │ │ │ │ │ ├── PTS_dev.4.usd │ │ │ │ │ │ ├── PTS_dev.5.usd │ │ │ │ │ │ ├── PTS_dev.6.usd │ │ │ │ │ │ ├── PTS_dev.7.usd │ │ │ │ │ │ ├── PTS_dev.8.usd │ │ │ │ │ │ ├── PTS_dev.9.usd │ │ │ │ │ │ ├── Particles_Splash.101.usd │ │ │ │ │ │ ├── Particles_Splash.102.usd │ │ │ │ │ │ ├── Particles_Splash.103.usd │ │ │ │ │ │ ├── Particles_Splash.104.usd │ │ │ │ │ │ ├── Particles_Splash.105.usd │ │ │ │ │ │ ├── Particles_Splash.106.usd │ │ │ │ │ │ ├── Particles_Splash.107.usd │ │ │ │ │ │ ├── Particles_Splash.108.usd │ │ │ │ │ │ ├── Particles_Splash.109.usd │ │ │ │ │ │ ├── alt_topology.usd │ │ │ │ │ │ └── topology.usd │ │ │ │ ├── testUsdUtilsTimeCodeRange.cpp │ │ │ │ ├── testUsdUtilsTimeCodeRange.py │ │ │ │ └── testUsdUtilsVarSelsSessionLayer.py │ │ │ ├── timeCodeRange.cpp │ │ │ ├── timeCodeRange.h │ │ │ ├── wrapAuthoring.cpp │ │ │ ├── wrapCoalescingDiagnosticDelegate.cpp │ │ │ ├── wrapDependencies.cpp │ │ │ ├── wrapFlattenLayerStack.cpp │ │ │ ├── wrapIntrospection.cpp │ │ │ ├── wrapPipeline.cpp │ │ │ ├── wrapRegisteredVariantSet.cpp │ │ │ ├── wrapSparseValueWriter.cpp │ │ │ ├── wrapStageCache.cpp │ │ │ ├── wrapStitch.cpp │ │ │ ├── wrapStitchClips.cpp │ │ │ └── wrapTimeCodeRange.cpp │ │ └── usdVol │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── api.h │ │ │ ├── field3DAsset.cpp │ │ │ ├── field3DAsset.h │ │ │ ├── fieldAsset.cpp │ │ │ ├── fieldAsset.h │ │ │ ├── fieldBase.cpp │ │ │ ├── fieldBase.h │ │ │ ├── generatedSchema.usda │ │ │ ├── module.cpp │ │ │ ├── moduleDeps.cpp │ │ │ ├── openVDBAsset.cpp │ │ │ ├── openVDBAsset.h │ │ │ ├── pch.h │ │ │ ├── plugInfo.json │ │ │ ├── schema.usda │ │ │ ├── testenv │ │ │ └── testUsdVolVolume.py │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ ├── wrapField3DAsset.cpp │ │ │ ├── wrapFieldAsset.cpp │ │ │ ├── wrapFieldBase.cpp │ │ │ ├── wrapOpenVDBAsset.cpp │ │ │ ├── wrapTokens.cpp │ │ │ └── wrapVolume.cpp │ └── plugin │ │ ├── CMakeLists.txt │ │ ├── sdrOsl │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── oslParser.cpp │ │ ├── oslParser.h │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── testenv │ │ │ ├── testOslParser.py │ │ │ └── testOslParser.testenv │ │ │ │ ├── TestNodeOSL.osl │ │ │ │ └── TestNodeOSL.oso │ │ └── wrapOslParser.cpp │ │ ├── usdAbc │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── alembicData.cpp │ │ ├── alembicData.h │ │ ├── alembicFileFormat.cpp │ │ ├── alembicFileFormat.h │ │ ├── alembicReader.cpp │ │ ├── alembicReader.h │ │ ├── alembicTest.cpp │ │ ├── alembicTest.h │ │ ├── alembicUtil.cpp │ │ ├── alembicUtil.h │ │ ├── alembicWriter.cpp │ │ ├── alembicWriter.h │ │ ├── api.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── overview.dox │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── testenv │ │ │ ├── testUsdAbcAlembicData.py │ │ │ ├── testUsdAbcAlembicData │ │ │ │ └── testasset.abc │ │ │ ├── testUsdAbcBugs.py │ │ │ ├── testUsdAbcBugs │ │ │ │ └── bug107381.usd │ │ │ ├── testUsdAbcCamera.py │ │ │ ├── testUsdAbcCamera │ │ │ │ ├── testAbcCamera.abc │ │ │ │ └── testShotFlattened.usd │ │ │ ├── testUsdAbcConversionBasisCurves.py │ │ │ ├── testUsdAbcConversionBasisCurves │ │ │ │ └── original.usda │ │ │ ├── testUsdAbcConversionSubdiv.py │ │ │ ├── testUsdAbcConversionSubdiv │ │ │ │ └── original.usda │ │ │ ├── testUsdAbcFaceset.py │ │ │ ├── testUsdAbcFaceset │ │ │ │ └── original.usda │ │ │ ├── testUsdAbcIndexedProperties.py │ │ │ ├── testUsdAbcIndexedProperties │ │ │ │ ├── baseline │ │ │ │ │ └── indexedTextureCoordinates.def.usda │ │ │ │ └── indexedTextureCoordinates.abc │ │ │ ├── testUsdAbcInstancing.py │ │ │ ├── testUsdAbcInstancing │ │ │ │ ├── baseline │ │ │ │ │ └── nestedInstancing.def.usda │ │ │ │ └── nestedInstancing.abc │ │ │ ├── testUsdAbcInstancingNinst │ │ │ │ ├── baseline │ │ │ │ │ └── nestedInstancing.ninst.usda │ │ │ │ └── nestedInstancing.abc │ │ │ ├── testUsdAbcInstancingPinst │ │ │ │ ├── baseline │ │ │ │ │ └── nestedInstancing.pinst.usda │ │ │ │ └── nestedInstancing.abc │ │ │ ├── testUsdAbcInstancingXinst │ │ │ │ ├── baseline │ │ │ │ │ └── nestedInstancing.xinst.usda │ │ │ │ └── nestedInstancing.abc │ │ │ ├── testUsdAbcUvReadWrite.py │ │ │ ├── testUsdAbcUvReadWrite │ │ │ │ └── testUsdAbcUvReadWrite.usda │ │ │ ├── testUsdAbcUvReadWrite_OldEncoding.py │ │ │ └── testUsdAbcUvReadWrite_OldEncoding │ │ │ │ └── testUsdAbcUvReadWrite_OldEncoding.usda │ │ └── wrapAlembicTest.cpp │ │ └── usdMtlx │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── backdoor.cpp │ │ ├── backdoor.h │ │ ├── discovery.cpp │ │ ├── fileFormat.cpp │ │ ├── fileFormat.h │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── overview.dox │ │ ├── parser.cpp │ │ ├── pch.h │ │ ├── plugInfo.json │ │ ├── reader.cpp │ │ ├── reader.h │ │ ├── testenv │ │ ├── testUsdMtlxDiscovery.py │ │ ├── testUsdMtlxDiscovery.testenv │ │ │ └── test.mtlx │ │ ├── testUsdMtlxFileFormat.py │ │ ├── testUsdMtlxFileFormat.testenv │ │ │ ├── Looks.mtlx │ │ │ ├── NodeGraphs.mtlx │ │ │ ├── SimpleSrf.mtlx │ │ │ └── baseline │ │ │ │ ├── Looks.usda │ │ │ │ └── NodeGraphs.usda │ │ ├── testUsdMtlxParser.py │ │ └── testUsdMtlxParser.testenv │ │ │ └── test.mtlx │ │ ├── utils.cpp │ │ ├── utils.h │ │ └── wrapBackdoor.cpp └── usdImaging │ ├── CMakeLists.txt │ ├── bin │ ├── CMakeLists.txt │ ├── testusdview │ │ ├── CMakeLists.txt │ │ ├── testenv │ │ │ ├── testUsdviewAlive │ │ │ │ ├── testAlive.py │ │ │ │ └── testUsdviewAliveSetup.py │ │ │ ├── testUsdviewBackgroundColor │ │ │ │ ├── baseline │ │ │ │ │ ├── black.png │ │ │ │ │ ├── grey_dark.png │ │ │ │ │ ├── grey_light.png │ │ │ │ │ └── white.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewBackgroundColor.py │ │ │ ├── testUsdviewCameraMaskMode │ │ │ │ ├── baseline │ │ │ │ │ ├── full.png │ │ │ │ │ ├── none.png │ │ │ │ │ ├── outline.png │ │ │ │ │ └── partial.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewCameraMaskMode.py │ │ │ ├── testUsdviewClippingPlanes │ │ │ │ ├── baseline │ │ │ │ │ ├── after_recompute.png │ │ │ │ │ ├── before_recompute.png │ │ │ │ │ ├── no_override.png │ │ │ │ │ ├── override_both.png │ │ │ │ │ ├── override_far.png │ │ │ │ │ └── override_near.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewClippingPlanes.py │ │ │ ├── testUsdviewComplexity │ │ │ │ ├── baseline │ │ │ │ │ ├── high.png │ │ │ │ │ ├── low.png │ │ │ │ │ ├── medium.png │ │ │ │ │ └── very_high.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewComplexity.py │ │ │ ├── testUsdviewDeactivate │ │ │ │ ├── baseline │ │ │ │ │ ├── parentChildDeactivate1.png │ │ │ │ │ ├── parentChildDeactivate2.png │ │ │ │ │ ├── parentDeactivate.png │ │ │ │ │ └── singleDeactivate.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewDeactivate.py │ │ │ ├── testUsdviewDefaultMaterial │ │ │ │ ├── baseline │ │ │ │ │ ├── ambient.png │ │ │ │ │ ├── both.png │ │ │ │ │ ├── none.png │ │ │ │ │ └── specular.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewDefaultMaterial.py │ │ │ ├── testUsdviewEmbreeRenderer │ │ │ │ ├── baseline │ │ │ │ │ └── viewport.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewEmbreeRenderer.py │ │ │ ├── testUsdviewFieldOfView │ │ │ │ ├── baseline │ │ │ │ │ ├── fov45.png │ │ │ │ │ ├── fov60.png │ │ │ │ │ └── fov90.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewFieldOfView.py │ │ │ ├── testUsdviewFileArguments │ │ │ │ ├── baseline │ │ │ │ │ ├── invalidSyntax_test_out │ │ │ │ │ ├── missing_test_out │ │ │ │ │ ├── py_test_out │ │ │ │ │ └── txt_test_out │ │ │ │ ├── invalidSyntax.usda │ │ │ │ ├── test.py │ │ │ │ ├── test.txt │ │ │ │ ├── test.usd │ │ │ │ ├── test.usda │ │ │ │ ├── test.usdc │ │ │ │ ├── testInvalidFileArg.py │ │ │ │ └── testValidFileArg.py │ │ │ ├── testUsdviewFrameSelection │ │ │ │ ├── baseline │ │ │ │ │ ├── framed.png │ │ │ │ │ ├── rotatedStart.png │ │ │ │ │ ├── toggleToFramed.png │ │ │ │ │ └── toggleToStart.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewFrameSelection.py │ │ │ ├── testUsdviewFreeCamera │ │ │ │ ├── Block.usda │ │ │ │ ├── baseline │ │ │ │ │ ├── adjustDist_05.png │ │ │ │ │ ├── adjustDist_05_20.png │ │ │ │ │ ├── block_B.png │ │ │ │ │ ├── block_F.png │ │ │ │ │ ├── block_L.png │ │ │ │ │ ├── block_R.png │ │ │ │ │ ├── end.png │ │ │ │ │ ├── phi45.png │ │ │ │ │ ├── rot_truck.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── truck_-1_-1.png │ │ │ │ │ └── truck_1_1.png │ │ │ │ └── testUsdviewFreeCamera.py │ │ │ ├── testUsdviewInterpreterNoRender │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewInterpreterNoRender.py │ │ │ ├── testUsdviewLights │ │ │ │ ├── baseline │ │ │ │ │ ├── ambient_only_three_off.png │ │ │ │ │ ├── ambient_only_three_on.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── fill.png │ │ │ │ │ ├── key.png │ │ │ │ │ ├── none.png │ │ │ │ │ └── three.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewLights.py │ │ │ ├── testUsdviewLoadPlugins │ │ │ │ ├── plugins │ │ │ │ │ ├── extraPlugin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── plugInfo.json │ │ │ │ │ ├── extraPluginChained │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── plugInfo.json │ │ │ │ │ ├── extraPluginDuplicateCommand │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── plugInfo.json │ │ │ │ │ ├── extraPluginMissingContainer │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── plugInfo.json │ │ │ │ │ └── extraPluginMultipleContainers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── plugInfo.json │ │ │ │ ├── test.usda │ │ │ │ ├── testUsdviewLoadPlugins_alive.py │ │ │ │ ├── testUsdviewLoadPlugins_chained.py │ │ │ │ ├── testUsdviewLoadPlugins_duplicateCommand.py │ │ │ │ ├── testUsdviewLoadPlugins_missingContainer.py │ │ │ │ └── testUsdviewLoadPlugins_multipleContainers.py │ │ │ ├── testUsdviewMaterialEdits │ │ │ │ ├── baseline │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewMaterialEdits.py │ │ │ ├── testUsdviewMetadatatabSelect │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewMetadatatabSelect.py │ │ │ ├── testUsdviewNavigationKeys │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewNavigationKeys.py │ │ │ ├── testUsdviewNoPlugins │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewNoPlugins.py │ │ │ ├── testUsdviewOCIO │ │ │ │ ├── baseline │ │ │ │ │ └── ocio_grey_dark.png │ │ │ │ ├── test.ocio │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewOCIO.py │ │ │ ├── testUsdviewOIT │ │ │ │ ├── baseline │ │ │ │ │ └── oit.png │ │ │ │ ├── shader1.glslfx │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewOIT.py │ │ │ ├── testUsdviewPickMode │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewPickMode.py │ │ │ ├── testUsdviewPrimPathBar │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewPrimPathBar.py │ │ │ ├── testUsdviewPrimSearch │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewPrimSearch.py │ │ │ ├── testUsdviewPropertySearch │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewPropertySearch.py │ │ │ ├── testUsdviewReloadReopen │ │ │ │ ├── baseline │ │ │ │ │ ├── coloredAndFramed.png │ │ │ │ │ ├── reloaded.png │ │ │ │ │ └── reopened.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewReloadReopen.py │ │ │ ├── testUsdviewRenderMode │ │ │ │ ├── baseline │ │ │ │ │ ├── geom_flat.png │ │ │ │ │ ├── geom_only.png │ │ │ │ │ ├── geom_smooth.png │ │ │ │ │ ├── render_mode_flat.png │ │ │ │ │ ├── render_mode_hidden_surface_wireframe.png │ │ │ │ │ ├── render_mode_points.png │ │ │ │ │ ├── render_mode_smooth.png │ │ │ │ │ ├── render_mode_wireframe.png │ │ │ │ │ └── render_mode_wireframe_on_surface.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewRenderMode.py │ │ │ ├── testUsdviewSelectionHighlighting │ │ │ │ ├── baseline │ │ │ │ │ ├── sel_highlight.png │ │ │ │ │ ├── sel_highlight_color.png │ │ │ │ │ ├── sel_highlight_double.png │ │ │ │ │ ├── sel_highlight_instance.png │ │ │ │ │ ├── sel_highlight_none.png │ │ │ │ │ └── sel_highlight_perceptual_diff.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewSelectionHighlighting.py │ │ │ ├── testUsdviewSkinning │ │ │ │ ├── arm.usda │ │ │ │ ├── baseline │ │ │ │ │ ├── change_complexity.png │ │ │ │ │ ├── invis_frame_4.png │ │ │ │ │ ├── post_skel_resync_frame_6.png │ │ │ │ │ ├── post_skinned_prim_resync_frame_2.png │ │ │ │ │ ├── pre_skel_resync_frame_6.png │ │ │ │ │ ├── pre_skinned_prim_resync_frame_2.png │ │ │ │ │ ├── vis_frame_4.png │ │ │ │ │ └── vis_frame_8.png │ │ │ │ └── testUsdviewSkinning.py │ │ │ ├── testUsdviewTimeSamples │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewTimeSamples.py │ │ │ ├── testUsdviewUpAxis │ │ │ │ ├── baseline │ │ │ │ │ ├── yUp.png │ │ │ │ │ └── zUp.png │ │ │ │ ├── testUsdviewUpAxis_yUp.py │ │ │ │ ├── testUsdviewUpAxis_zUp.py │ │ │ │ ├── testYUp.usda │ │ │ │ └── testZUp.usda │ │ │ ├── testUsdviewVariantSelection │ │ │ │ ├── baseline │ │ │ │ │ ├── capsule1.png │ │ │ │ │ ├── capsule2.png │ │ │ │ │ ├── cone1.png │ │ │ │ │ ├── cone2.png │ │ │ │ │ ├── cube1.png │ │ │ │ │ ├── cube2.png │ │ │ │ │ ├── cylinder1.png │ │ │ │ │ └── cylinder2.png │ │ │ │ ├── test.usda │ │ │ │ └── testUsdviewVariantSelection.py │ │ │ └── testUsdviewWrapper │ │ │ │ ├── baseline │ │ │ │ └── valid_output │ │ │ │ ├── test.usda │ │ │ │ ├── testCallback.py │ │ │ │ ├── testCallback_Invalid_1.py │ │ │ │ ├── testCallback_Invalid_2.py │ │ │ │ └── testCallback_Invalid_3.py │ │ └── testusdview.py │ ├── usdrecord │ │ ├── CMakeLists.txt │ │ ├── testenv │ │ │ └── RecordTest │ │ │ │ ├── AnimCube.usda │ │ │ │ └── baseline │ │ │ │ ├── AnimCube.1.png │ │ │ │ ├── AnimCube.10.png │ │ │ │ └── AnimCube.5.png │ │ └── usdrecord.py │ └── usdview │ │ ├── CMakeLists.txt │ │ └── usdview.py │ └── lib │ ├── CMakeLists.txt │ ├── usdAppUtils │ ├── CMakeLists.txt │ ├── __init__.py │ ├── api.h │ ├── camera.cpp │ ├── camera.h │ ├── cameraArgs.py │ ├── colorArgs.py │ ├── complexityArgs.py │ ├── frameRecorder.cpp │ ├── frameRecorder.h │ ├── framesArgs.py │ ├── module.cpp │ ├── moduleDeps.cpp │ ├── overview.dox │ ├── pch.h │ ├── rendererArgs.py │ ├── testenv │ │ ├── CameraTest │ │ │ └── Cameras.usda │ │ ├── FrameRecorderTest │ │ │ ├── AnimCube.usda │ │ │ └── baseline │ │ │ │ ├── AnimCube.1.png │ │ │ │ ├── AnimCube.10.png │ │ │ │ └── AnimCube.5.png │ │ ├── testUsdAppUtilsCamera.py │ │ ├── testUsdAppUtilsCmdlineArgs.py │ │ ├── testUsdAppUtilsComplexity.py │ │ └── testUsdAppUtilsFrameRecorder.py │ ├── wrapCamera.cpp │ └── wrapFrameRecorder.cpp │ ├── usdImaging │ ├── CMakeLists.txt │ ├── adapterRegistry.cpp │ ├── adapterRegistry.h │ ├── api.h │ ├── basisCurvesAdapter.cpp │ ├── basisCurvesAdapter.h │ ├── capsuleAdapter.cpp │ ├── capsuleAdapter.h │ ├── collectionCache.cpp │ ├── collectionCache.h │ ├── coneAdapter.cpp │ ├── coneAdapter.h │ ├── coordSysAdapter.cpp │ ├── coordSysAdapter.h │ ├── cubeAdapter.cpp │ ├── cubeAdapter.h │ ├── cylinderAdapter.cpp │ ├── cylinderAdapter.h │ ├── cylinderLightAdapter.cpp │ ├── cylinderLightAdapter.h │ ├── debugCodes.cpp │ ├── debugCodes.h │ ├── delegate.cpp │ ├── delegate.h │ ├── diskLightAdapter.cpp │ ├── diskLightAdapter.h │ ├── distantLightAdapter.cpp │ ├── distantLightAdapter.h │ ├── domeLightAdapter.cpp │ ├── domeLightAdapter.h │ ├── fieldAdapter.cpp │ ├── fieldAdapter.h │ ├── gprimAdapter.cpp │ ├── gprimAdapter.h │ ├── indexProxy.cpp │ ├── indexProxy.h │ ├── inheritedCache.cpp │ ├── inheritedCache.h │ ├── instanceAdapter.cpp │ ├── instanceAdapter.h │ ├── instancerContext.cpp │ ├── instancerContext.h │ ├── lightAdapter.cpp │ ├── lightAdapter.h │ ├── materialAdapter.cpp │ ├── materialAdapter.h │ ├── meshAdapter.cpp │ ├── meshAdapter.h │ ├── nurbsPatchAdapter.cpp │ ├── nurbsPatchAdapter.h │ ├── pch.h │ ├── plugInfo.json │ ├── pointInstancerAdapter.cpp │ ├── pointInstancerAdapter.h │ ├── pointsAdapter.cpp │ ├── pointsAdapter.h │ ├── primAdapter.cpp │ ├── primAdapter.h │ ├── rectLightAdapter.cpp │ ├── rectLightAdapter.h │ ├── sphereAdapter.cpp │ ├── sphereAdapter.h │ ├── sphereLightAdapter.cpp │ ├── sphereLightAdapter.h │ ├── textureUtils.cpp │ ├── textureUtils.h │ ├── tokens.cpp │ ├── tokens.h │ ├── unitTestHelper.h │ ├── valueCache.cpp │ ├── valueCache.h │ ├── version.h │ ├── volumeAdapter.cpp │ └── volumeAdapter.h │ ├── usdImagingGL │ ├── CMakeLists.txt │ ├── __init__.py │ ├── api.h │ ├── drawModeAdapter.cpp │ ├── drawModeAdapter.h │ ├── engine.cpp │ ├── engine.h │ ├── hydraMaterialAdapter.cpp │ ├── hydraMaterialAdapter.h │ ├── legacyEngine.cpp │ ├── legacyEngine.h │ ├── module.cpp │ ├── moduleDeps.cpp │ ├── package.cpp │ ├── package.h │ ├── pch.h │ ├── plugInfo.json │ ├── renderParams.cpp │ ├── renderParams.h │ ├── rendererSettings.h │ ├── shaders │ │ └── drawMode.glslfx │ ├── testenv │ │ └── testUsdImagingGLBasicDrawing.cpp │ ├── textureUtils.cpp │ ├── textureUtils.h │ ├── unitTestGLDrawing.cpp │ ├── unitTestGLDrawing.h │ ├── version.h │ ├── wrapEngine.cpp │ ├── wrapRenderParams.cpp │ └── wrapRendererSettings.cpp │ ├── usdShaders │ ├── CMakeLists.txt │ ├── __init__.py │ ├── api.h │ ├── discoveryPlugin.cpp │ ├── discoveryPlugin.h │ ├── moduleDeps.cpp │ ├── overview.dox │ ├── pch.h │ ├── plugInfo.json │ └── shaders │ │ ├── UsdPrimvarReader_float.osl │ │ ├── UsdPrimvarReader_float2.osl │ │ ├── UsdPrimvarReader_float3.osl │ │ ├── UsdUVTexture.osl │ │ ├── previewSurface.glslfx │ │ ├── primvarReader.glslfx │ │ ├── shaderDefs.usda │ │ └── uvTexture.glslfx │ ├── usdSkelImaging │ ├── CMakeLists.txt │ ├── api.h │ ├── package.cpp │ ├── package.h │ ├── pch.h │ ├── plugInfo.json │ ├── shaders │ │ └── skinning.glslfx │ ├── skelRootAdapter.cpp │ ├── skelRootAdapter.h │ ├── skeletonAdapter.cpp │ ├── skeletonAdapter.h │ ├── utils.cpp │ └── utils.h │ ├── usdVolImaging │ ├── CMakeLists.txt │ ├── api.h │ ├── field3dAssetAdapter.cpp │ ├── field3dAssetAdapter.h │ ├── openvdbAssetAdapter.cpp │ ├── openvdbAssetAdapter.h │ ├── pch.h │ ├── plugInfo.json │ ├── tokens.cpp │ └── tokens.h │ └── usdviewq │ ├── CMakeLists.txt │ ├── __init__.py │ ├── adjustClipping.py │ ├── adjustClippingUI.ui │ ├── adjustDefaultMaterial.py │ ├── adjustDefaultMaterialUI.ui │ ├── api.h │ ├── appController.py │ ├── appEventFilter.py │ ├── arrayAttributeView.py │ ├── attributeValueEditor.py │ ├── attributeValueEditorUI.ui │ ├── attributeViewContextMenu.py │ ├── common.py │ ├── constantGroup.py │ ├── customAttributes.py │ ├── debugCodes.cpp │ ├── debugCodes.h │ ├── debugFlagsWidget.py │ ├── frameSlider.py │ ├── freeCamera.py │ ├── headerContextMenu.py │ ├── icons │ ├── branch-closed-selected.png │ ├── branch-closed.png │ ├── branch-open-selected.png │ ├── branch-open.png │ ├── right-arrow-disabled.png │ ├── right-arrow.png │ ├── usd-attr-plain-icon.png │ ├── usd-attr-with-conn-icon.png │ ├── usd-cmp-icon.png │ ├── usd-conn-icon.png │ ├── usd-rel-plain-icon.png │ ├── usd-rel-with-target-icon.png │ └── usd-target-icon.png │ ├── layerStackContextMenu.py │ ├── legendUtil.py │ ├── mainWindowUI.ui │ ├── module.cpp │ ├── moduleDeps.cpp │ ├── overridableLineEdit.py │ ├── pch.h │ ├── plugin.py │ ├── prettyPrint.py │ ├── primContextMenu.py │ ├── primContextMenuItems.py │ ├── primLegend.py │ ├── primLegendUI.ui │ ├── primTreeWidget.py │ ├── primViewItem.py │ ├── propertyLegend.py │ ├── propertyLegendUI.ui │ ├── pythonInterpreter.py │ ├── qt.py │ ├── rootDataModel.py │ ├── scalarTypes.py │ ├── selectionDataModel.py │ ├── settings.py │ ├── settings2.py │ ├── stageView.py │ ├── testenv │ ├── test.usda │ ├── testUsdviewqConstantGroup.py │ ├── testUsdviewqLauncher.py │ ├── testUsdviewqRootDataModel.py │ ├── testUsdviewqRootDataModel │ │ └── test.usda │ ├── testUsdviewqSelectionDataModel.py │ ├── testUsdviewqSettings2.py │ └── testUsdviewqViewSettingsDataModel.py │ ├── usdviewApi.py │ ├── usdviewContextMenuItem.py │ ├── usdviewstyle.qss │ ├── utils.cpp │ ├── utils.h │ ├── variantComboBox.py │ ├── viewSettingsDataModel.py │ └── wrapUtils.cpp └── third_party ├── houdini ├── CMakeLists.txt ├── README.md ├── lib │ ├── CMakeLists.txt │ └── gusd │ │ ├── CMakeLists.txt │ │ ├── GEO_IOTranslator.cpp │ │ ├── GEO_IOTranslator.h │ │ ├── GT_OldPointInstancer.cpp │ │ ├── GT_OldPointInstancer.h │ │ ├── GT_PackedUSD.cpp │ │ ├── GT_PackedUSD.h │ │ ├── GT_PointInstancer.cpp │ │ ├── GT_PointInstancer.h │ │ ├── GT_PrimCache.cpp │ │ ├── GT_PrimCache.h │ │ ├── GT_Utils.cpp │ │ ├── GT_Utils.h │ │ ├── GT_VtArray.h │ │ ├── GT_VtStringArray.h │ │ ├── GU_PackedUSD.cpp │ │ ├── GU_PackedUSD.h │ │ ├── GU_USD.cpp │ │ ├── GU_USD.h │ │ ├── NURBSCurvesWrapper.cpp │ │ ├── NURBSCurvesWrapper.h │ │ ├── OP_ParmChangeMicroNode.cpp │ │ ├── OP_ParmChangeMicroNode.h │ │ ├── PRM_Shared.cpp │ │ ├── PRM_Shared.h │ │ ├── USD_CustomTraverse.cpp │ │ ├── USD_CustomTraverse.h │ │ ├── USD_DataCache.cpp │ │ ├── USD_DataCache.h │ │ ├── USD_PropertyMap.h │ │ ├── USD_StdTraverse.cpp │ │ ├── USD_StdTraverse.h │ │ ├── USD_ThreadedTraverse.cpp │ │ ├── USD_ThreadedTraverse.h │ │ ├── USD_Traverse.cpp │ │ ├── USD_Traverse.h │ │ ├── USD_TraverseSimple.h │ │ ├── USD_Utils.cpp │ │ ├── USD_Utils.h │ │ ├── USD_VisCache.cpp │ │ ├── USD_VisCache.h │ │ ├── USD_XformCache.cpp │ │ ├── USD_XformCache.h │ │ ├── UT_Assert.h │ │ ├── UT_CappedCache.h │ │ ├── UT_Gf.h │ │ ├── UT_StaticInit.h │ │ ├── UT_TypeTraits.cpp │ │ ├── UT_TypeTraits.h │ │ ├── UT_Version.h │ │ ├── UT_VtArray.h │ │ ├── __init__.py │ │ ├── agentUtils.cpp │ │ ├── agentUtils.h │ │ ├── api.h │ │ ├── boundsCache.cpp │ │ ├── boundsCache.h │ │ ├── context.h │ │ ├── curvesWrapper.cpp │ │ ├── curvesWrapper.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── defaultArray.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── groupBaseWrapper.cpp │ │ ├── groupBaseWrapper.h │ │ ├── gusd.h │ │ ├── instancerWrapper.cpp │ │ ├── instancerWrapper.h │ │ ├── meshWrapper.cpp │ │ ├── meshWrapper.h │ │ ├── module.cpp │ │ ├── packedUsdWrapper.cpp │ │ ├── packedUsdWrapper.h │ │ ├── plugin.cpp │ │ ├── pointsWrapper.cpp │ │ ├── pointsWrapper.h │ │ ├── primWrapper.cpp │ │ ├── primWrapper.h │ │ ├── purpose.cpp │ │ ├── purpose.h │ │ ├── refiner.cpp │ │ ├── refiner.h │ │ ├── scopeWrapper.cpp │ │ ├── scopeWrapper.h │ │ ├── shaderWrapper.cpp │ │ ├── shaderWrapper.h │ │ ├── site │ │ └── icons │ │ │ └── pxh_gusdIcon.png │ │ ├── stageCache.cpp │ │ ├── stageCache.h │ │ ├── stageEdit.cpp │ │ ├── stageEdit.h │ │ ├── stageOpts.cpp │ │ ├── stageOpts.h │ │ ├── testenv │ │ ├── testGusdErrors.cpp │ │ └── testGusdStageCache │ │ │ ├── defaultPrim.usda │ │ │ ├── test.usda │ │ │ ├── test2.usda │ │ │ ├── test3.usda │ │ │ └── testGusdStageCache.py │ │ ├── tokens.cpp │ │ ├── tokens.h │ │ ├── treemodel.py │ │ ├── treeview.py │ │ ├── wrapStageCache.cpp │ │ ├── wrapStageEdit.cpp │ │ ├── wrapStageOpts.cpp │ │ ├── writeCtrlFlags.cpp │ │ ├── writeCtrlFlags.h │ │ ├── xformWrapper.cpp │ │ └── xformWrapper.h └── plugin │ ├── CMakeLists.txt │ └── OP_gusd │ ├── CMakeLists.txt │ ├── OBJ_usdcamera.cpp │ ├── OBJ_usdcamera.h │ ├── OP_Utils.cpp │ ├── OP_Utils.h │ ├── OPcustomize_gusd │ ├── ROP_usdcoalesce.otl │ ├── ROP_usdcoalesce.py │ ├── ROP_usdlayer.otl │ ├── ROP_usdlayer.py │ ├── ROP_usdoutput.cpp │ ├── ROP_usdoutput.h │ ├── ROP_usdreference.otl │ ├── ROP_usdreference.py │ ├── SOP_camerafrustum.otl │ ├── SOP_usdbindproxy.otl │ ├── SOP_usdexportattributes.hda │ ├── SOP_usdimport.cpp │ ├── SOP_usdimport.h │ ├── SOP_usdinstanceprototypes.hda │ ├── SOP_usdretime.hda │ ├── SOP_usdunpack.cpp │ ├── SOP_usdunpack.h │ ├── UsdImport.pypanel │ ├── help │ ├── USDPackedPrims.txt │ ├── UsdOutputOverview.txt │ └── nodes │ │ ├── out │ │ ├── pixar--usdlayer.txt │ │ ├── pixar--usdoutput.txt │ │ └── pixar--usdreference.txt │ │ └── sop │ │ ├── pixar--usdimport.txt │ │ ├── pixar--usdinstanceprototypes.txt │ │ └── pixar--usdunpack.txt │ ├── obj │ └── pixar-usdcamera.py │ ├── pixar-camerafrustum.png │ ├── pixar-camerafrustum.svg │ ├── pixar-usdrop.json │ └── plugin.cpp ├── katana ├── CMakeLists.txt ├── README.md ├── lib │ ├── CMakeLists.txt │ ├── katanaAttrfncApi │ │ └── CMakeLists.txt │ ├── katanaOpApi │ │ └── CMakeLists.txt │ ├── katanaPluginApi │ │ └── CMakeLists.txt │ ├── usdKatana │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── attrMap.cpp │ │ ├── attrMap.h │ │ ├── baseMaterialHelpers.cpp │ │ ├── baseMaterialHelpers.h │ │ ├── blindDataObject.cpp │ │ ├── blindDataObject.h │ │ ├── cache.cpp │ │ ├── cache.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── generatedSchema.usda │ │ ├── locks.cpp │ │ ├── locks.h │ │ ├── lookAPI.cpp │ │ ├── lookAPI.h │ │ ├── module.cpp │ │ ├── overview.dox │ │ ├── plugInfo.json │ │ ├── readBasisCurves.cpp │ │ ├── readBasisCurves.h │ │ ├── readBlindData.cpp │ │ ├── readBlindData.h │ │ ├── readCamera.cpp │ │ ├── readCamera.h │ │ ├── readConstraintTarget.cpp │ │ ├── readConstraintTarget.h │ │ ├── readGeomSubset.cpp │ │ ├── readGeomSubset.h │ │ ├── readGprim.cpp │ │ ├── readGprim.h │ │ ├── readLight.cpp │ │ ├── readLight.h │ │ ├── readLightFilter.cpp │ │ ├── readLightFilter.h │ │ ├── readMaterial.cpp │ │ ├── readMaterial.h │ │ ├── readMesh.cpp │ │ ├── readMesh.h │ │ ├── readModel.cpp │ │ ├── readModel.h │ │ ├── readNurbsPatch.cpp │ │ ├── readNurbsPatch.h │ │ ├── readPointInstancer.cpp │ │ ├── readPointInstancer.h │ │ ├── readPoints.cpp │ │ ├── readPoints.h │ │ ├── readPrim.cpp │ │ ├── readPrim.h │ │ ├── readXformable.cpp │ │ ├── readXformable.h │ │ ├── schema.usda │ │ ├── tokens.cpp │ │ ├── tokens.h │ │ ├── usdInArgs.cpp │ │ ├── usdInArgs.h │ │ ├── usdInPluginRegistry.cpp │ │ ├── usdInPluginRegistry.h │ │ ├── usdInPrivateData.cpp │ │ ├── usdInPrivateData.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── wrapBlindDataObject.cpp │ │ ├── wrapCache.cpp │ │ ├── wrapLookAPI.cpp │ │ └── wrapTokens.cpp │ └── vtKatana │ │ ├── CMakeLists.txt │ │ ├── array.cpp │ │ ├── array.h │ │ ├── internalFromVt.h │ │ ├── internalToVt.h │ │ ├── internalTraits.cpp │ │ ├── internalTraits.h │ │ ├── traits.cpp │ │ ├── traits.h │ │ ├── value.cpp │ │ └── value.h ├── plugin │ ├── CMakeLists.txt │ ├── pxrUsdIn │ │ ├── CMakeLists.txt │ │ ├── overview.dox │ │ └── pxrUsdIn.cpp │ ├── pxrUsdInPrman │ │ ├── CMakeLists.txt │ │ ├── declarePackageOps.h │ │ ├── prmanGeometryDecorator.cpp │ │ └── register.cpp │ ├── pxrUsdInShipped │ │ ├── CMakeLists.txt │ │ ├── attrfnc_materialReference.cpp │ │ ├── attrfnc_materialReference.h │ │ ├── basisCurves.cpp │ │ ├── camera.cpp │ │ ├── constraints.cpp │ │ ├── declareCoreOps.h │ │ ├── geomSubset.cpp │ │ ├── light.cpp │ │ ├── lightFilter.cpp │ │ ├── material.cpp │ │ ├── materialsGroup.cpp │ │ ├── mesh.cpp │ │ ├── model.cpp │ │ ├── nurbsPatch.cpp │ │ ├── pointInstancer.cpp │ │ ├── points.cpp │ │ ├── register.cpp │ │ ├── resolveMaterialBindings.cpp │ │ ├── scope.cpp │ │ ├── testenv │ │ │ ├── Basic │ │ │ │ ├── basic.katana │ │ │ │ ├── camera.attrs │ │ │ │ ├── collection.attrs │ │ │ │ ├── descendantCollection.attrs │ │ │ │ ├── faceset0.attrs │ │ │ │ ├── faceset1.attrs │ │ │ │ ├── geomCollection.attrs │ │ │ │ ├── look.attrs │ │ │ │ ├── mesh.attrs │ │ │ │ ├── model.attrs │ │ │ │ ├── plane.attrs │ │ │ │ ├── shot.usda │ │ │ │ ├── testPxrUsdInShippedBasic.py │ │ │ │ └── xform.attrs │ │ │ └── PointInstancer │ │ │ │ ├── oss │ │ │ │ ├── baseline.motion.xml │ │ │ │ ├── baseline.translateOnly.xml │ │ │ │ ├── test.motion.usda │ │ │ │ └── test.translateOnly.usda │ │ │ │ └── testPxrUsdInShippedPointInstancer.py │ │ ├── uiUtils.cpp │ │ └── xform.cpp │ └── vmp_usd │ │ ├── CMakeLists.txt │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── usdVMP.cpp │ │ └── usdVMP.h └── python │ ├── CMakeLists.txt │ └── nodetypes │ ├── CMakeLists.txt │ └── PxrUsdIn.py ├── maya ├── CMakeLists.txt ├── README.md ├── lib │ ├── CMakeLists.txt │ ├── px_vp20 │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── glslProgram.cpp │ │ ├── glslProgram.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── utils_legacy.cpp │ │ └── utils_legacy.h │ ├── pxrUsdMayaGL │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── batchRenderer.cpp │ │ ├── batchRenderer.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── hdImagingShapeDrawOverride.cpp │ │ ├── hdImagingShapeDrawOverride.h │ │ ├── hdImagingShapeUI.cpp │ │ ├── hdImagingShapeUI.h │ │ ├── hdRenderer.cpp │ │ ├── hdRenderer.h │ │ ├── instancerImager.cpp │ │ ├── instancerImager.h │ │ ├── instancerShapeAdapter.cpp │ │ ├── instancerShapeAdapter.h │ │ ├── proxyDrawOverride.cpp │ │ ├── proxyDrawOverride.h │ │ ├── proxyShapeDelegate.cpp │ │ ├── proxyShapeUI.cpp │ │ ├── proxyShapeUI.h │ │ ├── renderParams.h │ │ ├── sceneDelegate.cpp │ │ ├── sceneDelegate.h │ │ ├── shapeAdapter.cpp │ │ ├── shapeAdapter.h │ │ ├── softSelectHelper.cpp │ │ ├── softSelectHelper.h │ │ ├── testenv │ │ │ ├── BatchRendererIsolateSelectionTest │ │ │ │ ├── CubeModel.usda │ │ │ │ └── IsolateSelectionTest.ma │ │ │ ├── BatchRendererResetTest │ │ │ │ ├── AssemblySaveAsTest.ma │ │ │ │ ├── AssemblySaveAsTest_LegacyViewport.ma │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── EmptyScene.ma │ │ │ │ ├── ProxyShapeBatchRendererResetTest.ma │ │ │ │ └── ProxyShapeBatchRendererResetTest_LegacyViewport.ma │ │ │ ├── InstancerDrawTest │ │ │ │ ├── CubeModel.png │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── InstancerDrawTest.ma │ │ │ │ ├── baseline │ │ │ │ │ ├── InstancerTest_cards.png │ │ │ │ │ ├── InstancerTest_empty.png │ │ │ │ │ ├── InstancerTest_frame50.png │ │ │ │ │ ├── InstancerTest_initial.png │ │ │ │ │ └── InstancerTest_instance2.png │ │ │ │ └── nCache │ │ │ │ │ ├── nParticles.mcx │ │ │ │ │ └── nParticles.xml │ │ │ ├── ProxyShapeDrawAndTransformTest │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── ProxyShapeDrawAndTransformTest.ma │ │ │ │ └── baseline │ │ │ │ │ ├── ProxyShapeDrawAndTransformTest_initial.png │ │ │ │ │ ├── ProxyShapeDrawAndTransformTest_tz_10.png │ │ │ │ │ └── ProxyShapeDrawAndTransformTest_tz_5.png │ │ │ ├── ProxyShapeDrawColorAccuracyTest │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── ProxyShapeDrawColorAccuracyTest.ma │ │ │ │ └── baseline │ │ │ │ │ ├── ProxyShapeDrawColorAccuracyTest_all_lights.png │ │ │ │ │ └── ProxyShapeDrawColorAccuracyTest_default_lights.png │ │ │ ├── ProxyShapeDrawColors │ │ │ │ ├── baseline │ │ │ │ │ ├── colorMgt.png │ │ │ │ │ └── default.png │ │ │ │ └── stage.ma │ │ │ ├── ProxyShapeDrawLightingTest │ │ │ │ ├── PlaneModel.usda │ │ │ │ ├── ProxyShapeDrawLightingTest.ma │ │ │ │ ├── TorusModel.usda │ │ │ │ └── baseline │ │ │ │ │ ├── Directional_1.png │ │ │ │ │ ├── Directional_2.png │ │ │ │ │ ├── Directional_3.png │ │ │ │ │ ├── Directional_4.png │ │ │ │ │ ├── HydraShadows_Directional_1.png │ │ │ │ │ ├── HydraShadows_Directional_2.png │ │ │ │ │ ├── HydraShadows_Directional_3.png │ │ │ │ │ ├── HydraShadows_Directional_4.png │ │ │ │ │ ├── HydraShadows_Spot_1.png │ │ │ │ │ ├── HydraShadows_Spot_2.png │ │ │ │ │ ├── HydraShadows_Spot_3.png │ │ │ │ │ ├── HydraShadows_Spot_4.png │ │ │ │ │ ├── MayaNativeShadows_Directional_1.png │ │ │ │ │ ├── MayaNativeShadows_Directional_2.png │ │ │ │ │ ├── MayaNativeShadows_Directional_3.png │ │ │ │ │ ├── MayaNativeShadows_Directional_4.png │ │ │ │ │ ├── MayaNativeShadows_Spot_1.png │ │ │ │ │ ├── MayaNativeShadows_Spot_2.png │ │ │ │ │ ├── MayaNativeShadows_Spot_3.png │ │ │ │ │ ├── MayaNativeShadows_Spot_4.png │ │ │ │ │ ├── Spot_1.png │ │ │ │ │ ├── Spot_2.png │ │ │ │ │ ├── Spot_3.png │ │ │ │ │ └── Spot_4.png │ │ │ ├── ProxyShapeDrawPerformanceTest │ │ │ │ ├── CubeGridCombinedMesh_10.usd │ │ │ │ ├── CubeGridModelRefs_10.usd │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_10.ma │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_LegacyViewport_10.ma │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_10.ma │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_LegacyViewport_10.ma │ │ │ │ └── baseline │ │ │ │ │ ├── CubeGrid.png │ │ │ │ │ ├── testProxyShapeDrawPerformance_2018.update3.yaml │ │ │ │ │ ├── testProxyShapeDrawPerformance_2019.base.yaml │ │ │ │ │ ├── testProxyShapeDrawPerformance_LegacyViewport_2018.update3.yaml │ │ │ │ │ └── testProxyShapeDrawPerformance_LegacyViewport_2019.base.yaml │ │ │ ├── ProxyShapeDrawPurposeTest │ │ │ │ ├── ProxyShapeDrawPurposeTest.ma │ │ │ │ ├── PurposeCubes.usda │ │ │ │ └── baseline │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_allTogglesOff.png │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_allTogglesOn.png │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_guideToggleOn.png │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_proxyToggleOn.png │ │ │ │ │ └── ProxyShapeDrawPurposeTest_renderToggleOn.png │ │ │ ├── ProxyShapeDrawTimeSampledTest │ │ │ │ ├── CubeModel_TimeSampledPoints.usda │ │ │ │ ├── ProxyShapeDrawTimeSampledTest.ma │ │ │ │ └── baseline │ │ │ │ │ ├── ProxyShapeDrawTimeSampledTest_1.png │ │ │ │ │ ├── ProxyShapeDrawTimeSampledTest_3.png │ │ │ │ │ └── ProxyShapeDrawTimeSampledTest_5.png │ │ │ ├── ProxyShapeDrawUsdChangeProcessingTest │ │ │ │ ├── PrimitiveModel.usda │ │ │ │ ├── UsdChangeProcessingTest_Assembly.ma │ │ │ │ ├── UsdChangeProcessingTest_Proxy.ma │ │ │ │ └── baseline │ │ │ │ │ ├── Cube.png │ │ │ │ │ └── Sphere.png │ │ │ ├── ProxyShapeDrawVisibilityTest │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── ProxyShapeDrawVisibilityTest.ma │ │ │ │ └── baseline │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest_initial.png │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest_invis_layer_1.png │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest_invis_layer_2.png │ │ │ │ │ └── ProxyShapeDrawVisibilityTest_invis_layers_1_and_2.png │ │ │ ├── ProxyShapeLiveSurfaceTest │ │ │ │ ├── BlockModel.usda │ │ │ │ └── ProxyShapeLiveSurfaceTest.ma │ │ │ ├── ProxyShapeSelectionPerformanceTest │ │ │ │ ├── CubeGridCombinedMesh_10.usd │ │ │ │ ├── CubeGridModelRefs_10.usd │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_10.ma │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_LegacyViewport_10.ma │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_ProxyOnly_10.ma │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_10.ma │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_LegacyViewport_10.ma │ │ │ │ ├── PlaneModel.usda │ │ │ │ └── baseline │ │ │ │ │ ├── CubeGrid_select_center.png │ │ │ │ │ ├── CubeGrid_selection_append_1.png │ │ │ │ │ ├── CubeGrid_selection_append_2.png │ │ │ │ │ ├── CubeGrid_selection_append_3.png │ │ │ │ │ ├── CubeGrid_selection_append_4.png │ │ │ │ │ ├── CubeGrid_unselected.png │ │ │ │ │ ├── testProxyShapeSelectionPerformance_2018.update3.yaml │ │ │ │ │ ├── testProxyShapeSelectionPerformance_2019.base.yaml │ │ │ │ │ ├── testProxyShapeSelectionPerformance_LegacyViewport_2018.update3.yaml │ │ │ │ │ ├── testProxyShapeSelectionPerformance_LegacyViewport_2019.base.yaml │ │ │ │ │ ├── testProxyShapeSelectionPerformance_VP2WithLegacySelection_2018.update3.yaml │ │ │ │ │ └── testProxyShapeSelectionPerformance_VP2WithLegacySelection_2019.base.yaml │ │ │ ├── PxrUsdMayaGL │ │ │ │ ├── blank.usda │ │ │ │ ├── plane0.usda │ │ │ │ └── plane1.usda │ │ │ ├── RefAssemblyDrawRepresentationsTest │ │ │ │ ├── CubeModel.png │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── RefAssemblyDrawRepresentationsTest.ma │ │ │ │ └── baseline │ │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Cards.png │ │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Collapsed.png │ │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Expanded.png │ │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Full.png │ │ │ │ │ └── RefAssemblyDrawRepresentationsTest_Playback.png │ │ │ ├── testBatchRendererIsolateSelection.py │ │ │ ├── testBatchRendererReset.py │ │ │ ├── testBatchRendererReset_LegacyViewport.py │ │ │ ├── testProxyShapeDrawAndTransform.py │ │ │ ├── testProxyShapeDrawColorAccuracy.py │ │ │ ├── testProxyShapeDrawColors.py │ │ │ ├── testProxyShapeDrawLighting.py │ │ │ ├── testProxyShapeDrawPerformance.py │ │ │ ├── testProxyShapeDrawPerformance_LegacyViewport.py │ │ │ ├── testProxyShapeDrawPurpose.py │ │ │ ├── testProxyShapeDrawTimeSampled.py │ │ │ ├── testProxyShapeDrawUsdChangeProcessing.py │ │ │ ├── testProxyShapeDrawVisibility.py │ │ │ ├── testProxyShapeLiveSurface.py │ │ │ ├── testProxyShapeSelectionPerformance.py │ │ │ ├── testProxyShapeSelectionPerformance_LegacyViewport.py │ │ │ ├── testPxrUsdMayaGL.py │ │ │ ├── testPxrUsdMayaGLInstancerDraw.py │ │ │ └── testRefAssemblyDrawRepresentations.py │ │ ├── usdProxyShapeAdapter.cpp │ │ ├── usdProxyShapeAdapter.h │ │ ├── userData.cpp │ │ └── userData.h │ └── usdMaya │ │ ├── AEpxrUsdProxyShapeTemplate.mel │ │ ├── AEpxrUsdReferenceAssemblyTemplate.py │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── adaptor.cpp │ │ ├── adaptor.h │ │ ├── api.h │ │ ├── blockSceneModificationContext.cpp │ │ ├── blockSceneModificationContext.h │ │ ├── chaser.cpp │ │ ├── chaser.h │ │ ├── chaserRegistry.cpp │ │ ├── chaserRegistry.h │ │ ├── colorSpace.cpp │ │ ├── colorSpace.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── diagnosticDelegate.cpp │ │ ├── diagnosticDelegate.h │ │ ├── editUtil.cpp │ │ ├── editUtil.h │ │ ├── exportCommand.cpp │ │ ├── exportCommand.h │ │ ├── exportTranslator.cpp │ │ ├── exportTranslator.h │ │ ├── fallbackPrimReader.cpp │ │ ├── fallbackPrimReader.h │ │ ├── functorPrimReader.cpp │ │ ├── functorPrimReader.h │ │ ├── functorPrimWriter.cpp │ │ ├── functorPrimWriter.h │ │ ├── hdImagingShape.cpp │ │ ├── hdImagingShape.h │ │ ├── importCommand.cpp │ │ ├── importCommand.h │ │ ├── importTranslator.cpp │ │ ├── importTranslator.h │ │ ├── instancedNodeWriter.cpp │ │ ├── instancedNodeWriter.h │ │ ├── jobArgs.cpp │ │ ├── jobArgs.h │ │ ├── listShadingModesCommand.cpp │ │ ├── listShadingModesCommand.h │ │ ├── meshUtil.cpp │ │ ├── meshUtil.h │ │ ├── modelKindProcessor.cpp │ │ ├── modelKindProcessor.h │ │ ├── module.cpp │ │ ├── notice.cpp │ │ ├── notice.h │ │ ├── out_pxrUsdProxyShape.xpm │ │ ├── out_pxrUsdReferenceAssembly.xpm │ │ ├── overview.dox │ │ ├── pointBasedDeformerNode.cpp │ │ ├── pointBasedDeformerNode.h │ │ ├── primReader.cpp │ │ ├── primReader.h │ │ ├── primReaderArgs.cpp │ │ ├── primReaderArgs.h │ │ ├── primReaderContext.cpp │ │ ├── primReaderContext.h │ │ ├── primReaderRegistry.cpp │ │ ├── primReaderRegistry.h │ │ ├── primWriter.cpp │ │ ├── primWriter.h │ │ ├── primWriterArgs.cpp │ │ ├── primWriterArgs.h │ │ ├── primWriterContext.cpp │ │ ├── primWriterContext.h │ │ ├── primWriterRegistry.cpp │ │ ├── primWriterRegistry.h │ │ ├── proxyShape.cpp │ │ ├── proxyShape.h │ │ ├── query.cpp │ │ ├── query.h │ │ ├── readJob.cpp │ │ ├── readJob.h │ │ ├── readJob_ImportWithProxies.cpp │ │ ├── readUtil.cpp │ │ ├── readUtil.h │ │ ├── referenceAssembly.cpp │ │ ├── referenceAssembly.h │ │ ├── registryHelper.cpp │ │ ├── registryHelper.h │ │ ├── roundTripUtil.cpp │ │ ├── roundTripUtil.h │ │ ├── shaderWriter.cpp │ │ ├── shaderWriter.h │ │ ├── shadingModeDisplayColor.cpp │ │ ├── shadingModeExporter.cpp │ │ ├── shadingModeExporter.h │ │ ├── shadingModeExporterContext.cpp │ │ ├── shadingModeExporterContext.h │ │ ├── shadingModeImporter.cpp │ │ ├── shadingModeImporter.h │ │ ├── shadingModePxrRis.cpp │ │ ├── shadingModePxrRis_rfm_map.h │ │ ├── shadingModeRegistry.cpp │ │ ├── shadingModeRegistry.h │ │ ├── shadingModeUseRegistry.cpp │ │ ├── shadingUtil.cpp │ │ ├── shadingUtil.h │ │ ├── skelBindingsProcessor.cpp │ │ ├── skelBindingsProcessor.h │ │ ├── stageCache.cpp │ │ ├── stageCache.h │ │ ├── stageData.cpp │ │ ├── stageData.h │ │ ├── stageNode.cpp │ │ ├── stageNode.h │ │ ├── stageNoticeListener.cpp │ │ ├── stageNoticeListener.h │ │ ├── testenv │ │ ├── PointBasedDeformerNodeTest │ │ │ └── DeformingCube.usda │ │ ├── UsdExportAsClipTest │ │ │ └── UsdExportAsClipTest.ma │ │ ├── UsdExportAssemblyEditsTest │ │ │ ├── ShapesModel.usda │ │ │ ├── Shapes_set.usda │ │ │ └── UsdExportAssemblyEditsTest.ma │ │ ├── UsdExportAssemblyTest │ │ │ ├── AssemblyTest.ma │ │ │ ├── DummyModel.usda │ │ │ └── XformOpModel.usda │ │ ├── UsdExportCameraTest │ │ │ └── UsdExportCameraTest.ma │ │ ├── UsdExportColorSetsTest │ │ │ └── UsdExportColorSetsTest.ma │ │ ├── UsdExportConnectedTest │ │ │ └── visibility.ma │ │ ├── UsdExportDisplayColorTest │ │ │ └── UsdExportDisplayColorTest.ma │ │ ├── UsdExportEulerFilterTest │ │ │ └── UsdExportEulerFilterTest.ma │ │ ├── UsdExportFilterTypesTest │ │ │ └── UsdExportFilterTypesTest.ma │ │ ├── UsdExportFrameOffsetTest │ │ │ └── UsdExportFrameOffsetTest.ma │ │ ├── UsdExportInstancesTest │ │ │ └── UsdExportInstancesTest.ma │ │ ├── UsdExportLocatorTest │ │ │ ├── CubeUnderLocator.ma │ │ │ └── SingleLocator.ma │ │ ├── UsdExportMeshTest │ │ │ └── UsdExportMeshTest.ma │ │ ├── UsdExportNurbsCurveTest │ │ │ └── UsdExportNurbsCurveTest.ma │ │ ├── UsdExportOverImportTest │ │ │ └── CubeModel.usda │ │ ├── UsdExportPackage │ │ │ ├── BaseModel.usda │ │ │ ├── PackageTest.ma │ │ │ ├── ReferenceModel.usda │ │ │ └── card.png │ │ ├── UsdExportParentScopeTest │ │ │ └── UsdExportParentScopeTest.ma │ │ ├── UsdExportParticlesTest │ │ │ └── UsdExportParticlesTest.ma │ │ ├── UsdExportPointInstancerTest │ │ │ ├── Cone.usda │ │ │ ├── InstancerTest.ma │ │ │ └── InstancerTestMash.ma │ │ ├── UsdExportPrefTest │ │ │ └── UsdExportPrefTest.ma │ │ ├── UsdExportRenderLayerModeTest │ │ │ └── UsdExportRenderLayerModeTest.ma │ │ ├── UsdExportRfMLightTest │ │ │ └── RfMLightsTest.ma │ │ ├── UsdExportSelectionTest │ │ │ └── UsdExportSelectionTest.ma │ │ ├── UsdExportShadingInstancedTest │ │ │ ├── InstancedShading.ma │ │ │ └── NestedInstancedShading.ma │ │ ├── UsdExportShadingModeDisplayColor │ │ │ └── RedCube.ma │ │ ├── UsdExportShadingModePxrRis │ │ │ └── MarbleCube.ma │ │ ├── UsdExportSkeletonTest │ │ │ ├── UsdExportSkeleton.ma │ │ │ ├── UsdExportSkeletonAtSceneRoot.ma │ │ │ ├── UsdExportSkeletonWithoutBindPose.ma │ │ │ └── baseline │ │ │ │ └── UsdExportSkeletonWithoutBindPose.usda │ │ ├── UsdExportUVSetsFloatTest │ │ │ └── UsdExportUVSetsTest_Float.ma │ │ ├── UsdExportUVSetsTest │ │ │ └── UsdExportUVSetsTest.ma │ │ ├── UsdExportVisibilityDefaultTest │ │ │ └── UsdExportVisibilityDefaultTest.ma │ │ ├── UsdImportAsAssemblies │ │ │ ├── CubeModel.usda │ │ │ └── Cubes_set.usda │ │ ├── UsdImportCameraTest │ │ │ └── UsdImportCameraTest.usda │ │ ├── UsdImportColorSetsTest │ │ │ └── UsdImportColorSetsTest.usda │ │ ├── UsdImportFrameRangeTest │ │ │ └── MovingCube.usda │ │ ├── UsdImportMeshTest │ │ │ └── Mesh.usda │ │ ├── UsdImportNestedAssemblyAnimationTest │ │ │ ├── AnimatedCubeModel.usda │ │ │ ├── AnimationLayer.usda │ │ │ ├── CubeModel.usda │ │ │ └── Cube_set.usda │ │ ├── UsdImportRfMLightTest │ │ │ └── RfMLightsTest.usda │ │ ├── UsdImportSessionLayerTest │ │ │ └── Cubes.usda │ │ ├── UsdImportShadingModeDisplayColor │ │ │ └── RedCube.usda │ │ ├── UsdImportShadingModePxrRis │ │ │ └── MarbleCube.usda │ │ ├── UsdImportSkeleton │ │ │ └── skelCube.usda │ │ ├── UsdImportUVSetsFloatTest │ │ │ ├── UsdImportUVSetsTestWithCreases_Float.usda │ │ │ └── UsdImportUVSetsTest_Float.usda │ │ ├── UsdImportUVSetsTest │ │ │ ├── UsdImportUVSetsTest.usda │ │ │ └── UsdImportUVSetsTestWithCreases.usda │ │ ├── UsdImportXformsTest │ │ │ ├── UsdImportXformsTest.usda │ │ │ ├── UsdImportXformsTestRotateAxis.usda │ │ │ └── pivotTests.usda │ │ ├── UsdMayaAdaptorGeomTest │ │ │ └── UsdAttrs.usda │ │ ├── UsdMayaAdaptorMetadataTest │ │ │ └── UsdAttrs.usda │ │ ├── UsdMayaAppDirTest │ │ │ └── maya_profile │ │ │ │ └── scripts │ │ │ │ └── userSetup.py │ │ ├── UsdMayaGetVariantSetSelectionsTest │ │ │ └── CubeWithVariantsModel.usda │ │ ├── UsdMayaModelKindProcessorTest │ │ │ ├── KindTest.ma │ │ │ ├── KindTest.usd │ │ │ ├── KindTestAssembly.ma │ │ │ ├── KindTestAssemblyAndMesh.ma │ │ │ └── KindTestUsdKindAttr.ma │ │ ├── UsdMayaProxyShape │ │ │ ├── CubeModel.usda │ │ │ └── ProxyShape.ma │ │ ├── UsdMayaReferenceAssemblyEdits │ │ │ └── CubeModel.usda │ │ ├── UsdMayaUserExportedAttributesTest │ │ │ └── UserExportedAttributesTest.ma │ │ ├── UsdReferenceAssemblyChangeRepresentationsTest │ │ │ ├── ComplexSet.usda │ │ │ ├── CubeModel.usda │ │ │ ├── CubeModel_NoDefaultPrim.usda │ │ │ ├── OneCube_set.usda │ │ │ ├── SetWithModelingVariants_set.usda │ │ │ ├── ThreeCubes_set.usda │ │ │ └── TwoCubes_set.usda │ │ ├── UsdReferenceAssemblySelectionTest │ │ │ ├── CubeModel.usda │ │ │ └── UsdReferenceAssemblySelectionTest.ma │ │ ├── UsdTranslateTypelessDefs │ │ │ └── ExoticTypeNames.usda │ │ ├── testPointBasedDeformerNode.py │ │ ├── testUsdExportAsClip.py │ │ ├── testUsdExportAssembly.py │ │ ├── testUsdExportAssemblyEdits.py │ │ ├── testUsdExportCamera.py │ │ ├── testUsdExportColorSets.py │ │ ├── testUsdExportConnected.py │ │ ├── testUsdExportDisplayColor.py │ │ ├── testUsdExportEulerFilter.py │ │ ├── testUsdExportFilterTypes.py │ │ ├── testUsdExportFrameOffset.py │ │ ├── testUsdExportInstances.py │ │ ├── testUsdExportLocator.py │ │ ├── testUsdExportMesh.py │ │ ├── testUsdExportNurbsCurve.py │ │ ├── testUsdExportOpenLayer.py │ │ ├── testUsdExportOverImport.py │ │ ├── testUsdExportPackage.py │ │ ├── testUsdExportParentScope.py │ │ ├── testUsdExportParticles.py │ │ ├── testUsdExportPointInstancer.py │ │ ├── testUsdExportPref.py │ │ ├── testUsdExportRenderLayerMode.py │ │ ├── testUsdExportRfMLight.py │ │ ├── testUsdExportSelection.py │ │ ├── testUsdExportShadingInstanced.py │ │ ├── testUsdExportShadingModeDisplayColor.py │ │ ├── testUsdExportShadingModePxrRis.py │ │ ├── testUsdExportSkeleton.py │ │ ├── testUsdExportStripNamespaces.py │ │ ├── testUsdExportUVSets.py │ │ ├── testUsdExportVisibilityDefault.py │ │ ├── testUsdImportAsAssemblies.py │ │ ├── testUsdImportCamera.py │ │ ├── testUsdImportColorSets.py │ │ ├── testUsdImportFrameRange.py │ │ ├── testUsdImportMesh.py │ │ ├── testUsdImportNestedAssemblyAnimation.py │ │ ├── testUsdImportRfMLight.py │ │ ├── testUsdImportSessionLayer.py │ │ ├── testUsdImportShadingModeDisplayColor.py │ │ ├── testUsdImportShadingModePxrRis.py │ │ ├── testUsdImportSkeleton.py │ │ ├── testUsdImportUVSets.py │ │ ├── testUsdImportXforms.py │ │ ├── testUsdMayaAdaptor.py │ │ ├── testUsdMayaAdaptorGeom.py │ │ ├── testUsdMayaAdaptorMetadata.py │ │ ├── testUsdMayaAppDir.py │ │ ├── testUsdMayaBlockSceneModificationContext.py │ │ ├── testUsdMayaDiagnosticDelegate.py │ │ ├── testUsdMayaGetVariantSetSelections.py │ │ ├── testUsdMayaModelKindProcessor.py │ │ ├── testUsdMayaProxyShape.py │ │ ├── testUsdMayaReadWriteUtils.py │ │ ├── testUsdMayaReferenceAssemblyEdits.py │ │ ├── testUsdMayaUserExportedAttributes.py │ │ ├── testUsdMayaXformStack.py │ │ ├── testUsdReferenceAssemblyChangeRepresentations.py │ │ ├── testUsdReferenceAssemblySelection.py │ │ └── testUsdTranslateTypelessDefs.py │ │ ├── transformWriter.cpp │ │ ├── transformWriter.h │ │ ├── translatorCamera.cpp │ │ ├── translatorCamera.h │ │ ├── translatorCurves.cpp │ │ ├── translatorCurves.h │ │ ├── translatorGprim.cpp │ │ ├── translatorGprim.h │ │ ├── translatorMaterial.cpp │ │ ├── translatorMaterial.h │ │ ├── translatorMesh.cpp │ │ ├── translatorMesh.h │ │ ├── translatorMesh_PrimVars.cpp │ │ ├── translatorMesh_SubDiv.cpp │ │ ├── translatorModelAssembly.cpp │ │ ├── translatorModelAssembly.h │ │ ├── translatorNurbsPatch.cpp │ │ ├── translatorNurbsPatch.h │ │ ├── translatorPrim.cpp │ │ ├── translatorPrim.h │ │ ├── translatorRfMLight.cpp │ │ ├── translatorRfMLight.h │ │ ├── translatorSkel.cpp │ │ ├── translatorSkel.h │ │ ├── translatorUtil.cpp │ │ ├── translatorUtil.h │ │ ├── translatorXformable.cpp │ │ ├── translatorXformable.h │ │ ├── translatorXformable_decompose.cpp │ │ ├── undoHelperCommand.cpp │ │ ├── undoHelperCommand.h │ │ ├── usdMaya.mel │ │ ├── usdPrimProvider.cpp │ │ ├── usdPrimProvider.h │ │ ├── usdTranslatorExport.mel │ │ ├── usdTranslatorImport.mel │ │ ├── userExportedAttributesUI.py │ │ ├── userTaggedAttribute.cpp │ │ ├── userTaggedAttribute.h │ │ ├── util.cpp │ │ ├── util.h │ │ ├── wrapAdaptor.cpp │ │ ├── wrapAssembly.cpp │ │ ├── wrapBlockSceneModificationContext.cpp │ │ ├── wrapColorSpace.cpp │ │ ├── wrapDiagnosticDelegate.cpp │ │ ├── wrapEditUtil.cpp │ │ ├── wrapMeshUtil.cpp │ │ ├── wrapQuery.cpp │ │ ├── wrapReadUtil.cpp │ │ ├── wrapRoundTripUtil.cpp │ │ ├── wrapStageCache.cpp │ │ ├── wrapUserTaggedAttribute.cpp │ │ ├── wrapWriteUtil.cpp │ │ ├── wrapXformStack.cpp │ │ ├── writeJob.cpp │ │ ├── writeJob.h │ │ ├── writeJobContext.cpp │ │ ├── writeJobContext.h │ │ ├── writeUtil.cpp │ │ ├── writeUtil.h │ │ ├── xformStack.cpp │ │ └── xformStack.h └── plugin │ ├── CMakeLists.txt │ ├── pxrUsd │ ├── CMakeLists.txt │ ├── alembicChaser.cpp │ ├── api.h │ ├── overview.dox │ ├── plugInfo.json │ ├── plugin.cpp │ ├── testenv │ │ ├── AlembicChaser │ │ │ ├── AlembicChaser.ma │ │ │ └── AlembicChaserPrimvars.ma │ │ └── testPxrUsdAlembicChaser.py │ └── usdTranslator.cpp │ ├── pxrUsdPreviewSurface │ ├── AEpxrUsdPreviewSurfaceTemplate.mel │ ├── CMakeLists.txt │ ├── api.h │ ├── float4ToFloatW.jinja2.xml │ ├── float4ToFloatW.xml │ ├── float4ToFloatW_shaderCode.glsl │ ├── float4ToFloatX.jinja2.xml │ ├── float4ToFloatX.xml │ ├── float4ToFloatX_shaderCode.glsl │ ├── float4ToFloatY.jinja2.xml │ ├── float4ToFloatY.xml │ ├── float4ToFloatY_shaderCode.glsl │ ├── float4ToFloatZ.jinja2.xml │ ├── float4ToFloatZ.xml │ ├── float4ToFloatZ_shaderCode.glsl │ ├── lightingContributions.jinja2.xml │ ├── lightingContributions.xml │ ├── overview.dox │ ├── plugInfo.json │ ├── plugin.cpp │ ├── pxrUsdPreviewSurfaceGenFragments.py │ ├── testenv │ │ ├── PxrUsdPreviewSurfaceDrawTest │ │ │ ├── PxrUsdPreviewSurfaceDrawTest.ma │ │ │ └── baseline │ │ │ │ └── PxrUsdPreviewSurfaceDrawTest_value_ramps.png │ │ ├── PxrUsdPreviewSurfaceExportTest │ │ │ ├── Brazilian_rosewood_pxr128.png │ │ │ ├── Brazilian_rosewood_pxr128_bmp.png │ │ │ └── PxrUsdPreviewSurfaceExportTest.ma │ │ ├── testPxrUsdPreviewSurfaceDraw.py │ │ └── testPxrUsdPreviewSurfaceExport.py │ ├── usdPreviewSurface.cpp │ ├── usdPreviewSurface.h │ ├── usdPreviewSurface.xml │ ├── usdPreviewSurfaceCombiner.jinja2.xml │ ├── usdPreviewSurfaceCombiner.xml │ ├── usdPreviewSurfaceCombiner_shaderCode.glsl │ ├── usdPreviewSurfaceLighting.jinja2.xml │ ├── usdPreviewSurfaceLighting.xml │ ├── usdPreviewSurfaceShadingNodeOverride.cpp │ ├── usdPreviewSurfaceShadingNodeOverride.h │ ├── usdPreviewSurfaceWriter.cpp │ └── usdPreviewSurfaceWriter.h │ └── pxrUsdTranslators │ ├── CMakeLists.txt │ ├── api.h │ ├── cameraReader.cpp │ ├── cameraWriter.cpp │ ├── cameraWriter.h │ ├── fileTextureWriter.cpp │ ├── fileTextureWriter.h │ ├── instancerWriter.cpp │ ├── instancerWriter.h │ ├── jointWriter.cpp │ ├── jointWriter.h │ ├── lightReader.cpp │ ├── lightWriter.cpp │ ├── locatorWriter.cpp │ ├── locatorWriter.h │ ├── materialReader.cpp │ ├── meshReader.cpp │ ├── meshWriter.cpp │ ├── meshWriter.h │ ├── meshWriter_Primvars.cpp │ ├── meshWriter_Skin.cpp │ ├── meshWriter_Subdiv.cpp │ ├── nurbsCurveWriter.cpp │ ├── nurbsCurveWriter.h │ ├── nurbsCurvesReader.cpp │ ├── nurbsPatchReader.cpp │ ├── nurbsSurfaceWriter.cpp │ ├── nurbsSurfaceWriter.h │ ├── overview.dox │ ├── particleWriter.cpp │ ├── particleWriter.h │ ├── plugInfo.json │ ├── plugin.cpp │ ├── scopeReader.cpp │ ├── skelReader.cpp │ ├── testenv │ ├── ScopeTest │ │ └── Scopes.usda │ ├── testPxrUsdTranslators.py │ ├── testPxrUsdTranslatorsScope.py │ └── testPxrUsdTranslatorsUnloadReload.py │ └── xformReader.cpp └── renderman-22 ├── CMakeLists.txt ├── README.md ├── plugin ├── CMakeLists.txt ├── hdPrman │ ├── CMakeLists.txt │ ├── api.h │ ├── basisCurves.cpp │ ├── basisCurves.h │ ├── context.cpp │ ├── context.h │ ├── convertPreviewMaterial.cpp │ ├── convertPreviewMaterial.h │ ├── coordSys.cpp │ ├── coordSys.h │ ├── debugCodes.cpp │ ├── debugCodes.h │ ├── instancer.cpp │ ├── instancer.h │ ├── light.cpp │ ├── light.h │ ├── material.cpp │ ├── material.h │ ├── mesh.cpp │ ├── mesh.h │ ├── points.cpp │ ├── points.h │ ├── renderDelegate.cpp │ ├── renderDelegate.h │ ├── renderParam.h │ ├── renderPass.cpp │ ├── renderPass.h │ ├── rixStrings.cpp │ ├── rixStrings.h │ ├── testenv │ │ └── testHdPrman.cpp │ ├── volume.cpp │ └── volume.h ├── hdxPrman │ ├── CMakeLists.txt │ ├── context.cpp │ ├── context.h │ ├── framebuffer.cpp │ ├── framebuffer.h │ ├── overview.dox │ ├── plugInfo.json │ ├── renderBuffer.cpp │ ├── renderBuffer.h │ ├── renderDelegate.cpp │ ├── renderDelegate.h │ ├── renderParam.h │ ├── renderPass.cpp │ ├── renderPass.h │ ├── rendererPlugin.cpp │ └── rendererPlugin.h ├── rmanArgsParser │ ├── CMakeLists.txt │ ├── __init__.py │ ├── api.h │ ├── module.cpp │ ├── moduleDeps.cpp │ ├── pch.h │ ├── plugInfo.json │ ├── pugixml │ │ ├── pugiconfig.hpp │ │ ├── pugixml.cpp │ │ └── pugixml.hpp │ ├── rmanArgsParser.cpp │ ├── rmanArgsParser.h │ └── wrapRmanArgsParser.cpp ├── rmanDiscovery │ ├── CMakeLists.txt │ ├── plugInfo.json │ ├── rmanDiscovery.cpp │ └── rmanDiscovery.h ├── rmanOslParser │ ├── CMakeLists.txt │ ├── plugInfo.json │ ├── rmanOslParser.cpp │ └── rmanOslParser.h └── rtx_glfImage │ ├── CMakeLists.txt │ └── main.cpp └── shaders ├── CMakeLists.txt └── UsdPreviewSurfaceParameters.osl /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .p4* 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/README.md -------------------------------------------------------------------------------- /USD_CLA_Corporate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/USD_CLA_Corporate.pdf -------------------------------------------------------------------------------- /USD_CLA_Individual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/USD_CLA_Individual.pdf -------------------------------------------------------------------------------- /cmake/defaults/CXXHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/defaults/CXXHelpers.cmake -------------------------------------------------------------------------------- /cmake/defaults/Options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/defaults/Options.cmake -------------------------------------------------------------------------------- /cmake/defaults/Packages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/defaults/Packages.cmake -------------------------------------------------------------------------------- /cmake/defaults/Version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/defaults/Version.cmake -------------------------------------------------------------------------------- /cmake/macros/Private.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/macros/Private.cmake -------------------------------------------------------------------------------- /cmake/macros/Public.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/macros/Public.cmake -------------------------------------------------------------------------------- /cmake/macros/compilePython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/macros/compilePython.py -------------------------------------------------------------------------------- /cmake/macros/generateDocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/macros/generateDocs.py -------------------------------------------------------------------------------- /cmake/macros/shebang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/macros/shebang.py -------------------------------------------------------------------------------- /cmake/macros/testWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/macros/testWrapper.py -------------------------------------------------------------------------------- /cmake/modules/FindAlembic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindAlembic.cmake -------------------------------------------------------------------------------- /cmake/modules/FindEmbree.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindEmbree.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake/modules/FindHoudini.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindHoudini.cmake -------------------------------------------------------------------------------- /cmake/modules/FindJinja2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindJinja2.cmake -------------------------------------------------------------------------------- /cmake/modules/FindMaya.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindMaya.cmake -------------------------------------------------------------------------------- /cmake/modules/FindOSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindOSL.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPTex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindPTex.cmake -------------------------------------------------------------------------------- /cmake/modules/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/cmake/modules/FindTBB.cmake -------------------------------------------------------------------------------- /extras/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(usd) 2 | 3 | -------------------------------------------------------------------------------- /extras/usd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/extras/usd/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/base/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/base/lib/arch/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/align.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/api.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/buildMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/buildMode.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/daemon.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/daemon.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/debugger.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/defines.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/demangle.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/env.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/env.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/errno.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/errno.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/error.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/error.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/export.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/function.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/hash.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/hash.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/hints.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/inttypes.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/library.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/library.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/math.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/pragmas.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/regex.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/regex.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/symbols.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/symbols.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/threads.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/threads.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/timing.cpp -------------------------------------------------------------------------------- /pxr/base/lib/arch/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/timing.h -------------------------------------------------------------------------------- /pxr/base/lib/arch/vsnprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/arch/vsnprintf.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/__init__.py -------------------------------------------------------------------------------- /pxr/base/lib/gf/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/api.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/bbox3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/bbox3d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/bbox3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/bbox3d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/camera.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/camera.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/declare.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/frustum.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/frustum.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/gamma.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/gamma.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/gfGenCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/gfGenCode.py -------------------------------------------------------------------------------- /pxr/base/lib/gf/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/half.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/half.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/homogeneous.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/interval.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/interval.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/limits.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/line.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/line.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/line2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/line2d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/line2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/line2d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/lineSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/lineSeg.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/lineSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/lineSeg.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/lineSeg2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/lineSeg2d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/lineSeg2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/lineSeg2d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/math.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/math.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix2d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix2d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix2f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix2f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix3d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix3d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix3f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix3f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix4d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix4d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix4d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix4d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix4f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrix4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrix4f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/matrixData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/matrixData.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/module.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/overview.dox -------------------------------------------------------------------------------- /pxr/base/lib/gf/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/plane.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/plane.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/quatd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quatd.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/quatd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quatd.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quaternion.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/quatf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quatf.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/quatf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quatf.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/quath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quath.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/quath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/quath.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/range1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range1d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/range1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range1d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/range1f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range1f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/range1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range1f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/range2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range2d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/range2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range2d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/range2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range2f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/range2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range2f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/range3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range3d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/range3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range3d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/range3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range3f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/range3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/range3f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/ray.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/ray.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/rect2i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/rect2i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/rect2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/rect2i.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/rotation.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/rotation.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/size2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/size2.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/size2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/size2.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/size3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/size3.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/size3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/size3.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/traits.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/transform.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/transform.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2h.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2h.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec2i.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3h.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3h.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec3i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec3i.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4d.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4f.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4h.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4h.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/vec4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/vec4i.h -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapGamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapGamma.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapHalf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapHalf.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapLine.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapMath.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapPlane.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapQuatd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapQuatd.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapQuatf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapQuatf.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapQuath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapQuath.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapRay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapRay.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapSize2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapSize2.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapSize3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapSize3.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec2d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec2f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec2h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec2h.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec2i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec2i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec3d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec3f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec3h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec3h.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec3i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec3i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec4d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec4d.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec4f.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec4h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec4h.cpp -------------------------------------------------------------------------------- /pxr/base/lib/gf/wrapVec4i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/gf/wrapVec4i.cpp -------------------------------------------------------------------------------- /pxr/base/lib/js/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/api.h -------------------------------------------------------------------------------- /pxr/base/lib/js/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/converter.h -------------------------------------------------------------------------------- /pxr/base/lib/js/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/json.cpp -------------------------------------------------------------------------------- /pxr/base/lib/js/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/json.h -------------------------------------------------------------------------------- /pxr/base/lib/js/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/overview.dox -------------------------------------------------------------------------------- /pxr/base/lib/js/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/js/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/types.h -------------------------------------------------------------------------------- /pxr/base/lib/js/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/utils.cpp -------------------------------------------------------------------------------- /pxr/base/lib/js/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/utils.h -------------------------------------------------------------------------------- /pxr/base/lib/js/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/value.cpp -------------------------------------------------------------------------------- /pxr/base/lib/js/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/js/value.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/__init__.py -------------------------------------------------------------------------------- /pxr/base/lib/plug/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/api.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/info.cpp -------------------------------------------------------------------------------- /pxr/base/lib/plug/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/info.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/module.cpp -------------------------------------------------------------------------------- /pxr/base/lib/plug/notice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/notice.cpp -------------------------------------------------------------------------------- /pxr/base/lib/plug/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/notice.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/plugin.cpp -------------------------------------------------------------------------------- /pxr/base/lib/plug/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/plugin.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/registry.h -------------------------------------------------------------------------------- /pxr/base/lib/plug/testPlug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/plug/testPlug.py -------------------------------------------------------------------------------- /pxr/base/lib/plug/testenv/TestPlugDsoEmpty_plugInfo.json: -------------------------------------------------------------------------------- 1 | 2+2 2 | -------------------------------------------------------------------------------- /pxr/base/lib/plug/testenv/TestPlugModuleEmpty_plugInfo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pxr/base/lib/plug/testenv/TestPlugModuleUnloadable2_plugInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /pxr/base/lib/tf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/__init__.py -------------------------------------------------------------------------------- /pxr/base/lib/tf/anyWeakPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/anyWeakPtr.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/api.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/bitUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/bitUtils.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/bitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/bitUtils.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/callContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/callContext.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/cxxCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/cxxCast.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/debug.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/debug.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/debugCodes.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/debugNotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/debugNotice.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/declarePtrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/declarePtrs.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/diagnostic.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/dl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/dl.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/dl.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/enum.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/enum.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/envSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/envSetting.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/error.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/error.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/errorMark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/errorMark.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/errorMark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/errorMark.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/fileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/fileUtils.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/fileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/fileUtils.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/getenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/getenv.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/getenv.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/hash.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/hash.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/hashmap.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/hashset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/hashset.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/iterator.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/iterator.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/mallocTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/mallocTag.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/mallocTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/mallocTag.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/module.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/notice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/notice.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/notice.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/nullPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/nullPtr.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/nullPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/nullPtr.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/overview.dox -------------------------------------------------------------------------------- /pxr/base/lib/tf/pathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pathUtils.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pathUtils.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pxrLZ4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pxrLZ4/lz4.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyArg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyArg.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyArg.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyCall.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyCall.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyEnum.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyEnum.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyError.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyError.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyFunction.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyIdentity.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyLock.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyLock.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyModule.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyModule.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyOptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyOptional.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyOverride.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pySingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pySingleton.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyTracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyTracing.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyTracing.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyUtils.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/pyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/pyUtils.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/refBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/refBase.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/refBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/refBase.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/refCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/refCount.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/refCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/refCount.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/refPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/refPtr.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/refPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/refPtr.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/regTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/regTest.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/regTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/regTest.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/scoped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/scoped.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/scoped.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/setenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/setenv.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/setenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/setenv.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/singleton.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/singleton.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/span.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/stackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stackTrace.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/stacked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stacked.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/stacked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stacked.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/staticData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/staticData.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/status.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/status.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stl.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stl.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stopwatch.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stopwatch.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/stringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/stringUtils.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/testenv/baseline/TfEnvSetting/debugTfEnvSettingStderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pxr/base/lib/tf/tf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/tf.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/tf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/tf.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/token.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/token.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/traits.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/traits.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/type.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/type.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/typeInfoMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/typeInfoMap.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/typeNotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/typeNotice.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/type_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/type_Impl.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/warning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/warning.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/warning.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/weakBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/weakBase.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/weakBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/weakBase.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/weakPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/weakPtr.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/weakPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/weakPtr.h -------------------------------------------------------------------------------- /pxr/base/lib/tf/wrapDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/wrapDebug.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/wrapEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/wrapEnum.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/wrapError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/wrapError.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/wrapToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/wrapToken.cpp -------------------------------------------------------------------------------- /pxr/base/lib/tf/wrapType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/tf/wrapType.cpp -------------------------------------------------------------------------------- /pxr/base/lib/trace/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/api.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/category.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/event.cpp -------------------------------------------------------------------------------- /pxr/base/lib/trace/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/event.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/key.cpp -------------------------------------------------------------------------------- /pxr/base/lib/trace/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/key.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/module.cpp -------------------------------------------------------------------------------- /pxr/base/lib/trace/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/reporter.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/threads.h -------------------------------------------------------------------------------- /pxr/base/lib/trace/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/trace/trace.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/__init__.py -------------------------------------------------------------------------------- /pxr/base/lib/vt/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/api.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/array.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/array.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/dictionary.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/functions.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/functions.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/hash.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/hash.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/module.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/operators.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/overview.dox -------------------------------------------------------------------------------- /pxr/base/lib/vt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/pyOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/pyOperators.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/streamOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/streamOut.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/streamOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/streamOut.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/traits.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/typeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/typeHeaders.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/types.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/types.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/value.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/value.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/wrapArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/wrapArray.cpp -------------------------------------------------------------------------------- /pxr/base/lib/vt/wrapArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/wrapArray.h -------------------------------------------------------------------------------- /pxr/base/lib/vt/wrapValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/vt/wrapValue.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/__init__.py -------------------------------------------------------------------------------- /pxr/base/lib/work/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/api.h -------------------------------------------------------------------------------- /pxr/base/lib/work/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/filter.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/filter.h -------------------------------------------------------------------------------- /pxr/base/lib/work/loops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/loops.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/loops.h -------------------------------------------------------------------------------- /pxr/base/lib/work/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/module.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/pch.h -------------------------------------------------------------------------------- /pxr/base/lib/work/reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/reduce.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/reduce.h -------------------------------------------------------------------------------- /pxr/base/lib/work/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/sort.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/sort.h -------------------------------------------------------------------------------- /pxr/base/lib/work/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/utils.cpp -------------------------------------------------------------------------------- /pxr/base/lib/work/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/base/lib/work/utils.h -------------------------------------------------------------------------------- /pxr/imaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/imaging/lib/garch/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/garch/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/garch/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/garch/gl.h -------------------------------------------------------------------------------- /pxr/imaging/lib/garch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/garch/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/glew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/glew.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/glew.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/image.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/image.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/info.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/info.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/package.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/texture.h -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/utils.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/glf/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/glf/utils.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/aov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/aov.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/aov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/aov.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/binding.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/bprim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/bprim.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/bprim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/bprim.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/camera.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/camera.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/coordSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/coordSys.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/drawItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/drawItem.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/engine.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/engine.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/enums.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/enums.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/field.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/field.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/light.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/light.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/material.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/mesh.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/mesh.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/meshUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/meshUtil.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/perfLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/perfLog.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/points.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/points.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/repr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/repr.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/repr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/repr.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/resource.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/rprim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/rprim.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/rprim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/rprim.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/sprim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/sprim.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/sprim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/sprim.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/task.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/task.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/texture.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/tokens.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/tokens.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/topology.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/types.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/types.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/version.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/volume.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hd/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hd/volume.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/light.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/mesh.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/mesh.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/points.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdSt/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdSt/tokens.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/package.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/tokens.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/types.cpp -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/types.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hdx/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hdx/version.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hf/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hf/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hf/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hf/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hf/perfLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hf/perfLog.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hio/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hio/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hio/glslfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hio/glslfx.h -------------------------------------------------------------------------------- /pxr/imaging/lib/hio/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/hio/pch.h -------------------------------------------------------------------------------- /pxr/imaging/lib/pxOsd/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/pxOsd/api.h -------------------------------------------------------------------------------- /pxr/imaging/lib/pxOsd/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/imaging/lib/pxOsd/pch.h -------------------------------------------------------------------------------- /pxr/pxr.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/pxr.h.in -------------------------------------------------------------------------------- /pxr/pxrConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/pxrConfig.cmake.in -------------------------------------------------------------------------------- /pxr/usd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/usd/bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/bin/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/usd/bin/usdcat/testenv/testMissingOrInvalidFiles/hello.txt: -------------------------------------------------------------------------------- 1 | I am not a usd file, get outta here. 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdcat/usdcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/bin/usdcat/usdcat.py -------------------------------------------------------------------------------- /pxr/usd/bin/usdchecker/testenv/testUsdChecker/bad/mat_bad.bad: -------------------------------------------------------------------------------- 1 | texture file wit bad extension. 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdchecker/testenv/testUsdChecker/bad/mat_bmp.bmp: -------------------------------------------------------------------------------- 1 | not really a bmp file. 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdchecker/testenv/testUsdChecker/bad/refs/texture.jpg: -------------------------------------------------------------------------------- 1 | not really a jpg 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdchecker/testenv/testUsdChecker/clean/mat_jpg.jpg: -------------------------------------------------------------------------------- 1 | not really a jpg file. 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdchecker/testenv/testUsdChecker/clean/mat_png.png: -------------------------------------------------------------------------------- 1 | not really a png file! 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usddiff/testenv/testDiffToolVariousUsdFormats/a.txt: -------------------------------------------------------------------------------- 1 | This should not work 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usddiff/testenv/testDiffToolVariousUsdFormats/a.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | def "Sphere" { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /pxr/usd/bin/usddiff/testenv/testDiffWithVersionSpecifiers/a.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | def "main" { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdedit/testenv/testUsdEditRespectFileFormat/baseline/ascii_output.txt: -------------------------------------------------------------------------------- 1 | #usda 1.0 -------------------------------------------------------------------------------- /pxr/usd/bin/usdedit/testenv/testUsdEditRespectFileFormat/baseline/crate_output.txt: -------------------------------------------------------------------------------- 1 | PXR-USDC -------------------------------------------------------------------------------- /pxr/usd/bin/usdresolve/testenv/testResolveRelPath/baseline/output.txt: -------------------------------------------------------------------------------- 1 | input.usda 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/attr_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/attr_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/attr_c.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/base_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/clip.011.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/clip.1.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/clip.10.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/clip1.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/clip2.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/meta_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/meta_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/meta_c.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/sub_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/v_attr_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/v_attr_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/v_attr_c.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/v_meta_a.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/v_meta_b.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipAsset/v_ref_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/testenv/testUsdZipInputFiles/baseline/flat.txt: -------------------------------------------------------------------------------- 1 | src/a.txt 2 | src/b.png 3 | -------------------------------------------------------------------------------- /pxr/usd/bin/usdzip/usdzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/bin/usdzip/usdzip.py -------------------------------------------------------------------------------- /pxr/usd/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/usd/lib/ar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/usd/lib/ar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/ar/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/ar/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/asset.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ar/asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/asset.h -------------------------------------------------------------------------------- /pxr/usd/lib/ar/assetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/assetInfo.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ar/assetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/assetInfo.h -------------------------------------------------------------------------------- /pxr/usd/lib/ar/debugCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/debugCodes.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ar/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/debugCodes.h -------------------------------------------------------------------------------- /pxr/usd/lib/ar/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ar/moduleDeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/moduleDeps.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ar/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/overview.dox -------------------------------------------------------------------------------- /pxr/usd/lib/ar/packageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/packageUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/ar/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/ar/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/plugInfo.json -------------------------------------------------------------------------------- /pxr/usd/lib/ar/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/resolver.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ar/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ar/resolver.h -------------------------------------------------------------------------------- /pxr/usd/lib/kind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/kind/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/kind/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/kind/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/overview.dox -------------------------------------------------------------------------------- /pxr/usd/lib/kind/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/kind/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/registry.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/kind/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/kind/registry.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/debugCodes.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/declare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/declare.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/declare.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/node.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/node.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/overview.dox -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/plugInfo.json -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/property.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/property.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/registry.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/registry.h -------------------------------------------------------------------------------- /pxr/usd/lib/ndr/wrapNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/ndr/wrapNode.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/arc.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/arc.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/cache.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/cache.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/changes.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/changes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/changes.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/composeSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/composeSite.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/debugCodes.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/dependency.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/diagnostic.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/errors.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/errors.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/instanceKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/instanceKey.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/instancing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/instancing.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/iterator.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/iterator.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/layerStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/layerStack.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/mapFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/mapFunction.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/node.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/node.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/overview.dox -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/primIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/primIndex.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/primIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/primIndex.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/pyUtils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/pyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/pyUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/site.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/site.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/site.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/site.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/statistics.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/targetIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/targetIndex.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/testenv/testPcpInstanceKey.testenv/prop_ref.sdf: -------------------------------------------------------------------------------- 1 | #sdf 1.4.32 2 | 3 | def "Prop" 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/testenv/testPcpLayerMuting.testenv/refs/ref.sdf: -------------------------------------------------------------------------------- 1 | #sdf 1.4.32 2 | 3 | def "Ref" 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/testenv/testPcpMuseum_ErrorInvalidPayload.testenv/ErrorInvalidPayload/payload.sdf: -------------------------------------------------------------------------------- 1 | #sdf 1.4.32 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/testenv/testPcpRegressionBugs_bug82180.testenv/bug82180/empty.sdf: -------------------------------------------------------------------------------- 1 | #sdf 1.4.32 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/types.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/types.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/utils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/utils.h -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/wrapCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/wrapCache.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/wrapNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/wrapNode.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/wrapSite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/wrapSite.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/pcp/wrapTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/pcp/wrapTypes.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/allowed.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/allowed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/allowed.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/assetPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/assetPath.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/assetPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/assetPath.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/changeBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/changeBlock.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/changeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/changeList.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/children.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/children.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/children.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/children.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/copyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/copyUtils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/copyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/copyUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/data.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/data.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/debugCodes.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/declareSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/declareSpec.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/fileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/fileFormat.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/fileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/fileIO.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/fileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/fileIO.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/identity.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/identity.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/layer.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/layer.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/layerOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/layerOffset.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/layerTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/layerTree.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/layerTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/layerTree.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/layerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/layerUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/listEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/listEditor.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/listOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/listOp.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/listOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/listOp.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/listProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/listProxy.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/listProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/listProxy.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/mapEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/mapEditor.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/mapEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/mapEditor.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/notice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/notice.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/notice.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/overview.dox -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.lex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.lex.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.ll -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.tab.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.tab.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/path.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/path.yy -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pathNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pathNode.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pathNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pathNode.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pathParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pathParser.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pathTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pathTable.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pathTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pathTable.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/payload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/payload.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/payload.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/plugInfo.json -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pool.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pool.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/primSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/primSpec.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/primSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/primSpec.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/proxyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/proxyTypes.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pyListOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pyListOp.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pyListOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pyListOp.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pyListProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pyListProxy.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pySpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pySpec.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pySpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pySpec.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pyUtils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/pyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/pyUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/reference.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/reference.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/schema.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/schema.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/site.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/site.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/site.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/site.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/siteUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/siteUtils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/siteUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/siteUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/spec.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/spec.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/specType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/specType.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/specType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/specType.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/testenv/testSdfLayerMuting.testenv/a.sdf: -------------------------------------------------------------------------------- 1 | #sdf 1.4.32 2 | def "Test" 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/testenv/testSdfLayerMuting.testenv/b.sdf: -------------------------------------------------------------------------------- 1 | #sdf 1.4.32 2 | def "Test" 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/testenv/testSdfParsing.testenv/200_bad_emptyFile.sdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/testenv/testSdfParsingOld.testenv/200_bad_emptyFile.sdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/tokens.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/types.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/types.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/variantSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/variantSpec.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/wrapLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/wrapLayer.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/wrapPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/wrapPath.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/wrapSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/wrapSpec.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdf/wrapTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdf/wrapTypes.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/declare.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/overview.dox -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/registry.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/registry.h -------------------------------------------------------------------------------- /pxr/usd/lib/sdr/shaderNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/sdr/shaderNode.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/Doxyfile.in -------------------------------------------------------------------------------- /pxr/usd/lib/usd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/usd/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/attribute.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/attribute.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/clip.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/clip.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/clipCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/clipCache.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/clipCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/clipCache.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/clipsAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/clipsAPI.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/clipsAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/clipsAPI.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/common.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/common.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/crateData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/crateData.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/crateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/crateData.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/crateFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/crateFile.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/crateFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/crateFile.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/crateInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/crateInfo.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/crateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/crateInfo.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/debugCodes.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/editContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/editContext.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/editTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/editTarget.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/examples.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/inherits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/inherits.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/inherits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/inherits.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/instanceKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/instanceKey.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/modelAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/modelAPI.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/modelAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/modelAPI.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/notice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/notice.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/notice.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/object.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/object.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/payloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/payloads.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/payloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/payloads.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/plugInfo.json -------------------------------------------------------------------------------- /pxr/usd/lib/usd/prim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/prim.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/prim.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/primData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/primData.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/primData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/primData.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/primFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/primFlags.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/primFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/primFlags.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/primRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/primRange.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/primRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/primRange.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/property.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/property.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/references.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/resolveInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/resolveInfo.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/resolver.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/resolver.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/schema.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/schema.usda -------------------------------------------------------------------------------- /pxr/usd/lib/usd/schemaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/schemaBase.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/shared.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/shared.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/specializes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/specializes.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/stage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/stage.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/stage.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/stageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/stageCache.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/testenv/testUsdMetadata/assetPaths/asset.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usd/timeCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/timeCode.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/timeCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/timeCode.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/tokens.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/typed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/typed.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/typed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/typed.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/usd_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/usd_style.css -------------------------------------------------------------------------------- /pxr/usd/lib/usd/valueUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/valueUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/variantSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/variantSets.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/wrapPrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/wrapPrim.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/wrapStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/wrapStage.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/wrapTyped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/wrapTyped.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/wrapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/wrapUtils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/wrapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/wrapUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/usd/zipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/zipFile.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usd/zipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usd/zipFile.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/camera.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/capsule.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/cone.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/cone.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/cube.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/cube.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/curves.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/gprim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/gprim.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/gprim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/gprim.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/mesh.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/mesh.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/metrics.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/points.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/primvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/primvar.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/scope.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/scope.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/sphere.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/subset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/subset.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/xform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/xform.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/xform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/xform.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdGeom/xformOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdGeom/xformOp.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdHydra/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdHydra/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdHydra/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdHydra/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdHydra/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdHydra/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/light.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/light.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/listAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/listAPI.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/tokens.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdLux/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdLux/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/lightAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/lightAPI.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/risBxdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/risBxdf.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/risBxdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/risBxdf.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/risObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/risObject.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/rslShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/rslShader.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/schema.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/schema.usda -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/splineAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/splineAPI.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/tokens.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdRi/typeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdRi/typeUtils.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/input.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/output.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/shader.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdShade/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdShade/utils.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/binding.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/cache.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/cache.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/root.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/root.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/utils.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdSkel/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdSkel/utils.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/__init__.py -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/backdrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/backdrop.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/schema.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/schema.usda -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/tokens.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdUI/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUI/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUtils/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUtils/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/stitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdUtils/stitch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/attr_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/attr_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/attr_c.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/base_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/clip.011.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/clip.1.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/clip.10.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/clip1.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/clip2.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/meta_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/meta_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/meta_c.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/sub_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/v_attr_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/v_attr_b.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/v_attr_c.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/v_meta_a.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/v_meta_b.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsCreateNewUsdzPackage/v_ref_a.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsDependencyExtractor/clip.010.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsDependencyExtractor/clip.1.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdUtils/testenv/testUsdUtilsDependencyExtractor/clip.11.usd: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/api.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/module.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/pch.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/tokens.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/tokens.h -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/volume.cpp -------------------------------------------------------------------------------- /pxr/usd/lib/usdVol/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/lib/usdVol/volume.h -------------------------------------------------------------------------------- /pxr/usd/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/usd/plugin/sdrOsl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/sdrOsl/api.h -------------------------------------------------------------------------------- /pxr/usd/plugin/sdrOsl/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/sdrOsl/pch.h -------------------------------------------------------------------------------- /pxr/usd/plugin/usdAbc/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/usdAbc/api.h -------------------------------------------------------------------------------- /pxr/usd/plugin/usdAbc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/usdAbc/pch.h -------------------------------------------------------------------------------- /pxr/usd/plugin/usdMtlx/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/usdMtlx/api.h -------------------------------------------------------------------------------- /pxr/usd/plugin/usdMtlx/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usd/plugin/usdMtlx/pch.h -------------------------------------------------------------------------------- /pxr/usdImaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/pxr/usdImaging/CMakeLists.txt -------------------------------------------------------------------------------- /pxr/usdImaging/bin/testusdview/testenv/testUsdviewFileArguments/test.py: -------------------------------------------------------------------------------- 1 | print "hello I am a python file" 2 | -------------------------------------------------------------------------------- /pxr/usdImaging/bin/testusdview/testenv/testUsdviewFileArguments/test.txt: -------------------------------------------------------------------------------- 1 | Hello I am a text file 2 | -------------------------------------------------------------------------------- /pxr/usdImaging/bin/testusdview/testenv/testUsdviewNoPlugins/test.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | def "f" { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /pxr/usdImaging/bin/testusdview/testenv/testUsdviewWrapper/baseline/valid_output: -------------------------------------------------------------------------------- 1 | callback 2 | -------------------------------------------------------------------------------- /pxr/usdImaging/lib/usdviewq/testenv/test.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | -------------------------------------------------------------------------------- /third_party/houdini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/third_party/houdini/README.md -------------------------------------------------------------------------------- /third_party/houdini/lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(gusd) 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/houdini/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(OP_gusd) 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/houdini/plugin/OP_gusd/OPcustomize_gusd: -------------------------------------------------------------------------------- 1 | opdefaultshape Sop pixar::usdrop clipped_left -------------------------------------------------------------------------------- /third_party/katana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/third_party/katana/README.md -------------------------------------------------------------------------------- /third_party/katana/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(nodetypes) 2 | -------------------------------------------------------------------------------- /third_party/katana/python/nodetypes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | pxr_katana_nodetypes( 2 | PxrUsdIn 3 | ) 4 | 5 | -------------------------------------------------------------------------------- /third_party/maya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/USD/HEAD/third_party/maya/README.md -------------------------------------------------------------------------------- /third_party/maya/lib/pxrUsdMayaGL/testenv/PxrUsdMayaGL/blank.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | --------------------------------------------------------------------------------