├── .clang-format ├── .clang-format-ignore ├── .clang-format-include ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build-issue-report.md │ └── feature_request.md ├── run-clang-format.py └── workflows │ ├── maya-hydra-new-issues.yml │ └── maya-hydra-preflight-launcher.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── README.md ├── README_DOC.md ├── SECURITY.md ├── build.py ├── cmake ├── compiler_config.cmake ├── flowViewport_version.info ├── googletest.cmake ├── googletest_download.txt.in ├── googletest_src.txt.in ├── gulrak.cmake ├── mayahydra_version.info ├── modules │ ├── FindMaya.cmake │ ├── FindMayaUsd.cmake │ ├── FindUFE.cmake │ └── FindUSD.cmake ├── python.cmake ├── test.cmake ├── usd.cmake └── utils.cmake ├── doc ├── CHANGELOG.md ├── CLA │ ├── Hydra for Maya - Corp Contrib Agmt.pdf │ └── Hydra for Maya - Ind Contrib Agmt.pdf ├── CONTRIBUTING.md ├── LICENSE.md ├── build.md ├── codeCoverageInstructions.md ├── codingGuidelines.md ├── flowViewportToolkit.md ├── hydraSelectionDataSource.png ├── hydraSelectionHighlighting.png ├── hydraSelectionReprDisplayStyle.png ├── images │ ├── al.png │ ├── fvpMergingSceneIndex.png │ ├── instanceSelectionHighlight.png │ ├── instanceTranslations.png │ ├── instancedBy.png │ ├── instancerTopology.png │ ├── linux.png │ ├── mac.png │ ├── pointInstancerSelectionHighlight.png │ ├── prototypeSelectionHighlight.png │ ├── pxr.png │ └── windows.png ├── mayaHydraCommands.md ├── mayaHydraDetails.md ├── rebuildingWithCustomOpenUSDAndPreviousMayaVersion.md └── selectionHighlightingArchitecture.md ├── lib ├── CMakeLists.txt ├── adskHydraSceneBrowser │ ├── CMakeLists.txt │ ├── lib │ │ ├── CMakeLists.txt │ │ └── adskHydraSceneBrowserApi.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── adskHydraSceneBrowserTestApi.h │ │ ├── adskHydraSceneBrowserTestFixture.cpp │ │ ├── adskHydraSceneBrowserTestFixture.h │ │ ├── adskHydraSceneBrowserTesting.cpp │ │ └── adskHydraSceneBrowserTesting.h ├── flowViewport │ ├── API │ │ ├── CMakeLists.txt │ │ ├── doxygenConfig │ │ ├── fvpDataProducerSceneIndexInterface.h │ │ ├── fvpFilteringSceneIndexClient.h │ │ ├── fvpFilteringSceneIndexClientFwd.h │ │ ├── fvpFilteringSceneIndexInterface.h │ │ ├── fvpInformationClient.h │ │ ├── fvpInformationInterface.h │ │ ├── fvpSelectionClient.h │ │ ├── fvpSelectionInterface.h │ │ ├── fvpVersionInterface.h │ │ ├── fvpViewportAPITokens.h │ │ ├── interfacesImp │ │ │ ├── CMakeLists.txt │ │ │ ├── fvpDataProducerSceneIndexInterfaceImp.cpp │ │ │ ├── fvpDataProducerSceneIndexInterfaceImp.h │ │ │ ├── fvpFilteringSceneIndexInterfaceImp.cpp │ │ │ ├── fvpFilteringSceneIndexInterfaceImp.h │ │ │ ├── fvpInformationInterfaceImp.cpp │ │ │ ├── fvpInformationInterfaceImp.h │ │ │ ├── fvpSelectionInterfaceImp.cpp │ │ │ ├── fvpSelectionInterfaceImp.h │ │ │ ├── fvpVersionInterfaceImp.cpp │ │ │ └── fvpVersionInterfaceImp.h │ │ ├── perViewportSceneIndicesData │ │ │ ├── CMakeLists.txt │ │ │ ├── fvpDataProducerSceneIndexDataAbstractFactory.h │ │ │ ├── fvpDataProducerSceneIndexDataBase.cpp │ │ │ ├── fvpDataProducerSceneIndexDataBase.h │ │ │ ├── fvpFilteringSceneIndexDataAbstractFactory.h │ │ │ ├── fvpFilteringSceneIndexDataBase.cpp │ │ │ ├── fvpFilteringSceneIndexDataBase.h │ │ │ ├── fvpFilteringSceneIndicesChainManager.cpp │ │ │ ├── fvpFilteringSceneIndicesChainManager.h │ │ │ ├── fvpViewportAPITokens.cpp │ │ │ ├── fvpViewportInformationAndSceneIndicesPerViewportData.cpp │ │ │ ├── fvpViewportInformationAndSceneIndicesPerViewportData.h │ │ │ ├── fvpViewportInformationAndSceneIndicesPerViewportDataManager.cpp │ │ │ └── fvpViewportInformationAndSceneIndicesPerViewportDataManager.h │ │ └── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── fvpDataProducerSceneIndexExample.cpp │ │ │ ├── fvpDataProducerSceneIndexExample.h │ │ │ ├── fvpFilteringSceneIndexClientExample.cpp │ │ │ ├── fvpFilteringSceneIndexClientExample.h │ │ │ ├── fvpFilteringSceneIndexExample.cpp │ │ │ ├── fvpFilteringSceneIndexExample.h │ │ │ ├── fvpInformationClientExample.cpp │ │ │ ├── fvpInformationClientExample.h │ │ │ ├── fvpSelectionClientExample.cpp │ │ │ └── fvpSelectionClientExample.h │ ├── CMakeLists.txt │ ├── api.h │ ├── colorPreferences │ │ ├── CMakeLists.txt │ │ ├── fvpColorChanged.cpp │ │ ├── fvpColorChanged.h │ │ ├── fvpColorPreferences.cpp │ │ ├── fvpColorPreferences.h │ │ ├── fvpColorPreferencesTokens.cpp │ │ ├── fvpColorPreferencesTokens.h │ │ └── fvpColorPreferencesTranslator.h │ ├── debugCodes.cpp │ ├── debugCodes.h │ ├── flowViewport.h.src │ ├── fvpInstruments.cpp │ ├── fvpInstruments.h │ ├── fvpPrimUtils.cpp │ ├── fvpPrimUtils.h │ ├── fvpUtils.cpp │ ├── fvpUtils.h │ ├── fvpWireframeColorInterface.h │ ├── global.cpp │ ├── global.h │ ├── imageWriter │ │ ├── CMakeLists.txt │ │ ├── fvpImageBufferWriter.cpp │ │ ├── fvpImageBufferWriter.h │ │ ├── fvpImageBufferWriterFactory.cpp │ │ ├── fvpRenderBufferWriter.cpp │ │ ├── fvpRenderBufferWriter.h │ │ ├── fvpTextureBufferWriter.cpp │ │ └── fvpTextureBufferWriter.h │ ├── sceneIndex │ │ ├── CMakeLists.txt │ │ ├── fvpBBoxSceneIndex.cpp │ │ ├── fvpBBoxSceneIndex.h │ │ ├── fvpBlockPrimRemovalPropagationSceneIndex.cpp │ │ ├── fvpBlockPrimRemovalPropagationSceneIndex.h │ │ ├── fvpDefaultMaterialSceneIndex.cpp │ │ ├── fvpDefaultMaterialSceneIndex.h │ │ ├── fvpDisplayStyleOverrideSceneIndex.cpp │ │ ├── fvpDisplayStyleOverrideSceneIndex.h │ │ ├── fvpIsolateSelectSceneIndex.cpp │ │ ├── fvpIsolateSelectSceneIndex.h │ │ ├── fvpLightsManagementSceneIndex.cpp │ │ ├── fvpLightsManagementSceneIndex.h │ │ ├── fvpPruneTexturesSceneIndex.cpp │ │ ├── fvpPruneTexturesSceneIndex.h │ │ ├── fvpPruningSceneIndex.cpp │ │ ├── fvpPruningSceneIndex.h │ │ ├── fvpRenderIndexProxy.cpp │ │ ├── fvpRenderIndexProxy.h │ │ ├── fvpRenderIndexProxyFwd.h │ │ ├── fvpReprSelectorSceneIndex.cpp │ │ ├── fvpReprSelectorSceneIndex.h │ │ ├── fvpSceneIndexUtils.cpp │ │ ├── fvpSceneIndexUtils.h │ │ ├── fvpSelectionSceneIndex.cpp │ │ ├── fvpSelectionSceneIndex.h │ │ └── wireframeHighlights │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── fvpBaseWhSi.cpp │ │ │ ├── fvpBaseWhSi.h │ │ │ ├── fvpGeomSubsetWhSi.cpp │ │ │ ├── fvpGeomSubsetWhSi.h │ │ │ ├── fvpMeshWhSi.cpp │ │ │ ├── fvpMeshWhSi.h │ │ │ ├── fvpNiInstanceWhSi.cpp │ │ │ ├── fvpNiInstanceWhSi.h │ │ │ ├── fvpNiPrototypeWhSi.cpp │ │ │ ├── fvpNiPrototypeWhSi.h │ │ │ ├── fvpPiInstancerWhSi.cpp │ │ │ ├── fvpPiInstancerWhSi.h │ │ │ ├── fvpPiPrototypeWhSi.cpp │ │ │ └── fvpPiPrototypeWhSi.h │ ├── selection │ │ ├── CMakeLists.txt │ │ ├── fvpDataProducersNodeHashCodeToSdfPathRegistry.cpp │ │ ├── fvpDataProducersNodeHashCodeToSdfPathRegistry.h │ │ ├── fvpPathMapper.cpp │ │ ├── fvpPathMapper.h │ │ ├── fvpPathMapperFwd.cpp │ │ ├── fvpPathMapperFwd.h │ │ ├── fvpPathMapperRegistry.cpp │ │ ├── fvpPathMapperRegistry.h │ │ ├── fvpPrefixPathMapper.cpp │ │ ├── fvpPrefixPathMapper.h │ │ ├── fvpSelection.cpp │ │ ├── fvpSelection.h │ │ ├── fvpSelectionFwd.cpp │ │ ├── fvpSelectionFwd.h │ │ ├── fvpSelectionTask.cpp │ │ ├── fvpSelectionTask.h │ │ ├── fvpSelectionTracker.cpp │ │ ├── fvpSelectionTracker.h │ │ ├── fvpSelectionTypes.cpp │ │ └── fvpSelectionTypes.h │ ├── tokens.cpp │ ├── tokens.h │ └── usdPlugins │ │ ├── CMakeLists.txt │ │ └── shadersDiscoveryPlugin │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── fvpShadersDiscoveryPlugin.cpp │ │ ├── fvpShadersDiscoveryPlugin.h │ │ ├── plugInfo_Linux.json │ │ ├── plugInfo_OSX.json │ │ ├── plugInfo_Win.json │ │ └── shaders │ │ ├── CMakeLists.txt │ │ ├── customBasicLightingShader.glslfx │ │ └── shaderDefs.usda └── mayaHydra │ ├── CMakeLists.txt │ ├── flowViewportAPIExamples │ ├── CMakeLists.txt │ ├── customShadersNode │ │ ├── CMakeLists.txt │ │ ├── README │ │ └── mhCustomShadersNode.cpp │ ├── flowViewportAPILocator │ │ ├── CMakeLists.txt │ │ ├── README │ │ └── mhFlowViewportAPILocator.cpp │ └── footPrintNode │ │ ├── CMakeLists.txt │ │ ├── README │ │ └── mhFootPrintNode.cpp │ ├── hydraExtensions │ ├── CMakeLists.txt │ ├── adapters │ │ ├── CMakeLists.txt │ │ ├── adapter.cpp │ │ ├── adapter.h │ │ ├── adapterDebugCodes.cpp │ │ ├── adapterDebugCodes.h │ │ ├── adapterRegistry.cpp │ │ ├── adapterRegistry.h │ │ ├── aiAreaLightAdapter.cpp │ │ ├── aiSkydomeLightAdapter.cpp │ │ ├── areaLightAdapter.cpp │ │ ├── cameraAdapter.cpp │ │ ├── cameraAdapter.h │ │ ├── constantShadowMatrix.h │ │ ├── dagAdapter.cpp │ │ ├── dagAdapter.h │ │ ├── directionalLightAdapter.cpp │ │ ├── lightAdapter.cpp │ │ ├── lightAdapter.h │ │ ├── materialAdapter.cpp │ │ ├── materialAdapter.h │ │ ├── materialNetworkConverter.cpp │ │ ├── materialNetworkConverter.h │ │ ├── mayaAttrs.cpp │ │ ├── mayaAttrs.h │ │ ├── meshAdapter.cpp │ │ ├── nurbsCurveAdapter.cpp │ │ ├── pointLightAdapter.cpp │ │ ├── renderItemAdapter.cpp │ │ ├── renderItemAdapter.h │ │ ├── shapeAdapter.cpp │ │ ├── shapeAdapter.h │ │ ├── spotLightAdapter.cpp │ │ ├── tokens.cpp │ │ └── tokens.h │ ├── api.h │ ├── debugCodes.cpp │ ├── debugCodes.h │ ├── hydraUtils.cpp │ ├── hydraUtils.h │ ├── mayaHydra.h.src │ ├── mayaHydraLibInterface.h │ ├── mayaHydraLibInterfaceImp.cpp │ ├── mayaHydraLibInterfaceImp.h │ ├── mayaHydraParams.h │ ├── mayaUtils.cpp │ ├── mayaUtils.h │ ├── mhBuildInfo.cpp │ ├── mhBuildInfo.h.src │ ├── mhLeadObjectPathTracker.cpp │ ├── mhLeadObjectPathTracker.h │ ├── mhWireframeColorInterfaceImp.cpp │ ├── mhWireframeColorInterfaceImp.h │ ├── mixedUtils.cpp │ ├── mixedUtils.h │ ├── pick │ │ ├── CMakeLists.txt │ │ ├── mhPickContext.cpp │ │ ├── mhPickContext.h │ │ ├── mhPickContextFwd.cpp │ │ ├── mhPickContextFwd.h │ │ ├── mhPickHandler.cpp │ │ ├── mhPickHandler.h │ │ ├── mhPickHandlerFwd.cpp │ │ ├── mhPickHandlerFwd.h │ │ ├── mhPickHandlerRegistry.cpp │ │ ├── mhPickHandlerRegistry.h │ │ ├── mhUsdPickHandler.cpp │ │ └── mhUsdPickHandler.h │ ├── plugInfo.json │ ├── sceneIndex │ │ ├── CMakeLists.txt │ │ ├── mayaHydraCameraDataSource.cpp │ │ ├── mayaHydraCameraDataSource.h │ │ ├── mayaHydraDataSource.cpp │ │ ├── mayaHydraDataSource.h │ │ ├── mayaHydraDefaultLightDataSource.cpp │ │ ├── mayaHydraDefaultLightDataSource.h │ │ ├── mayaHydraDisplayStyleDataSource.cpp │ │ ├── mayaHydraDisplayStyleDataSource.h │ │ ├── mayaHydraLightDataSource.cpp │ │ ├── mayaHydraLightDataSource.h │ │ ├── mayaHydraMaterialDataSource.cpp │ │ ├── mayaHydraMaterialDataSource.h │ │ ├── mayaHydraMayaDataProducerSceneIndexData.cpp │ │ ├── mayaHydraMayaDataProducerSceneIndexData.h │ │ ├── mayaHydraMayaDataProducerSceneIndexDataConcreteFactory.cpp │ │ ├── mayaHydraMayaDataProducerSceneIndexDataConcreteFactory.h │ │ ├── mayaHydraMayaFilteringSceneIndexData.cpp │ │ ├── mayaHydraMayaFilteringSceneIndexData.h │ │ ├── mayaHydraMayaFilteringSceneIndexDataConcreteFactory.cpp │ │ ├── mayaHydraMayaFilteringSceneIndexDataConcreteFactory.h │ │ ├── mayaHydraPrimvarDataSource.cpp │ │ ├── mayaHydraPrimvarDataSource.h │ │ ├── mayaHydraSceneIndex.cpp │ │ ├── mayaHydraSceneIndex.h │ │ ├── mayaHydraSceneIndexDataFactoriesSetup.cpp │ │ ├── mayaHydraSceneIndexDataFactoriesSetup.h │ │ ├── mayaHydraSceneIndexUtils.h │ │ ├── mhDirtyLeadObjectSceneIndex.cpp │ │ ├── mhDirtyLeadObjectSceneIndex.h │ │ ├── mhMayaUsdProxyShapeSceneIndex.cpp │ │ ├── mhMayaUsdProxyShapeSceneIndex.h │ │ ├── registration.cpp │ │ └── registration.h │ ├── shaderDefs.usda │ ├── tokens.cpp │ └── tokens.h │ ├── mayaPlugin │ ├── CMakeLists.txt │ ├── colorNotFoundException.cpp │ ├── colorNotFoundException.h │ ├── mayaColorPreferencesTranslator.cpp │ ├── mayaColorPreferencesTranslator.h │ ├── plugRegistryHelper.cpp │ ├── plugRegistryHelper.h │ ├── plugin.cpp │ ├── pluginBuildInfoCommand.cpp │ ├── pluginBuildInfoCommand.h │ ├── pluginDebugCodes.cpp │ ├── pluginDebugCodes.h │ ├── pluginUtils.cpp │ ├── pluginUtils.h │ ├── renderGlobals.cpp │ ├── renderGlobals.h │ ├── renderOverride.cpp │ ├── renderOverride.h │ ├── renderOverrideUtils.h │ ├── tokens.cpp │ ├── tokens.h │ ├── viewCommand.cpp │ └── viewCommand.h │ └── ufeExtensions │ ├── CMakeLists.txt │ ├── Global.cpp │ ├── Global.h │ ├── api.h │ ├── cvtTypeUtils.cpp │ └── cvtTypeUtils.h ├── modules ├── mayaHydra.mod.template └── mayaHydra_Win.mod.template ├── plugin ├── mayaHydraSceneBrowser │ ├── CMakeLists.txt │ ├── mayaHydraSceneBrowser.cpp │ └── mayaHydraSceneBrowser.h └── mayaHydraSceneBrowserTest │ ├── CMakeLists.txt │ ├── mayaHydraSceneBrowserTestCmd.cpp │ └── mayaHydraSceneBrowserTestCmd.h ├── scripts ├── CMakeLists.txt ├── mayaHydra_GeomSubsetsPickMode.mel ├── mayaHydra_registerUIStrings.mel ├── mayaHydra_registerUI_batch_load.mel ├── mayaHydra_registerUI_batch_unload.mel ├── mayaHydra_registerUI_load.mel └── mayaHydra_registerUI_unload.mel ├── test ├── CMakeLists.txt ├── lib │ ├── CMakeLists.txt │ └── mayaUsd │ │ ├── CMakeLists.txt │ │ └── render │ │ ├── CMakeLists.txt │ │ └── mayaToHydra │ │ ├── ArnoldLightsTest │ │ ├── aiAreaLight.png │ │ └── allLights.png │ │ ├── BackgroundColorTest │ │ ├── background_black.jpg │ │ ├── background_blue.jpg │ │ ├── background_gray.jpg │ │ ├── background_green.jpg │ │ ├── background_red.jpg │ │ └── background_white.jpg │ │ ├── BasicRenderTest │ │ ├── flat_orange.png │ │ ├── flat_orange_bad.png │ │ ├── lambert │ │ │ ├── cube_selected.png │ │ │ └── cube_unselected.png │ │ └── standardSurface │ │ │ ├── cube_selected.png │ │ │ └── cube_unselected.png │ │ ├── BoundingBoxTest │ │ ├── boundingBox_extents.png │ │ └── boundingBox_no_extents.png │ │ ├── CMakeLists.txt │ │ ├── CurveToolsTest │ │ ├── curveControlVertices_basic.png │ │ ├── curveControlVertices_bezier.png │ │ ├── curveControlVertices_customKnots.png │ │ ├── curveControlVertices_degree1.png │ │ ├── curveControlVertices_degree2.png │ │ ├── curveControlVertices_degree5.png │ │ ├── curveEditPoints_basic.png │ │ ├── curveEditPoints_bezier.png │ │ ├── curveEditPoints_degree1.png │ │ ├── curveEditPoints_degree2.png │ │ ├── curveEditPoints_degree5.png │ │ ├── threePointCircularArc_cubic.png │ │ ├── threePointCircularArc_fresh.png │ │ ├── threePointCircularArc_linear.png │ │ ├── twoPointCircularArc_cubic.png │ │ ├── twoPointCircularArc_fresh.png │ │ ├── twoPointCircularArc_linear.png │ │ └── twoPointCircularArc_toggleArc.png │ │ ├── CustomShadersNodeTest │ │ ├── testCustomShadersNodeDefaultLight.png │ │ ├── testCustomShadersNodeDomeLightOnly.png │ │ └── testCustomShadersNodeUseAllLights.png │ │ ├── DagChangesTest │ │ ├── lambert │ │ │ ├── instances_0.png │ │ │ ├── instances_1.png │ │ │ ├── instances_12.png │ │ │ ├── instances_123.png │ │ │ ├── instances_1234.png │ │ │ ├── instances_123456.png │ │ │ ├── instances_1235.png │ │ │ ├── instances_3.png │ │ │ └── instances_35.png │ │ └── standardSurface │ │ │ ├── instances_0.png │ │ │ ├── instances_1.png │ │ │ ├── instances_12.png │ │ │ ├── instances_123.png │ │ │ ├── instances_1234.png │ │ │ ├── instances_123456.png │ │ │ ├── instances_1235.png │ │ │ ├── instances_3.png │ │ │ └── instances_35.png │ │ ├── DataProducerSelHighlightTest │ │ ├── Storm_AllSelected.png │ │ ├── Storm_BoundingBox_AllSelected.png │ │ ├── Storm_WireOnShaded_AllSelected.png │ │ ├── Storm_Wire_AllSelInStorm.png │ │ ├── Storm_Wireframe_AllSelected.png │ │ ├── VP2_AllSelected.png │ │ ├── selectMayaUsdNode.png │ │ ├── smoothShaded │ │ │ ├── Storm_0_NoSelected.png │ │ │ ├── Storm_1_S1Selected.png │ │ │ ├── Storm_2_S2Selected.png │ │ │ ├── Storm_3_TSelected.png │ │ │ ├── Storm_4_PSelected.png │ │ │ ├── Storm_5_PRemoved.png │ │ │ └── Storm_6_S1Removed.png │ │ ├── wireframe │ │ │ ├── Storm_0_NoSelected.png │ │ │ ├── Storm_1_S1Selected.png │ │ │ ├── Storm_2_S2Selected.png │ │ │ ├── Storm_3_TSelected.png │ │ │ ├── Storm_4_PSelected.png │ │ │ ├── Storm_5_PRemoved.png │ │ │ └── Storm_6_S1Removed.png │ │ └── wireframeOnShaded │ │ │ ├── Storm_0_NoSelected.png │ │ │ ├── Storm_1_S1Selected.png │ │ │ ├── Storm_2_S2Selected.png │ │ │ ├── Storm_3_TSelected.png │ │ │ ├── Storm_4_PSelected.png │ │ │ ├── Storm_5_PRemoved.png │ │ │ └── Storm_6_S1Removed.png │ │ ├── FlowPluginsHierarchicalPropertiesTest │ │ ├── authoring_locator_parentTransformChanged.png │ │ ├── authoring_locator_shapeTransformChanged.png │ │ ├── authoring_locator_visibility_off.png │ │ ├── authoring_locator_visibility_on.png │ │ ├── locator_playback_hidden.png │ │ ├── locator_playback_initial.png │ │ ├── locator_playback_translated.png │ │ ├── usdStageAnimatedPrim_t0.png │ │ ├── usdStageAnimatedPrim_t1.png │ │ ├── usdStageAnimatedPrim_t10.png │ │ ├── usdStageAnimatedPrim_t12.png │ │ ├── usdStageAnimatedPrim_t15.png │ │ ├── usdStageAnimatedPrim_t3.png │ │ ├── usdStageAnimatedPrim_t5.png │ │ ├── usdStageAnimatedPrim_t7.png │ │ ├── usdStage_parentTransformChanged.png │ │ ├── usdStage_playback_hidden.png │ │ ├── usdStage_playback_initial.png │ │ ├── usdStage_playback_translated.png │ │ ├── usdStage_shapeTransformChanged.png │ │ ├── usdStage_visibility_off.png │ │ └── usdStage_visibility_on.png │ │ ├── FlowViewportAPITest │ │ ├── add_NodeCreated.png │ │ ├── add_NodeDeleted.png │ │ ├── add_NodeDeletedRedo.png │ │ ├── add_NodeDeletedUndo.png │ │ ├── add_NodeDeletedUndoAgain.png │ │ ├── add_NodeHidden.png │ │ ├── add_NodeMoved.png │ │ ├── add_NodeMovedAfterDeletionAndUndo.png │ │ ├── add_NodeUnhidden.png │ │ ├── add_VP2AndThenBackToStorm.png │ │ ├── cubeGrid_AfterModifs.png │ │ ├── cubeGrid_BeforeModifs.png │ │ ├── cubeGrid_VP2AndThenBackToStorm.png │ │ ├── cubeGrid_WithInstancing.png │ │ ├── cubeGrid_WithInstancingModifs.png │ │ ├── filter_NodeCreated.png │ │ ├── filter_NodeDeleted.png │ │ ├── filter_NodeDeletedRedo.png │ │ ├── filter_NodeDeletedUndo.png │ │ ├── filter_NodeHidden.png │ │ ├── filter_NodeMoved.png │ │ ├── filter_NodeUnhidden.png │ │ ├── filter_SphereFiltered.png │ │ ├── filter_SphereFilteredAgain.png │ │ ├── filter_SphereUnFiltered.png │ │ ├── filter_VP2AndThenBackToStorm.png │ │ ├── filter_VP2AndThenBackToStorm_MovedSphereUnFiltered.png │ │ ├── hierarchicalProperties_locator_visibility_off.png │ │ ├── hierarchicalProperties_locator_visibility_on.png │ │ ├── hierarchicalProperties_usdStage_parentTransformChanged.png │ │ ├── hierarchicalProperties_usdStage_shapeTransformChanged.png │ │ ├── hierarchicalProperties_usdStage_visibility_off.png │ │ ├── hierarchicalProperties_usdStage_visibility_on.png │ │ ├── multipleNodes_AfterModifs.png │ │ ├── multipleNodes_AfterModifsRemoveInstancing.png │ │ ├── multipleNodes_BeforeModifs.png │ │ ├── multipleNodes_Node1Hidden.png │ │ ├── multipleNodes_Node1Unhidden.png │ │ ├── multipleNodes_VP2AndThenBackToStorm.png │ │ ├── multipleViewports_VP2AndThenBackToStorm_modPan2.png │ │ ├── multipleViewports_VP2AndThenBackToStorm_modPan4.png │ │ ├── multipleViewports_VP2_modPan2.png │ │ ├── multipleViewports_VP2_modPan4.png │ │ ├── multipleViewports_sphereFiltered_viewPanel2.png │ │ ├── multipleViewports_sphereFiltered_viewPanel4.png │ │ ├── multipleViewports_sphereUnfiltered_viewPanel2.png │ │ ├── multipleViewports_sphereUnfiltered_viewPanel4.png │ │ ├── multipleViewports_viewPanel2.png │ │ ├── multipleViewports_viewPanel4.png │ │ └── usd_2411+ │ │ │ └── filter_VP2AndThenBackToStorm_MovedSphereUnFiltered.png │ │ ├── FootPrintNodeTest │ │ ├── add_NodeCreated.png │ │ ├── add_NodeDeleted.png │ │ ├── add_NodeDeletedRedo.png │ │ ├── add_NodeDeletedUndo.png │ │ ├── add_NodeDeletedUndoAgain.png │ │ ├── add_NodeHidden.png │ │ ├── add_NodeMoved.png │ │ ├── add_NodeMovedAfterDeletionAndUndo.png │ │ ├── add_NodeUnhidden.png │ │ ├── add_VP2AndThenBackToStorm.png │ │ ├── footPrint_AfterModifs.png │ │ ├── footPrint_BeforeModifs.png │ │ ├── footPrint_VP2AndThenBackToStorm.png │ │ ├── loadingFootPrintScene.png │ │ ├── multipleNodes_AfterModifs.png │ │ ├── multipleNodes_BeforeModifs.png │ │ ├── multipleNodes_Node1Hidden.png │ │ ├── multipleNodes_Node1Unhidden.png │ │ ├── multipleNodes_VP2AndThenBackToStorm.png │ │ ├── multipleViewports_VP2AndThenBackToStorm_modPan3.png │ │ ├── multipleViewports_VP2AndThenBackToStorm_modPan4.png │ │ ├── multipleViewports_VP2_modPan3.png │ │ ├── multipleViewports_VP2_modPan4.png │ │ ├── multipleViewports_viewPanel1.png │ │ ├── multipleViewports_viewPanel4.png │ │ ├── selectionHighlight.png │ │ └── usd_2411+ │ │ │ └── loadingFootPrintScene.png │ │ ├── GeomSubsetsWireframeHighlightTest │ │ ├── displacement.png │ │ ├── geomSubsetThenMeshSelection.png │ │ ├── instancedGeomSubsetHighlight.png │ │ ├── simpleGeomSubsetHighlight.png │ │ ├── wireframeColorChange_after.png │ │ └── wireframeColorChange_before.png │ │ ├── GridTest │ │ ├── grid_disabled.png │ │ └── grid_enabled.png │ │ ├── ImageDiffingTest │ │ ├── colored_stripes.png │ │ ├── colored_stripes_one_pixel_off.png │ │ ├── colored_stripes_slight_noise.png │ │ ├── cube_scene.png │ │ ├── cube_scene_one_pixel_off.png │ │ └── cube_scene_slight_noise.png │ │ ├── IsolateSelectWithUsdLightingTest │ │ └── isolateSelectWithUsdLighting.png │ │ ├── LookThroughTest │ │ ├── default.png │ │ ├── lookThroughAreaLight.png │ │ ├── lookThroughCamera.png │ │ └── lookThroughSpotLight.png │ │ ├── LookdevxUpdateTest │ │ ├── lookdevXAfterUpdate.png │ │ └── lookdevXBeforeUpdate.png │ │ ├── MaterialXOnNativeTest │ │ └── RedMtlxSphere.png │ │ ├── MayaComponentsPickingTest │ │ ├── face236SelStorm.png │ │ ├── facesSelStorm.png │ │ ├── facesSelVP2.png │ │ ├── selectionWithLights.png │ │ └── smoothwireframe.png │ │ ├── MayaDefaultMaterialTest │ │ ├── defaultMaterial.png │ │ ├── defaultMaterialGeomSubsetUsdPrims.png │ │ ├── defaultMaterialUsdPrims.png │ │ ├── sceneLoaded.png │ │ └── usd_2411+ │ │ │ └── sceneLoaded.png │ │ ├── MayaDisplayLayersTest │ │ ├── allLayers.png │ │ ├── coneLayer.png │ │ ├── coneLayerCustomWireframe.png │ │ ├── default.png │ │ ├── layerReference.png │ │ ├── layerReferenceSelected.png │ │ ├── layerTemplate.png │ │ └── layerTemplateSelected.png │ │ ├── MayaDisplayModesTest │ │ ├── allData_BBox.png │ │ ├── allData_Wireframe.png │ │ ├── allData_WireframeOnShaded.png │ │ ├── allLights.png │ │ ├── defaultDisplayModeFromScene.png │ │ ├── defaultMaterial.png │ │ ├── displayTextures.png │ │ ├── shadows.png │ │ ├── smoothShaded.png │ │ ├── wireframeOnShaded.png │ │ └── xray.png │ │ ├── MayaIsolateSelectTest │ │ ├── default.png │ │ └── isolateSelect.png │ │ ├── MayaLightingModesTest │ │ ├── allLights.png │ │ ├── areaLightSelected.png │ │ ├── defaultLighting.png │ │ ├── dirLightSelected.png │ │ ├── domeLightSelected.png │ │ ├── noLighting.png │ │ ├── pointLightSelected.png │ │ ├── selLights_None.png │ │ ├── someLightsSelected.png │ │ ├── sphereLightSelected.png │ │ └── spotLightSelected.png │ │ ├── MayaLightsTest │ │ ├── allLights.png │ │ ├── allLights_shadowOn.png │ │ ├── defaultLight.png │ │ ├── defaultLight_shadowOn.png │ │ ├── directionalLight.png │ │ ├── directionalLight_shadowOn.png │ │ ├── noLight.png │ │ ├── pointLight.png │ │ ├── spotLight.png │ │ └── spotLight_shadowOn.png │ │ ├── MayaReferenceTest │ │ ├── editMayaReference.png │ │ ├── loadMayaReference.png │ │ └── unloadMayaReference.png │ │ ├── MayaShadingModesTest │ │ ├── boundingBox.png │ │ ├── default.png │ │ ├── flatShaded.png │ │ ├── smoothwireframe.png │ │ ├── smoothwireframeonshaded.png │ │ └── xray.png │ │ ├── MayaUsdAPIUsageTest │ │ ├── mayaUsdAPI_DirectionalLight.png │ │ ├── mayaUsdAPI_TransformMoved.png │ │ ├── mayaUsdAPI__NodeDeleted.png │ │ ├── mayaUsdAPI__NodeDeletedRedo.png │ │ ├── mayaUsdAPI__NodeDeletedUndo.png │ │ ├── mayaUsdAPI__NodeDeletedUndoAgain.png │ │ ├── mayaUsdAPI__NodeHidden.png │ │ ├── mayaUsdAPI__NodeMovedAfterDeletionAndUndo.png │ │ ├── mayaUsdAPI__NodeUnhidden.png │ │ └── mayaUsdAPI__VP2AndThenBackToStorm.png │ │ ├── MeshWireframeHighlightTest │ │ ├── meshSelection_direct.png │ │ ├── meshSelection_parent.png │ │ ├── wireframeColorChange_after.png │ │ └── wireframeColorChange_before.png │ │ ├── NativeInstancingWireframeHighlightTest │ │ ├── displaced_instanceSelection.png │ │ ├── displaced_prototypeSelection.png │ │ ├── instanceSelection_direct.png │ │ ├── instanceSelection_parent.png │ │ ├── instanceWireframeColorChange_after.png │ │ ├── instanceWireframeColorChange_before.png │ │ ├── prototypeSelection_baseCube.png │ │ ├── prototypeSelection_topCube.png │ │ ├── prototypeWireframeColorChange_firstBaseCubeItem.png │ │ ├── prototypeWireframeColorChange_firstTopCubeItem.png │ │ └── prototypeWireframeColorChange_secondTopCubeItem.png │ │ ├── NurbsPrimitivesTest │ │ ├── circle_fresh.png │ │ ├── circle_modified.png │ │ ├── circle_tolerance.png │ │ ├── circle_unfixedCenter.png │ │ ├── cube_fresh.png │ │ ├── cube_modified.png │ │ ├── square_fresh.png │ │ ├── square_modified.png │ │ ├── torus_fresh.png │ │ ├── torus_modified.png │ │ └── torus_tolerance.png │ │ ├── ObjectTemplateTest │ │ ├── default.png │ │ ├── templateOn.png │ │ └── templateOnSelection.png │ │ ├── OpenPBRSurfaceTest │ │ ├── RenderItemHasCullModeAPI │ │ │ ├── coatColor.png │ │ │ └── coatWeight.png │ │ ├── baseColor.png │ │ ├── baseWeight.png │ │ ├── coatColor.png │ │ ├── coatWeight.png │ │ ├── default.png │ │ ├── default_noTexture.png │ │ ├── emissionColor.png │ │ ├── emissionLuminance.png │ │ ├── geometryOpacity.png │ │ ├── metalness.png │ │ ├── specularColor.png │ │ ├── specularIOR.png │ │ ├── specularRoughness.png │ │ ├── specularWeight.png │ │ └── transmissionWeight.png │ │ ├── PassingNormalsOnMayaNativeTest │ │ └── importedAssetsNormals.png │ │ ├── PointInstancingWireframeHighlightTest │ │ ├── directSelection_fourthInstancer.png │ │ ├── directSelection_secondInstancer.png │ │ ├── directSelection_thirdInstancer.png │ │ ├── directSelection_topInstancer.png │ │ ├── instanceWireframeColorChange_after.png │ │ ├── instanceWireframeColorChange_before.png │ │ ├── parentSelection_topInstancer.png │ │ ├── pointInstancerWireframeColorChange_1.png │ │ ├── pointInstancerWireframeColorChange_2.png │ │ ├── pointInstancerWireframeColorChange_3.png │ │ ├── pointInstancerWireframeColorChange_4.png │ │ ├── pointInstancerWireframeColorChange_5.png │ │ ├── prototypeWireframeColorChange_after.png │ │ ├── prototypeWireframeColorChange_before.png │ │ ├── prototype_directSelection.png │ │ ├── prototype_parentSelection.png │ │ ├── rootSelection_all.png │ │ ├── secondInstancerSecondInstance.png │ │ └── topInstancerFirstInstance.png │ │ ├── PolygonPrimitivesTest │ │ ├── RenderItemHasCullModeAPI │ │ │ ├── sphericalHarmonics_helix.png │ │ │ └── ultra_helix.png │ │ ├── cube_fresh.png │ │ ├── cube_modified.png │ │ ├── cylinder_fresh.png │ │ ├── cylinder_modified.png │ │ ├── cylinder_roundCap.png │ │ ├── cylinder_roundCapHeightCompensation.png │ │ ├── disc_fresh.png │ │ ├── disc_subdivision_caps.png │ │ ├── disc_subdivision_circle.png │ │ ├── disc_subdivision_pie.png │ │ ├── disc_subdivision_quads.png │ │ ├── disc_subdivision_triangles.png │ │ ├── gear_fresh.png │ │ ├── gear_modified.png │ │ ├── helix_clockwise.png │ │ ├── helix_fresh.png │ │ ├── helix_modified.png │ │ ├── helix_roundCap.png │ │ ├── pipe_fresh.png │ │ ├── pipe_modified.png │ │ ├── pipe_roundCap.png │ │ ├── pipe_roundCapHeightCompensation.png │ │ ├── platonic_cube_triangles.png │ │ ├── platonic_dodecahedron_caps.png │ │ ├── platonic_fresh.png │ │ ├── platonic_icosahedron_triangles.png │ │ ├── platonic_octahedron_pie.png │ │ ├── platonic_tetrahedron_quads.png │ │ ├── prism_5sides.png │ │ ├── prism_8sides.png │ │ ├── prism_fresh.png │ │ ├── pyramid_3sides.png │ │ ├── pyramid_4sides.png │ │ ├── pyramid_5sides.png │ │ ├── pyramid_fresh.png │ │ ├── soccerball_fresh.png │ │ ├── soccerball_modified.png │ │ ├── sphericalHarmonics_fresh.png │ │ ├── sphericalHarmonics_helix.png │ │ ├── sphericalHarmonics_modified.png │ │ ├── superEllipse_fresh.png │ │ ├── superEllipse_helix.png │ │ ├── superEllipse_mirror.png │ │ ├── superEllipse_modified.png │ │ ├── torus_fresh.png │ │ ├── torus_modified.png │ │ ├── ultra_fresh.png │ │ ├── ultra_helix.png │ │ └── ultra_modified.png │ │ ├── README.md │ │ ├── RefinementTest │ │ ├── basisCurves_refined_0.png │ │ ├── basisCurves_refined_1.png │ │ ├── basisCurves_refined_2.png │ │ ├── basisCurves_refined_3.png │ │ ├── usd_cube_refined_0.png │ │ ├── usd_cube_refined_2.png │ │ └── usd_cube_refined_4.png │ │ ├── StageInstanceablePrimsSelHighlightTest │ │ ├── cylSel.png │ │ ├── cylSel_Cyl_Inst.png │ │ ├── cylSel_Cyl_Spher_Inst.png │ │ ├── cylSel_Spher_Inst.png │ │ ├── spherSel.png │ │ ├── spherSel_Cyl_Inst.png │ │ ├── spherSel_Cyl_Spher_Inst.png │ │ └── spherSel_Spher_Inst.png │ │ ├── StagePayloadsReferencesTest │ │ ├── cubeLoadWithDescendants.png │ │ ├── cubeLoaded.png │ │ ├── cubeUnloaded.png │ │ ├── cubeUnloadedRedo.png │ │ ├── cubeUnloadedUndo.png │ │ ├── initialState.png │ │ ├── payloadSceneLoadedPotA.png │ │ ├── payloadSceneLoadedPotB.png │ │ ├── referencesSceneCreated.png │ │ └── referencesSceneLoaded.png │ │ ├── StageVariantsTest │ │ ├── oneCube.png │ │ ├── oneCubeInstanceable.png │ │ ├── threeCubes.png │ │ ├── threeCubesInstanceable.png │ │ ├── threeCubesWithDisplacement.png │ │ ├── twoCubes.png │ │ └── twoCubesInstanceable.png │ │ ├── StandardSurfaceTest │ │ ├── baseColor.png │ │ ├── baseWeight.png │ │ ├── coatColor.png │ │ ├── coatWeight.png │ │ ├── default.png │ │ ├── default_noTexture.png │ │ ├── emissionColor.png │ │ ├── emissionWeight.png │ │ ├── geometryOpacity.png │ │ ├── metalness.png │ │ ├── specularColor.png │ │ ├── specularIOR.png │ │ ├── specularRoughness.png │ │ ├── specularWeight.png │ │ └── transmissionWeight.png │ │ ├── TransformsTest │ │ ├── cube_parent_moved.png │ │ ├── cube_parent_moved_rotated.png │ │ ├── cube_parent_moved_rotated_scaled.png │ │ ├── cube_scaled.png │ │ ├── cube_scaled_moved.png │ │ ├── cube_scaled_moved_rotated.png │ │ ├── cube_untransformed.png │ │ ├── usd_cube_parent_moved.png │ │ ├── usd_cube_parent_moved_rotated.png │ │ ├── usd_cube_parent_moved_rotated_scaled.png │ │ ├── usd_cube_scaled.png │ │ ├── usd_cube_scaled_moved.png │ │ ├── usd_cube_scaled_moved_rotated.png │ │ └── usd_cube_untransformed.png │ │ ├── USDLightsTest │ │ └── allLights.png │ │ ├── UVandUDIMTest │ │ ├── quads_with_HDR.png │ │ ├── quads_with_UDIMs.png │ │ └── quads_with_UVs.png │ │ ├── UsdInheritsSpecializesTest │ │ └── inherits.png │ │ ├── UsdStageDefaultLightingTest │ │ ├── usdStageDefaultLighting_1.png │ │ └── usdStageDefaultLighting_2.png │ │ ├── UsdTextureToggleTest │ │ ├── usd_texture_off.png │ │ └── usd_texture_on.png │ │ ├── ViewportFiltersTest │ │ ├── cameras_USD_excluded.png │ │ ├── cameras_USD_included.png │ │ ├── cameras_excluded.png │ │ ├── cameras_included.png │ │ ├── controllers_excluded.png │ │ ├── controllers_included.png │ │ ├── deformers_excluded.png │ │ ├── deformers_included.png │ │ ├── dimensions_excluded.png │ │ ├── dimensions_included.png │ │ ├── ikHandles_excluded.png │ │ ├── ikHandles_included.png │ │ ├── image_planes_excluded.png │ │ ├── image_planes_included.png │ │ ├── joints_excluded.png │ │ ├── joints_included.png │ │ ├── lights_USD_excluded.png │ │ ├── lights_USD_included.png │ │ ├── lights_USD_included_ufe_fl9.png │ │ ├── lights_excluded.png │ │ ├── lights_included.png │ │ ├── locators_excluded.png │ │ ├── locators_included.png │ │ ├── motion_trails_excluded.png │ │ ├── motion_trails_included.png │ │ ├── nurbsCurves_USD_excluded.png │ │ ├── nurbsCurves_USD_included.png │ │ ├── nurbsPatches_USD_excluded.png │ │ ├── nurbsPatches_USD_included.png │ │ ├── nurbs_curves_excluded.png │ │ ├── nurbs_curves_included.png │ │ ├── nurbs_hull_excluded.png │ │ ├── nurbs_hull_included.png │ │ ├── nurbs_surfaces_excluded.png │ │ ├── nurbs_surfaces_included.png │ │ ├── polygons_DataProducer_excluded.png │ │ ├── polygons_DataProducer_included.png │ │ ├── polygons_USD_excluded.png │ │ ├── polygons_USD_included.png │ │ ├── polygons_excluded.png │ │ ├── polygons_included.png │ │ ├── strokes_excluded.png │ │ ├── strokes_included.png │ │ ├── subdivision_surfaces_excluded.png │ │ └── subdivision_surfaces_included.png │ │ ├── VisibilityTest │ │ ├── cube_unselected.png │ │ ├── lambertDefaultMaterial │ │ │ └── cube_unselected.png │ │ └── nothing.png │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── IsolateSelectTest │ │ │ ├── singleViewportIsolateSelectCylinder1.png │ │ │ └── usd_2411+ │ │ │ │ └── singleViewportIsolateSelectCylinder1.png │ │ ├── NurbsSurfacesTest │ │ │ ├── circle_points_fresh.txt │ │ │ ├── circle_points_modified.txt │ │ │ ├── circle_points_tolerance.txt │ │ │ ├── circle_points_unfixedCenter.txt │ │ │ ├── circle_topology_fresh.txt │ │ │ ├── circle_topology_modified.txt │ │ │ ├── circle_topology_tolerance.txt │ │ │ ├── circle_topology_unfixedCenter.txt │ │ │ ├── cube_backnurbsCubeShape1_points_fresh.txt │ │ │ ├── cube_backnurbsCubeShape1_points_modified.txt │ │ │ ├── cube_backnurbsCubeShape1_topology_fresh.txt │ │ │ ├── cube_backnurbsCubeShape1_topology_modified.txt │ │ │ ├── cube_bottomnurbsCubeShape1_points_fresh.txt │ │ │ ├── cube_bottomnurbsCubeShape1_points_modified.txt │ │ │ ├── cube_bottomnurbsCubeShape1_topology_fresh.txt │ │ │ ├── cube_bottomnurbsCubeShape1_topology_modified.txt │ │ │ ├── cube_frontnurbsCubeShape1_points_fresh.txt │ │ │ ├── cube_frontnurbsCubeShape1_points_modified.txt │ │ │ ├── cube_frontnurbsCubeShape1_topology_fresh.txt │ │ │ ├── cube_frontnurbsCubeShape1_topology_modified.txt │ │ │ ├── cube_leftnurbsCubeShape1_points_fresh.txt │ │ │ ├── cube_leftnurbsCubeShape1_points_modified.txt │ │ │ ├── cube_leftnurbsCubeShape1_topology_fresh.txt │ │ │ ├── cube_leftnurbsCubeShape1_topology_modified.txt │ │ │ ├── cube_rightnurbsCubeShape1_points_fresh.txt │ │ │ ├── cube_rightnurbsCubeShape1_points_modified.txt │ │ │ ├── cube_rightnurbsCubeShape1_topology_fresh.txt │ │ │ ├── cube_rightnurbsCubeShape1_topology_modified.txt │ │ │ ├── cube_topnurbsCubeShape1_points_fresh.txt │ │ │ ├── cube_topnurbsCubeShape1_points_modified.txt │ │ │ ├── cube_topnurbsCubeShape1_topology_fresh.txt │ │ │ ├── cube_topnurbsCubeShape1_topology_modified.txt │ │ │ ├── square_bottomnurbsSquareShape1_points_fresh.txt │ │ │ ├── square_bottomnurbsSquareShape1_points_modified.txt │ │ │ ├── square_bottomnurbsSquareShape1_topology_fresh.txt │ │ │ ├── square_bottomnurbsSquareShape1_topology_modified.txt │ │ │ ├── square_leftnurbsSquareShape1_points_fresh.txt │ │ │ ├── square_leftnurbsSquareShape1_points_modified.txt │ │ │ ├── square_leftnurbsSquareShape1_topology_fresh.txt │ │ │ ├── square_leftnurbsSquareShape1_topology_modified.txt │ │ │ ├── square_rightnurbsSquareShape1_points_fresh.txt │ │ │ ├── square_rightnurbsSquareShape1_points_modified.txt │ │ │ ├── square_rightnurbsSquareShape1_topology_fresh.txt │ │ │ ├── square_rightnurbsSquareShape1_topology_modified.txt │ │ │ ├── square_topnurbsSquareShape1_points_fresh.txt │ │ │ ├── square_topnurbsSquareShape1_points_modified.txt │ │ │ ├── square_topnurbsSquareShape1_topology_fresh.txt │ │ │ ├── square_topnurbsSquareShape1_topology_modified.txt │ │ │ ├── torus_points_fresh.txt │ │ │ ├── torus_points_modified.txt │ │ │ ├── torus_points_tolerance.txt │ │ │ ├── torus_topology_fresh.txt │ │ │ ├── torus_topology_modified.txt │ │ │ └── torus_topology_tolerance.txt │ │ ├── README.md │ │ ├── WriteFileTest │ │ │ └── stormOutput.png │ │ ├── infoClientTest.h │ │ ├── mayaHydraCppTestsCmd.cpp │ │ ├── mayaHydraCppTestsCmd.h │ │ ├── testColorPreferences.cpp │ │ ├── testColorPreferences.py │ │ ├── testCppFramework.cpp │ │ ├── testCppFramework.py │ │ ├── testDataProducerExample.py │ │ ├── testDataProducerMergingSceneIndex.cpp │ │ ├── testDataProducerMergingSceneIndex.py │ │ ├── testFlowViewportAPIAddPrims.cpp │ │ ├── testFlowViewportAPIAddPrims.py │ │ ├── testFlowViewportAPIFilterPrims.cpp │ │ ├── testFlowViewportAPIFilterPrims.py │ │ ├── testFlowViewportAPIViewportInformation.py │ │ ├── testFvpViewportInformationMultipleViewports.cpp │ │ ├── testFvpViewportInformationRendererSwitching.cpp │ │ ├── testGeomSubsetsPicking.cpp │ │ ├── testGeomSubsetsPicking.py │ │ ├── testHydraPrim.cpp │ │ ├── testIsolateSelect.cpp │ │ ├── testIsolateSelect.py │ │ ├── testIsolateSelectMayaSelectionHighlighting.py │ │ ├── testIsolateSelectSwitchToVP2.py │ │ ├── testMayaSceneFlattening.cpp │ │ ├── testMayaSceneFlattening.py │ │ ├── testMayaUsdUfeItems.cpp │ │ ├── testMayaUsdUfeItems.py │ │ ├── testMeshAdapterTransform.cpp │ │ ├── testMeshAdapterTransform.py │ │ ├── testNurbsSurfaces.cpp │ │ ├── testNurbsSurfaces.py │ │ ├── testPathMapperRegistry.cpp │ │ ├── testPathMapperRegistry.py │ │ ├── testPickHandlerRegistry.cpp │ │ ├── testPickHandlerRegistry.py │ │ ├── testPicking.cpp │ │ ├── testPicking.py │ │ ├── testPrimInstancing.cpp │ │ ├── testPrimInstancing.py │ │ ├── testPrimPath.cpp │ │ ├── testSceneCorrectness.cpp │ │ ├── testSceneCorrectness.py │ │ ├── testSceneIndexDirtying.cpp │ │ ├── testSceneIndexDirtying.py │ │ ├── testSelection.cpp │ │ ├── testSelectionSceneIndex.cpp │ │ ├── testSelectionSceneIndex.py │ │ ├── testSinglePicking.cpp │ │ ├── testSinglePicking.py │ │ ├── testUsdAnim.cpp │ │ ├── testUsdAnim.py │ │ ├── testUsdNativeInstancePicking.py │ │ ├── testUsdNativeInstancingIsolateSelect.py │ │ ├── testUsdPickKind.py │ │ ├── testUsdPicking.cpp │ │ ├── testUsdPointInstancePicking.py │ │ ├── testUsdPointInstancingIsolateSelect.py │ │ ├── testUsdPointInstancingIsolateSelectBBox.py │ │ ├── testUsdSelection.cpp │ │ ├── testUsdSelection.py │ │ ├── testUsdStageFromFile.py │ │ ├── testUsdStageInvalidate.cpp │ │ ├── testUsdStageInvalidate.py │ │ ├── testUsdStageLayerMuting.cpp │ │ ├── testUsdStageLayerMuting.py │ │ ├── testUtils.cpp │ │ ├── testUtils.h │ │ ├── testWriteFile.cpp │ │ └── testWriteFile.py │ │ ├── testArnoldLights.py │ │ ├── testBackgroundColor.py │ │ ├── testBasicRender.py │ │ ├── testBoundingBox.py │ │ ├── testCurveTools.py │ │ ├── testCustomShadersNode.py │ │ ├── testDagChanges.py │ │ ├── testDataProducerSelHighlight.py │ │ ├── testFlowPluginsHierarchicalProperties.py │ │ ├── testFlowViewportAPI.py │ │ ├── testFootPrintNode.py │ │ ├── testGeomSubsetsWireframeHighlight.py │ │ ├── testGrid.py │ │ ├── testImageDiffing.py │ │ ├── testIsolateSelectWithGeomSubset.py │ │ ├── testIsolateSelectWithUsdLighting.py │ │ ├── testLookThrough.py │ │ ├── testMaterialXOnNative.py │ │ ├── testMayaComponentsPicking.py │ │ ├── testMayaDefaultMaterial.py │ │ ├── testMayaDisplayLayers.py │ │ ├── testMayaDisplayModes.py │ │ ├── testMayaIsolateSelect.py │ │ ├── testMayaLightingModes.py │ │ ├── testMayaLights.py │ │ ├── testMayaReference.py │ │ ├── testMayaShadingModes.py │ │ ├── testMayaUsdAPIUsage.py │ │ ├── testMeshWireframeHighlight.py │ │ ├── testMeshes.py │ │ ├── testMtohCommand.py │ │ ├── testNamespaces.py │ │ ├── testNativeInstancingWireframeHighlight.py │ │ ├── testNewSceneWithStage.py │ │ ├── testNurbsPrimitives.py │ │ ├── testObjectTemplate.py │ │ ├── testOpenPBRSurface.py │ │ ├── testPassingNormalsOnMayaNative.py │ │ ├── testPointInstancingWireframeHighlight.py │ │ ├── testPolygonPrimitives.py │ │ ├── testRefinement.py │ │ ├── testRendererSwitching.py │ │ ├── testSceneBrowser.py │ │ ├── testSceneModified.py │ │ ├── testSelectPrimWithoutDataSource.py │ │ ├── testStageAddPrim.py │ │ ├── testStageInstanceablePrimsSelHighlight.py │ │ ├── testStagePayloadsReferences.py │ │ ├── testStageVariants.py │ │ ├── testStandardSurface.py │ │ ├── testTransforms.py │ │ ├── testUSDLights.py │ │ ├── testUVandUDIM.py │ │ ├── testUsdInheritsSpecializes.py │ │ ├── testUsdStageDefaultLighting.py │ │ ├── testUsdTextureToggle.py │ │ ├── testViewportFilters.py │ │ └── testVisibility.py ├── testSamples │ ├── testArnoldLights │ │ ├── UsdStageWithSphereMatXStdSurf.usda │ │ ├── sky.hdr │ │ ├── testArnoldAreaLight.ma │ │ └── testArnoldLights.ma │ ├── testBoundingBox │ │ ├── cube_extents.usda │ │ └── cube_no_extents.usda │ ├── testCustomShadersNode │ │ ├── UVChecker.png │ │ └── testCustomShadersNode.ma │ ├── testDefaultMaterial │ │ ├── PoolBallFlat_animated.usdz │ │ ├── cube_geomsubset_material.usda │ │ ├── diffuse.png │ │ ├── testMayaDefaultMaterial_Native_Usd_dataProducer.ma │ │ ├── testMayaDefaultMaterial_Usd_geomSubset.ma │ │ └── testMayaDefaultMaterial_Usd_proceduralShapes.ma │ ├── testFlowPluginsHierarchicalProperties │ │ └── usd_animated_prim.usda │ ├── testFootPrintNode │ │ └── testFootPrintNodeSaved.ma │ ├── testGeomSubsetsPicking │ │ ├── GeomSubsetsPickingTestScene.usda │ │ ├── UpperHalfGeomSubsetCube.usda │ │ └── UpperHalfGeomSubsetSphere.usda │ ├── testGeomSubsetsWireframeHighlight │ │ ├── GeomSubsetWireframeHighlightDisplacementTestScene.usda │ │ ├── GeomSubsetsWireframeHighlightTestScene.usda │ │ ├── UpperHalfGeomSubsetCube.usda │ │ └── UpperHalfGeomSubsetSphere.usda │ ├── testIsolateSelectWithGeomSubset │ │ ├── mayaSpherePlusUSD_Instancer.ma │ │ ├── rubiksCube │ │ │ ├── rubiksCube.usda │ │ │ └── rubiksCube_A │ │ │ │ ├── bind │ │ │ │ └── rubiksCube_A_bind.usda │ │ │ │ ├── geo │ │ │ │ ├── rubiksCube_A_proxy.usd │ │ │ │ └── rubiksCube_A_render.usd │ │ │ │ ├── mtl │ │ │ │ └── rubiksCube_A_mtl.usda │ │ │ │ └── rubiksCube_A.usda │ │ └── rubiksCube_scatter.usda │ ├── testIsolateSelectWithUsdLighting │ │ └── mayaPlusUSDMeshesWithUSDLighting.ma │ ├── testLookThrough │ │ └── testLookThrough.ma │ ├── testMaterialX │ │ └── RedMtlxSphere.ma │ ├── testMayaComponentsPicking │ │ └── testMayaComponentsPicking.ma │ ├── testMayaDisplayModes │ │ ├── PoolBallFlat_animated.usdz │ │ ├── diffuse.png │ │ ├── testMayaDisplayModes.ma │ │ └── testMayaDisplayModes_Native+Usd+dataProducer.ma │ ├── testMayaLightingModes │ │ ├── AllKindOfLights.usd │ │ ├── AllKindsOfLights.ma │ │ ├── UVChecker.png │ │ ├── rubiksCube.usda │ │ └── rubiksCube_A │ │ │ ├── bind │ │ │ └── rubiksCube_A_bind.usda │ │ │ ├── geo │ │ │ ├── rubiksCube_A_proxy.usd │ │ │ └── rubiksCube_A_render.usd │ │ │ ├── mtl │ │ │ └── rubiksCube_A_mtl.usda │ │ │ └── rubiksCube_A.usda │ ├── testMayaLights │ │ ├── UsdStageWithSphereMatXStdSurf.usda │ │ └── testMayaLights.ma │ ├── testMayaReference │ │ └── aCube.ma │ ├── testMayaShadingModes │ │ └── testMayaShadingModes.ma │ ├── testMayaUsdAPIUsage │ │ ├── UsdStageWithSphereMatXStdSurf.ma │ │ └── UsdStageWithSphereMatXStdSurf.usda │ ├── testMeshWireframeHighlight │ │ └── cubesHierarchy.usda │ ├── testNativeInstancingWireframeHighlight │ │ ├── cubesHierarchy.usda │ │ ├── displacedCube.usda │ │ ├── displacedCubeScene.usda │ │ └── instancedCubeHierarchies.usda │ ├── testObjectTemplate │ │ └── testObjectTemplate.ma │ ├── testOpenPBRSurface │ │ ├── diffuse.png │ │ └── testOpenPBRSurface.ma │ ├── testPassingNormals │ │ └── test_ImportedAssetsNormals.ma │ ├── testPointInstancingWireframeHighlight │ │ ├── CubeModel.usda │ │ ├── NestedAndComposedPointInstancers.usda │ │ └── PyramidModel.usda │ ├── testPrimInstancing │ │ ├── cube.usda │ │ └── instanceableCube.usda │ ├── testRefinement │ │ └── basisCurves.usda │ ├── testSelectPrimWithoutDataSource │ │ ├── cube.usda │ │ ├── red20x20.png │ │ └── root.usda │ ├── testSinglePicking │ │ ├── testSinglePicking.ma │ │ └── testSinglePicking.usda │ ├── testStageInstanceablePrimsSelHighlight │ │ ├── instanceablePrimsSelHighlight.usd │ │ └── testInstanceablePrimsSelHighlight.ma │ ├── testStagePayloadsReferences │ │ ├── FlowerPot.geom.usd │ │ ├── FlowerPot.ma │ │ ├── FlowerPot.usda │ │ ├── FlowerPot_payload.usda │ │ ├── References.ma │ │ ├── cone.usda │ │ ├── cube.usda │ │ ├── cube1.usda │ │ ├── cylinder.usda │ │ ├── referencesExample.usda │ │ └── sphere.usda │ ├── testStageVariants │ │ ├── testStageVariants.ma │ │ └── variants.usda │ ├── testStandardSurface │ │ ├── diffuse.png │ │ └── testStandardSurface.ma │ ├── testUSDLights │ │ ├── UsdStageWithSphereMatXStdSurf.usda │ │ └── testUSDLights.ma │ ├── testUVandUDIM │ │ ├── 001.hdr │ │ ├── UdimTest_1001_color.png │ │ ├── UdimTest_1002_color.png │ │ ├── UdimTest_1003_color.png │ │ ├── blue.png │ │ ├── green.png │ │ ├── red.png │ │ ├── testHDR.ma │ │ ├── testUDIMs.ma │ │ └── testUVs.ma │ ├── testUsdAnim │ │ └── cubeAnim.usda │ ├── testUsdInheritsSpecializes │ │ ├── cubeInherits.usda │ │ └── cubeSpecializes.usda │ ├── testUsdNativeInstances │ │ ├── cubesHierarchy.usda │ │ └── instancedCubeHierarchies.usda │ ├── testUsdPickKind │ │ └── kindHierarchy.usda │ ├── testUsdPointInstances │ │ ├── CubeModel.usda │ │ ├── PyramidModel.usda │ │ ├── nestedPointInstancers.usda │ │ └── pointInstancer.usda │ ├── testUsdStageDefaultLighting │ │ ├── ground_tex.jpg │ │ ├── testUsdStageDefaultLighting.ma │ │ └── usdStageDefaultLighting.usd │ ├── testUsdTextureToggle │ │ ├── ground_tex.jpg │ │ ├── testUsdTextureToggle.ma │ │ └── usdStageWithTexture.usd │ ├── testViewportFilters │ │ ├── motionTrails.ma │ │ └── strokes.ma │ └── testWireframeSelectionHighlight │ │ ├── sample_usd.usda │ │ ├── testSelectionHighlightHierarchy.ma │ │ └── testSelectionHighlightMayaUsd.ma └── testUtils │ ├── __init__.py │ ├── cachingUtils.py │ ├── fixturesUtils.py │ ├── imageUtils.py │ ├── mayaUtils.py │ ├── mtohUtils.py │ ├── testUtils.py │ ├── ufeScripts │ ├── __init__.py │ └── ufeSelectCmd.py │ ├── ufeUtils.py │ └── usdUtils.py └── tests-to-run.json /.clang-format-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/.clang-format-ignore -------------------------------------------------------------------------------- /.clang-format-include: -------------------------------------------------------------------------------- 1 | \.c$ 2 | \.cc$ 3 | \.cpp$ 4 | \.cxx$ 5 | \.h$ 6 | \.hh$ 7 | \.hpp$ 8 | \.hxx$ 9 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Ignore clang-format commit 2 | 7c64b5df1f1cdbf879aaef12ed64b7fdd77a3af1 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: local 3 | hooks: 4 | 5 | - id: clang-format 6 | name: clang-format 7 | description: Format files with clang-format 8 | entry: .github/run-clang-format.py 9 | language: python 10 | stages: ['commit', 'manual'] 11 | -------------------------------------------------------------------------------- /README_DOC.md: -------------------------------------------------------------------------------- 1 | ## Plugin Documentation 2 | + [Technical details of Hydra for Maya](./doc/mayaHydraDetails.md) 3 | + [Selection Highlighting Architecture](./doc/selectionHighlightingArchitecture.md) 4 | + [Code Coverage Instructions](./doc/codeCoverageInstructions.md) -------------------------------------------------------------------------------- /cmake/flowViewport_version.info: -------------------------------------------------------------------------------- 1 | set(FLOWVIEWPORT_MAJOR_VERSION 0) 2 | set(FLOWVIEWPORT_MINOR_VERSION 1) 3 | set(FLOWVIEWPORT_PATCH_LEVEL 0) 4 | -------------------------------------------------------------------------------- /cmake/mayahydra_version.info: -------------------------------------------------------------------------------- 1 | set(MAYAHYDRA_MAJOR_VERSION 0) 2 | set(MAYAHYDRA_MINOR_VERSION 7) 3 | set(MAYAHYDRA_PATCH_LEVEL 2) 4 | -------------------------------------------------------------------------------- /doc/CLA/Hydra for Maya - Corp Contrib Agmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/CLA/Hydra for Maya - Corp Contrib Agmt.pdf -------------------------------------------------------------------------------- /doc/CLA/Hydra for Maya - Ind Contrib Agmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/CLA/Hydra for Maya - Ind Contrib Agmt.pdf -------------------------------------------------------------------------------- /doc/hydraSelectionDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/hydraSelectionDataSource.png -------------------------------------------------------------------------------- /doc/hydraSelectionHighlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/hydraSelectionHighlighting.png -------------------------------------------------------------------------------- /doc/hydraSelectionReprDisplayStyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/hydraSelectionReprDisplayStyle.png -------------------------------------------------------------------------------- /doc/images/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/al.png -------------------------------------------------------------------------------- /doc/images/fvpMergingSceneIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/fvpMergingSceneIndex.png -------------------------------------------------------------------------------- /doc/images/instanceSelectionHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/instanceSelectionHighlight.png -------------------------------------------------------------------------------- /doc/images/instanceTranslations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/instanceTranslations.png -------------------------------------------------------------------------------- /doc/images/instancedBy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/instancedBy.png -------------------------------------------------------------------------------- /doc/images/instancerTopology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/instancerTopology.png -------------------------------------------------------------------------------- /doc/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/linux.png -------------------------------------------------------------------------------- /doc/images/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/mac.png -------------------------------------------------------------------------------- /doc/images/pointInstancerSelectionHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/pointInstancerSelectionHighlight.png -------------------------------------------------------------------------------- /doc/images/prototypeSelectionHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/prototypeSelectionHighlight.png -------------------------------------------------------------------------------- /doc/images/pxr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/pxr.png -------------------------------------------------------------------------------- /doc/images/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/doc/images/windows.png -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(mayaHydra) 2 | add_subdirectory(flowViewport) 3 | -------------------------------------------------------------------------------- /lib/adskHydraSceneBrowser/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(lib) 2 | if (BUILD_TESTS) 3 | add_subdirectory(test) 4 | endif() 5 | -------------------------------------------------------------------------------- /lib/flowViewport/usdPlugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(shadersDiscoveryPlugin) 2 | -------------------------------------------------------------------------------- /lib/mayaHydra/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(mayaPlugin) 2 | add_subdirectory(hydraExtensions) 3 | add_subdirectory(ufeExtensions) 4 | add_subdirectory(flowViewportAPIExamples) -------------------------------------------------------------------------------- /lib/mayaHydra/flowViewportAPIExamples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(flowViewportAPILocator) 2 | add_subdirectory(footPrintNode) 3 | add_subdirectory(customShadersNode) 4 | -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(lib) 2 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(render) -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(mayaToHydra) 2 | 3 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ArnoldLightsTest/aiAreaLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ArnoldLightsTest/aiAreaLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ArnoldLightsTest/allLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ArnoldLightsTest/allLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_black.jpg -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_blue.jpg -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_gray.jpg -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_green.jpg -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_red.jpg -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BackgroundColorTest/background_white.jpg -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/flat_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/flat_orange.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/flat_orange_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/flat_orange_bad.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/lambert/cube_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/lambert/cube_selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/lambert/cube_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/lambert/cube_unselected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/standardSurface/cube_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/standardSurface/cube_selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/standardSurface/cube_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BasicRenderTest/standardSurface/cube_unselected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BoundingBoxTest/boundingBox_extents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BoundingBoxTest/boundingBox_extents.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/BoundingBoxTest/boundingBox_no_extents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/BoundingBoxTest/boundingBox_no_extents.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_basic.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_bezier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_bezier.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_customKnots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_customKnots.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_degree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_degree1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_degree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_degree2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_degree5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveControlVertices_degree5.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_basic.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_bezier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_bezier.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_degree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_degree1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_degree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_degree2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_degree5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/curveEditPoints_degree5.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/threePointCircularArc_cubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/threePointCircularArc_cubic.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/threePointCircularArc_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/threePointCircularArc_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/threePointCircularArc_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/threePointCircularArc_linear.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_cubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_cubic.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_linear.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_toggleArc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CurveToolsTest/twoPointCircularArc_toggleArc.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CustomShadersNodeTest/testCustomShadersNodeDefaultLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CustomShadersNodeTest/testCustomShadersNodeDefaultLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CustomShadersNodeTest/testCustomShadersNodeDomeLightOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CustomShadersNodeTest/testCustomShadersNodeDomeLightOnly.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/CustomShadersNodeTest/testCustomShadersNodeUseAllLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/CustomShadersNodeTest/testCustomShadersNodeUseAllLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_0.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_12.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_123.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_1234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_1234.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_123456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_123456.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_1235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_1235.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/lambert/instances_35.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_0.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_12.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_123.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_1234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_1234.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_123456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_123456.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_1235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_1235.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DagChangesTest/standardSurface/instances_35.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_AllSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_AllSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_BoundingBox_AllSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_BoundingBox_AllSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_WireOnShaded_AllSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_WireOnShaded_AllSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_Wire_AllSelInStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_Wire_AllSelInStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_Wireframe_AllSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/Storm_Wireframe_AllSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/VP2_AllSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/VP2_AllSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/selectMayaUsdNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/selectMayaUsdNode.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_0_NoSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_0_NoSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_1_S1Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_1_S1Selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_2_S2Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_2_S2Selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_3_TSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_3_TSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_4_PSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_4_PSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_5_PRemoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_5_PRemoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_6_S1Removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/smoothShaded/Storm_6_S1Removed.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_0_NoSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_0_NoSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_1_S1Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_1_S1Selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_2_S2Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_2_S2Selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_3_TSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_3_TSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_4_PSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_4_PSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_5_PRemoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_5_PRemoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_6_S1Removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframe/Storm_6_S1Removed.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_0_NoSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_0_NoSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_1_S1Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_1_S1Selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_2_S2Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_2_S2Selected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_3_TSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_3_TSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_4_PSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_4_PSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_5_PRemoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_5_PRemoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_6_S1Removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/DataProducerSelHighlightTest/wireframeOnShaded/Storm_6_S1Removed.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_parentTransformChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_parentTransformChanged.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_shapeTransformChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_shapeTransformChanged.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_visibility_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_visibility_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_visibility_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/authoring_locator_visibility_on.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/locator_playback_hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/locator_playback_hidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/locator_playback_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/locator_playback_initial.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/locator_playback_translated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/locator_playback_translated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t0.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t10.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t12.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t15.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t5.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStageAnimatedPrim_t7.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_parentTransformChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_parentTransformChanged.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_playback_hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_playback_hidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_playback_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_playback_initial.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_playback_translated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_playback_translated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_shapeTransformChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_shapeTransformChanged.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_visibility_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_visibility_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_visibility_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowPluginsHierarchicalPropertiesTest/usdStage_visibility_on.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeCreated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeCreated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeleted.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeletedRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeletedRedo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeletedUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeletedUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeletedUndoAgain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeDeletedUndoAgain.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeHidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeHidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeMoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeMoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeMovedAfterDeletionAndUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeMovedAfterDeletionAndUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeUnhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_NodeUnhidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/add_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_AfterModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_AfterModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_BeforeModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_BeforeModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_WithInstancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_WithInstancing.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_WithInstancingModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/cubeGrid_WithInstancingModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeCreated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeCreated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeDeleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeDeleted.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeDeletedRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeDeletedRedo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeDeletedUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeDeletedUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeHidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeHidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeMoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeMoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeUnhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_NodeUnhidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_SphereFiltered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_SphereFiltered.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_SphereFilteredAgain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_SphereFilteredAgain.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_SphereUnFiltered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_SphereUnFiltered.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_VP2AndThenBackToStorm_MovedSphereUnFiltered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/filter_VP2AndThenBackToStorm_MovedSphereUnFiltered.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_locator_visibility_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_locator_visibility_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_locator_visibility_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_locator_visibility_on.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_parentTransformChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_parentTransformChanged.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_shapeTransformChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_shapeTransformChanged.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_visibility_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_visibility_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_visibility_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/hierarchicalProperties_usdStage_visibility_on.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_AfterModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_AfterModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_AfterModifsRemoveInstancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_AfterModifsRemoveInstancing.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_BeforeModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_BeforeModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_Node1Hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_Node1Hidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_Node1Unhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_Node1Unhidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleNodes_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2AndThenBackToStorm_modPan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2AndThenBackToStorm_modPan2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2AndThenBackToStorm_modPan4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2AndThenBackToStorm_modPan4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2_modPan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2_modPan2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2_modPan4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_VP2_modPan4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereFiltered_viewPanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereFiltered_viewPanel2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereFiltered_viewPanel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereFiltered_viewPanel4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereUnfiltered_viewPanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereUnfiltered_viewPanel2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereUnfiltered_viewPanel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_sphereUnfiltered_viewPanel4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_viewPanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_viewPanel2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_viewPanel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/multipleViewports_viewPanel4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/usd_2411+/filter_VP2AndThenBackToStorm_MovedSphereUnFiltered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FlowViewportAPITest/usd_2411+/filter_VP2AndThenBackToStorm_MovedSphereUnFiltered.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeCreated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeCreated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeleted.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeletedRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeletedRedo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeletedUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeletedUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeletedUndoAgain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeDeletedUndoAgain.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeHidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeHidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeMoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeMoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeMovedAfterDeletionAndUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeMovedAfterDeletionAndUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeUnhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_NodeUnhidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/add_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/footPrint_AfterModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/footPrint_AfterModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/footPrint_BeforeModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/footPrint_BeforeModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/footPrint_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/footPrint_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/loadingFootPrintScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/loadingFootPrintScene.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_AfterModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_AfterModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_BeforeModifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_BeforeModifs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_Node1Hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_Node1Hidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_Node1Unhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_Node1Unhidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleNodes_VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2AndThenBackToStorm_modPan3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2AndThenBackToStorm_modPan3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2AndThenBackToStorm_modPan4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2AndThenBackToStorm_modPan4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2_modPan3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2_modPan3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2_modPan4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_VP2_modPan4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_viewPanel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_viewPanel1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_viewPanel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/multipleViewports_viewPanel4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/selectionHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/selectionHighlight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/usd_2411+/loadingFootPrintScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/FootPrintNodeTest/usd_2411+/loadingFootPrintScene.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/displacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/displacement.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/geomSubsetThenMeshSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/geomSubsetThenMeshSelection.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/instancedGeomSubsetHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/instancedGeomSubsetHighlight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/simpleGeomSubsetHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/simpleGeomSubsetHighlight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/wireframeColorChange_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/wireframeColorChange_after.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/wireframeColorChange_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GeomSubsetsWireframeHighlightTest/wireframeColorChange_before.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GridTest/grid_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GridTest/grid_disabled.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/GridTest/grid_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/GridTest/grid_enabled.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/colored_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/colored_stripes.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/colored_stripes_one_pixel_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/colored_stripes_one_pixel_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/colored_stripes_slight_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/colored_stripes_slight_noise.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/cube_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/cube_scene.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/cube_scene_one_pixel_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/cube_scene_one_pixel_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/cube_scene_slight_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ImageDiffingTest/cube_scene_slight_noise.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/IsolateSelectWithUsdLightingTest/isolateSelectWithUsdLighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/IsolateSelectWithUsdLightingTest/isolateSelectWithUsdLighting.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/lookThroughAreaLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/lookThroughAreaLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/lookThroughCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/lookThroughCamera.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/lookThroughSpotLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/LookThroughTest/lookThroughSpotLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/LookdevxUpdateTest/lookdevXAfterUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/LookdevxUpdateTest/lookdevXAfterUpdate.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/LookdevxUpdateTest/lookdevXBeforeUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/LookdevxUpdateTest/lookdevXBeforeUpdate.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MaterialXOnNativeTest/RedMtlxSphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MaterialXOnNativeTest/RedMtlxSphere.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/face236SelStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/face236SelStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/facesSelStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/facesSelStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/facesSelVP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/facesSelVP2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/selectionWithLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/selectionWithLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/smoothwireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaComponentsPickingTest/smoothwireframe.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/defaultMaterial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/defaultMaterial.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/defaultMaterialGeomSubsetUsdPrims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/defaultMaterialGeomSubsetUsdPrims.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/defaultMaterialUsdPrims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/defaultMaterialUsdPrims.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/sceneLoaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/sceneLoaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/usd_2411+/sceneLoaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDefaultMaterialTest/usd_2411+/sceneLoaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/allLayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/allLayers.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/coneLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/coneLayer.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/coneLayerCustomWireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/coneLayerCustomWireframe.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerReference.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerReferenceSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerReferenceSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerTemplate.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerTemplateSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayLayersTest/layerTemplateSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allData_BBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allData_BBox.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allData_Wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allData_Wireframe.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allData_WireframeOnShaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allData_WireframeOnShaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/allLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/defaultDisplayModeFromScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/defaultDisplayModeFromScene.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/defaultMaterial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/defaultMaterial.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/displayTextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/displayTextures.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/shadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/shadows.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/smoothShaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/smoothShaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/wireframeOnShaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/wireframeOnShaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/xray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaDisplayModesTest/xray.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaIsolateSelectTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaIsolateSelectTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaIsolateSelectTest/isolateSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaIsolateSelectTest/isolateSelect.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/allLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/allLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/areaLightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/areaLightSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/defaultLighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/defaultLighting.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/dirLightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/dirLightSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/domeLightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/domeLightSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/noLighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/noLighting.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/pointLightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/pointLightSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/selLights_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/selLights_None.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/someLightsSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/someLightsSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/sphereLightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/sphereLightSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/spotLightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightingModesTest/spotLightSelected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/allLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/allLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/allLights_shadowOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/allLights_shadowOn.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/defaultLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/defaultLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/defaultLight_shadowOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/defaultLight_shadowOn.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/directionalLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/directionalLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/directionalLight_shadowOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/directionalLight_shadowOn.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/noLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/noLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/pointLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/pointLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/spotLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/spotLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/spotLight_shadowOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaLightsTest/spotLight_shadowOn.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaReferenceTest/editMayaReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaReferenceTest/editMayaReference.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaReferenceTest/loadMayaReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaReferenceTest/loadMayaReference.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaReferenceTest/unloadMayaReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaReferenceTest/unloadMayaReference.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/boundingBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/boundingBox.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/flatShaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/flatShaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/smoothwireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/smoothwireframe.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/smoothwireframeonshaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/smoothwireframeonshaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/xray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaShadingModesTest/xray.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI_DirectionalLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI_DirectionalLight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI_TransformMoved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI_TransformMoved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeleted.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeletedRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeletedRedo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeletedUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeletedUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeletedUndoAgain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeDeletedUndoAgain.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeHidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeHidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeMovedAfterDeletionAndUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeMovedAfterDeletionAndUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeUnhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__NodeUnhidden.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__VP2AndThenBackToStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MayaUsdAPIUsageTest/mayaUsdAPI__VP2AndThenBackToStorm.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/meshSelection_direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/meshSelection_direct.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/meshSelection_parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/meshSelection_parent.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/wireframeColorChange_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/wireframeColorChange_after.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/wireframeColorChange_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/MeshWireframeHighlightTest/wireframeColorChange_before.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/displaced_instanceSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/displaced_instanceSelection.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/displaced_prototypeSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/displaced_prototypeSelection.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceSelection_direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceSelection_direct.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceSelection_parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceSelection_parent.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceWireframeColorChange_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceWireframeColorChange_after.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceWireframeColorChange_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/instanceWireframeColorChange_before.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/prototypeSelection_baseCube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/prototypeSelection_baseCube.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/prototypeSelection_topCube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/prototypeSelection_topCube.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/prototypeWireframeColorChange_firstBaseCubeItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NativeInstancingWireframeHighlightTest/prototypeWireframeColorChange_firstBaseCubeItem.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_tolerance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_tolerance.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_unfixedCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/circle_unfixedCenter.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/cube_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/cube_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/cube_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/cube_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/square_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/square_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/square_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/square_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/torus_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/torus_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/torus_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/torus_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/torus_tolerance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/NurbsPrimitivesTest/torus_tolerance.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ObjectTemplateTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ObjectTemplateTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ObjectTemplateTest/templateOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ObjectTemplateTest/templateOn.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ObjectTemplateTest/templateOnSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ObjectTemplateTest/templateOnSelection.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/RenderItemHasCullModeAPI/coatColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/RenderItemHasCullModeAPI/coatColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/RenderItemHasCullModeAPI/coatWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/RenderItemHasCullModeAPI/coatWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/baseColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/baseWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/baseWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/coatColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/coatColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/coatWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/coatWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/default_noTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/default_noTexture.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/emissionColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/emissionColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/emissionLuminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/emissionLuminance.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/geometryOpacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/geometryOpacity.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/metalness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/metalness.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularIOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularIOR.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularRoughness.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/specularWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/transmissionWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/OpenPBRSurfaceTest/transmissionWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PassingNormalsOnMayaNativeTest/importedAssetsNormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PassingNormalsOnMayaNativeTest/importedAssetsNormals.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_fourthInstancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_fourthInstancer.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_secondInstancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_secondInstancer.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_thirdInstancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_thirdInstancer.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_topInstancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/directSelection_topInstancer.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/instanceWireframeColorChange_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/instanceWireframeColorChange_after.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/instanceWireframeColorChange_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/instanceWireframeColorChange_before.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/parentSelection_topInstancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/parentSelection_topInstancer.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/pointInstancerWireframeColorChange_5.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototypeWireframeColorChange_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototypeWireframeColorChange_after.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototypeWireframeColorChange_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototypeWireframeColorChange_before.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototype_directSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototype_directSelection.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototype_parentSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/prototype_parentSelection.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/rootSelection_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/rootSelection_all.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/secondInstancerSecondInstance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/secondInstancerSecondInstance.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/topInstancerFirstInstance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PointInstancingWireframeHighlightTest/topInstancerFirstInstance.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/RenderItemHasCullModeAPI/sphericalHarmonics_helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/RenderItemHasCullModeAPI/sphericalHarmonics_helix.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/RenderItemHasCullModeAPI/ultra_helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/RenderItemHasCullModeAPI/ultra_helix.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cube_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cube_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cube_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cube_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_roundCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_roundCap.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_roundCapHeightCompensation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/cylinder_roundCapHeightCompensation.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_caps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_caps.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_circle.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_pie.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_quads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_quads.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/disc_subdivision_triangles.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/gear_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/gear_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/gear_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/gear_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_clockwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_clockwise.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_roundCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/helix_roundCap.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_roundCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_roundCap.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_roundCapHeightCompensation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pipe_roundCapHeightCompensation.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_cube_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_cube_triangles.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_dodecahedron_caps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_dodecahedron_caps.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_icosahedron_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_icosahedron_triangles.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_octahedron_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_octahedron_pie.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_tetrahedron_quads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/platonic_tetrahedron_quads.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/prism_5sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/prism_5sides.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/prism_8sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/prism_8sides.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/prism_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/prism_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_3sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_3sides.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_4sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_4sides.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_5sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_5sides.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/pyramid_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/soccerball_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/soccerball_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/soccerball_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/soccerball_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/sphericalHarmonics_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/sphericalHarmonics_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/sphericalHarmonics_helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/sphericalHarmonics_helix.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/sphericalHarmonics_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/sphericalHarmonics_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_helix.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_mirror.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/superEllipse_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/torus_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/torus_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/torus_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/torus_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/ultra_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/ultra_fresh.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/ultra_helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/ultra_helix.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/ultra_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/PolygonPrimitivesTest/ultra_modified.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_0.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/basisCurves_refined_3.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/usd_cube_refined_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/usd_cube_refined_0.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/usd_cube_refined_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/usd_cube_refined_2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/RefinementTest/usd_cube_refined_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/RefinementTest/usd_cube_refined_4.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel_Cyl_Inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel_Cyl_Inst.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel_Cyl_Spher_Inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel_Cyl_Spher_Inst.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel_Spher_Inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/cylSel_Spher_Inst.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel_Cyl_Inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel_Cyl_Inst.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel_Cyl_Spher_Inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel_Cyl_Spher_Inst.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel_Spher_Inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageInstanceablePrimsSelHighlightTest/spherSel_Spher_Inst.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeLoadWithDescendants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeLoadWithDescendants.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeLoaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeLoaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeUnloaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeUnloaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeUnloadedRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeUnloadedRedo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeUnloadedUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/cubeUnloadedUndo.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/initialState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/initialState.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/payloadSceneLoadedPotA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/payloadSceneLoadedPotA.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/payloadSceneLoadedPotB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/payloadSceneLoadedPotB.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/referencesSceneCreated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/referencesSceneCreated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/referencesSceneLoaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StagePayloadsReferencesTest/referencesSceneLoaded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/oneCube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/oneCube.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/oneCubeInstanceable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/oneCubeInstanceable.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/threeCubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/threeCubes.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/threeCubesInstanceable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/threeCubesInstanceable.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/threeCubesWithDisplacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/threeCubesWithDisplacement.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/twoCubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/twoCubes.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/twoCubesInstanceable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StageVariantsTest/twoCubesInstanceable.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/baseColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/baseWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/baseWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/coatColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/coatColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/coatWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/coatWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/default.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/default_noTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/default_noTexture.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/emissionColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/emissionColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/emissionWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/emissionWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/geometryOpacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/geometryOpacity.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/metalness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/metalness.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularColor.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularIOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularIOR.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularRoughness.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/specularWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/transmissionWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/StandardSurfaceTest/transmissionWeight.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_parent_moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_parent_moved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_parent_moved_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_parent_moved_rotated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_parent_moved_rotated_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_parent_moved_rotated_scaled.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_scaled.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_scaled_moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_scaled_moved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_scaled_moved_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_scaled_moved_rotated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_untransformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/cube_untransformed.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_parent_moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_parent_moved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_parent_moved_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_parent_moved_rotated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_parent_moved_rotated_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_parent_moved_rotated_scaled.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_scaled.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_scaled_moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_scaled_moved.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_scaled_moved_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_scaled_moved_rotated.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_untransformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/TransformsTest/usd_cube_untransformed.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/USDLightsTest/allLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/USDLightsTest/allLights.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UVandUDIMTest/quads_with_HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UVandUDIMTest/quads_with_HDR.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UVandUDIMTest/quads_with_UDIMs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UVandUDIMTest/quads_with_UDIMs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UVandUDIMTest/quads_with_UVs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UVandUDIMTest/quads_with_UVs.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UsdInheritsSpecializesTest/inherits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UsdInheritsSpecializesTest/inherits.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UsdStageDefaultLightingTest/usdStageDefaultLighting_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UsdStageDefaultLightingTest/usdStageDefaultLighting_1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UsdStageDefaultLightingTest/usdStageDefaultLighting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UsdStageDefaultLightingTest/usdStageDefaultLighting_2.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UsdTextureToggleTest/usd_texture_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UsdTextureToggleTest/usd_texture_off.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/UsdTextureToggleTest/usd_texture_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/UsdTextureToggleTest/usd_texture_on.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_USD_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_USD_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_USD_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_USD_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/cameras_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/controllers_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/controllers_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/controllers_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/controllers_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/deformers_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/deformers_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/deformers_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/deformers_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/dimensions_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/dimensions_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/dimensions_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/dimensions_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/ikHandles_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/ikHandles_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/ikHandles_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/ikHandles_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/image_planes_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/image_planes_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/image_planes_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/image_planes_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/joints_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/joints_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/joints_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/joints_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_USD_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_USD_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_USD_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_USD_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_USD_included_ufe_fl9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_USD_included_ufe_fl9.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/lights_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/locators_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/locators_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/locators_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/locators_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/motion_trails_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/motion_trails_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/motion_trails_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/motion_trails_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsCurves_USD_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsCurves_USD_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsCurves_USD_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsCurves_USD_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsPatches_USD_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsPatches_USD_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsPatches_USD_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbsPatches_USD_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_curves_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_curves_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_curves_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_curves_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_hull_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_hull_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_hull_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_hull_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_surfaces_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_surfaces_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_surfaces_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/nurbs_surfaces_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_DataProducer_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_DataProducer_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_DataProducer_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_DataProducer_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_USD_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_USD_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_USD_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_USD_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/polygons_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/strokes_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/strokes_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/strokes_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/strokes_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/subdivision_surfaces_excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/subdivision_surfaces_excluded.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/subdivision_surfaces_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/ViewportFiltersTest/subdivision_surfaces_included.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/VisibilityTest/cube_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/VisibilityTest/cube_unselected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/VisibilityTest/lambertDefaultMaterial/cube_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/VisibilityTest/lambertDefaultMaterial/cube_unselected.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/VisibilityTest/nothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/VisibilityTest/nothing.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/IsolateSelectTest/singleViewportIsolateSelectCylinder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/cpp/IsolateSelectTest/singleViewportIsolateSelectCylinder1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/IsolateSelectTest/usd_2411+/singleViewportIsolateSelectCylinder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/cpp/IsolateSelectTest/usd_2411+/singleViewportIsolateSelectCylinder1.png -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/circle_topology_modified.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_bottomnurbsSquareShape1_points_modified.txt: -------------------------------------------------------------------------------- 1 | [interpolation] 2 | vertex 3 | [primvarValue] 4 | [(2.74601, 4.15485, 6.98143), (2.66149, 4.57742, 6.72789), (2.57698, 5.00000, 6.47434), (2.49246, 5.42258, 6.22080), (2.40794, 5.84515, 5.96725)] 5 | [role] 6 | point 7 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_bottomnurbsSquareShape1_topology_fresh.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4, 4, 5] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_bottomnurbsSquareShape1_topology_modified.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_leftnurbsSquareShape1_points_modified.txt: -------------------------------------------------------------------------------- 1 | [interpolation] 2 | vertex 3 | [primvarValue] 4 | [(5.59206, 4.15485, 6.03275), (4.88054, 4.15485, 6.26992), (4.16903, 4.15485, 6.50709), (3.45752, 4.15485, 6.74426), (2.74601, 4.15485, 6.98143)] 5 | [role] 6 | point 7 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_leftnurbsSquareShape1_topology_fresh.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4, 4, 5] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_leftnurbsSquareShape1_topology_modified.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_rightnurbsSquareShape1_points_modified.txt: -------------------------------------------------------------------------------- 1 | [interpolation] 2 | vertex 3 | [primvarValue] 4 | [(2.40794, 5.84515, 5.96725), (3.11946, 5.84515, 5.73008), (3.83097, 5.84515, 5.49291), (4.54248, 5.84515, 5.25574), (5.25399, 5.84515, 5.01857)] 5 | [role] 6 | point 7 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_rightnurbsSquareShape1_topology_fresh.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4, 4, 5] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_rightnurbsSquareShape1_topology_modified.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_topnurbsSquareShape1_points_modified.txt: -------------------------------------------------------------------------------- 1 | [interpolation] 2 | vertex 3 | [primvarValue] 4 | [(5.25399, 5.84515, 5.01857), (5.33851, 5.42258, 5.27211), (5.42303, 5.00000, 5.52566), (5.50754, 4.57742, 5.77920), (5.59206, 4.15485, 6.03275)] 5 | [role] 6 | point 7 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_topnurbsSquareShape1_topology_fresh.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4, 4, 5] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/NurbsSurfacesTest/square_topnurbsSquareShape1_topology_modified.txt: -------------------------------------------------------------------------------- 1 | [basis] 2 | 3 | [curveIndices] 4 | [0, 1, 1, 2, 2, 3, 3, 4] 5 | [curveVertexCounts] 6 | [2, 2, 2, 2] 7 | [type] 8 | linear 9 | [wrap] 10 | segmented 11 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/mayaToHydra/cpp/WriteFileTest/stormOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/lib/mayaUsd/render/mayaToHydra/cpp/WriteFileTest/stormOutput.png -------------------------------------------------------------------------------- /test/testSamples/testArnoldLights/sky.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testArnoldLights/sky.hdr -------------------------------------------------------------------------------- /test/testSamples/testCustomShadersNode/UVChecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testCustomShadersNode/UVChecker.png -------------------------------------------------------------------------------- /test/testSamples/testDefaultMaterial/PoolBallFlat_animated.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testDefaultMaterial/PoolBallFlat_animated.usdz -------------------------------------------------------------------------------- /test/testSamples/testDefaultMaterial/diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testDefaultMaterial/diffuse.png -------------------------------------------------------------------------------- /test/testSamples/testIsolateSelectWithGeomSubset/rubiksCube/rubiksCube.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | def Xform "root" ( 4 | prepend references = @rubiksCube_A/rubiksCube_A.usda@ 5 | ) 6 | { 7 | } 8 | 9 | -------------------------------------------------------------------------------- /test/testSamples/testIsolateSelectWithGeomSubset/rubiksCube/rubiksCube_A/geo/rubiksCube_A_proxy.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testIsolateSelectWithGeomSubset/rubiksCube/rubiksCube_A/geo/rubiksCube_A_proxy.usd -------------------------------------------------------------------------------- /test/testSamples/testIsolateSelectWithGeomSubset/rubiksCube/rubiksCube_A/geo/rubiksCube_A_render.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testIsolateSelectWithGeomSubset/rubiksCube/rubiksCube_A/geo/rubiksCube_A_render.usd -------------------------------------------------------------------------------- /test/testSamples/testMayaDisplayModes/PoolBallFlat_animated.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testMayaDisplayModes/PoolBallFlat_animated.usdz -------------------------------------------------------------------------------- /test/testSamples/testMayaDisplayModes/diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testMayaDisplayModes/diffuse.png -------------------------------------------------------------------------------- /test/testSamples/testMayaLightingModes/AllKindOfLights.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testMayaLightingModes/AllKindOfLights.usd -------------------------------------------------------------------------------- /test/testSamples/testMayaLightingModes/UVChecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testMayaLightingModes/UVChecker.png -------------------------------------------------------------------------------- /test/testSamples/testMayaLightingModes/rubiksCube.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | 3 | def Xform "root" ( 4 | prepend references = @rubiksCube_A/rubiksCube_A.usda@ 5 | ) 6 | { 7 | } 8 | 9 | -------------------------------------------------------------------------------- /test/testSamples/testMayaLightingModes/rubiksCube_A/geo/rubiksCube_A_proxy.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testMayaLightingModes/rubiksCube_A/geo/rubiksCube_A_proxy.usd -------------------------------------------------------------------------------- /test/testSamples/testMayaLightingModes/rubiksCube_A/geo/rubiksCube_A_render.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testMayaLightingModes/rubiksCube_A/geo/rubiksCube_A_render.usd -------------------------------------------------------------------------------- /test/testSamples/testOpenPBRSurface/diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testOpenPBRSurface/diffuse.png -------------------------------------------------------------------------------- /test/testSamples/testPrimInstancing/instanceableCube.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | ( 3 | defaultPrim = "instanceableCube" 4 | ) 5 | 6 | def Xform "instanceableCube" ( 7 | instanceable = true 8 | prepend references = @cube.usda@ 9 | ) 10 | { 11 | } 12 | -------------------------------------------------------------------------------- /test/testSamples/testSelectPrimWithoutDataSource/red20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testSelectPrimWithoutDataSource/red20x20.png -------------------------------------------------------------------------------- /test/testSamples/testStagePayloadsReferences/FlowerPot.geom.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testStagePayloadsReferences/FlowerPot.geom.usd -------------------------------------------------------------------------------- /test/testSamples/testStagePayloadsReferences/FlowerPot_payload.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | ( 3 | defaultPrim = "FlowerPot" 4 | upAxis = "Y" 5 | ) 6 | 7 | def "FlowerPot" ( 8 | add references = @./FlowerPot.geom.usd@ 9 | ) 10 | { 11 | } 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/testSamples/testStandardSurface/diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testStandardSurface/diffuse.png -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/001.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/001.hdr -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/UdimTest_1001_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/UdimTest_1001_color.png -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/UdimTest_1002_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/UdimTest_1002_color.png -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/UdimTest_1003_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/UdimTest_1003_color.png -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/blue.png -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/green.png -------------------------------------------------------------------------------- /test/testSamples/testUVandUDIM/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUVandUDIM/red.png -------------------------------------------------------------------------------- /test/testSamples/testUsdStageDefaultLighting/ground_tex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUsdStageDefaultLighting/ground_tex.jpg -------------------------------------------------------------------------------- /test/testSamples/testUsdTextureToggle/ground_tex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testSamples/testUsdTextureToggle/ground_tex.jpg -------------------------------------------------------------------------------- /test/testUtils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testUtils/__init__.py -------------------------------------------------------------------------------- /test/testUtils/ufeScripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-hydra/aaeab99fda0616f57a9e4d0ed31de95f2b8be391/test/testUtils/ufeScripts/__init__.py -------------------------------------------------------------------------------- /tests-to-run.json: -------------------------------------------------------------------------------- 1 | { 2 | "files_to_include": [], 3 | "files_to_exclude": [], 4 | "plugins_to_include": [], 5 | "plugins_to_exclude": [], 6 | "platforms_to_exclude": ["osx"] 7 | } --------------------------------------------------------------------------------