├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── main.yml │ ├── main │ ├── installArnold.py │ ├── installDelight.py │ ├── installDependencies.py │ ├── limitDirectorySize.py │ ├── problemMatchers │ │ ├── sphinx.json │ │ ├── unittest.json │ │ └── validateRelease.json │ ├── sconsOptions │ └── setBuildVars.py │ └── whitespaceCheck.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Changes.md ├── LICENSE ├── README.md ├── SConstruct ├── apps ├── browser │ └── browser-1.py ├── cli │ └── cli-1.py ├── dispatch │ └── dispatch-1.py ├── env │ └── env-1.py ├── execute │ └── execute-1.py ├── gui │ └── gui-1.py ├── license │ └── license-1.py ├── op │ └── op-1.py ├── python │ └── python-1.py ├── screengrab │ └── screengrab-1.py ├── stats │ └── stats-1.py ├── test │ └── test-1.py └── view │ └── view-1.py ├── arnoldPlugins └── gaffer.mtd ├── bin ├── __gaffer.py ├── gaffer └── gaffer.cmd ├── config ├── brew │ └── Casks │ │ └── inkscape.rb ├── ie │ ├── installAll │ ├── options │ ├── postInstall │ └── publicRelease ├── installDependencies.sh ├── jh │ └── options ├── publishRelease.py └── validateRelease.py ├── contrib ├── arnold │ ├── arnoldBackwards52Defaults.mtd │ └── mtoa.mtd ├── bt │ └── startup │ │ └── gui │ │ ├── displays.py │ │ ├── exportRibs.py │ │ └── setupScreenGrabSession.py ├── cmake │ ├── CMakeLists.txt │ ├── cmake │ │ ├── FindAppleseed.cmake │ │ ├── FindArnold.cmake │ │ ├── FindCortex.cmake │ │ ├── FindIlmBase.cmake │ │ ├── FindOSL.cmake │ │ ├── FindOpenColorIO.cmake │ │ ├── FindOpenEXR.cmake │ │ ├── FindOpenImageIO.cmake │ │ ├── FindOpenVDB.cmake │ │ └── FindTBB.cmake │ └── readme.md ├── dd │ └── notes │ │ └── noodleShapes.svg ├── jh │ └── notes │ │ ├── docs.txt │ │ ├── geometryNotes.txt │ │ ├── notes.txt │ │ ├── serialisationIssues.txt │ │ ├── thingsToBreakBeforeVersion1.py │ │ └── todo.txt ├── openColorIOPandemonium │ ├── luts │ │ ├── generatePandemonium.py │ │ └── pandemoniumMatrix.spimtx │ └── pandemonium.ocio ├── ops │ └── convertAnimCache.py ├── scripts │ ├── 3delightOutputs.py │ ├── buildCompileCommands.py │ ├── cleanGraphicsSVG.py │ ├── graphPerformanceResults.py │ ├── qt5.py │ ├── qt5Check.py │ └── runTestsForCommits.py ├── startup │ └── gui │ │ └── layoutCompatibility.py └── statsPostLoadScripts │ └── setPathsToPathFilters.py ├── doc ├── .gitignore ├── examples │ ├── boxBasics.gfr │ ├── compositing │ │ ├── OSLImageProcessing.gfr │ │ └── contactSheet.gfr │ ├── lighting │ │ ├── blockers.gfr │ │ ├── lightLinkingBasicsArnold.gfr │ │ └── lightLinkingCityAttackArnold.gfr │ ├── references │ │ ├── macbethTexture.grf │ │ └── macbethTexture.png │ ├── rendering │ │ ├── anamorphicCameraSetup.gfr │ │ ├── macbethChart.gfr │ │ ├── multiShotRenderSpreadsheet.gfr │ │ ├── perLocationLightTweakSpreadsheet.gfr │ │ ├── perLocationShaderVariationArnold.gfr │ │ ├── sphericalCameraSetupArnold.gfr │ │ ├── traceSetsArnold.gfr │ │ └── wedgeTests.gfr │ └── sceneProcessing │ │ ├── OSLMeshManipulation.gfr │ │ └── perLocationTransformSpreadsheet.gfr ├── references │ ├── arrow.grf │ ├── highlightArea.grf │ ├── rectangleDashed.grf │ └── textHeading.grf ├── source │ ├── .gitignore │ ├── Appendices │ │ ├── License │ │ │ ├── .gitignore │ │ │ └── generate.py │ │ └── index.md │ ├── GettingStarted │ │ ├── ConfiguringGafferForThirdPartyTools │ │ │ └── index.md │ │ ├── InstallingGaffer │ │ │ └── index.md │ │ ├── LaunchingGafferFirstTime │ │ │ └── index.md │ │ ├── SettingUpGafferCommand │ │ │ └── index.md │ │ ├── TutorialAssemblingTheGafferBot │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── images │ │ │ │ ├── editorFocusMenuFocusNode.png │ │ │ │ └── viewerPinned.png │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── firstLight.gfr │ │ │ │ ├── firstShaderAssignment.gfr │ │ │ │ ├── renderSettings.gfr │ │ │ │ ├── renderSettingsWithGap.gfr │ │ │ │ ├── secondShaderAssignment.gfr │ │ │ │ ├── secondShaderAssignmentFiltered.gfr │ │ │ │ └── textures.gfr │ │ └── index.md │ ├── Interface │ │ ├── ControlsAndShortcuts │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── images │ │ │ │ └── editorFocusMenuNodeSelection.png │ │ │ └── index.md │ │ └── index.md │ ├── Reference │ │ ├── CommandLineReference │ │ │ ├── .gitignore │ │ │ └── generate.py │ │ ├── ContextVariables │ │ │ └── index.md │ │ ├── NodeReference │ │ │ ├── .gitignore │ │ │ └── generate.py │ │ ├── ScriptingReference │ │ │ ├── CommonOperations │ │ │ │ └── index.md │ │ │ ├── Expressions │ │ │ │ └── index.md │ │ │ ├── Metadata │ │ │ │ └── index.md │ │ │ ├── SetExpressions │ │ │ │ └── index.md │ │ │ ├── StringSubstitutionSyntax │ │ │ │ └── index.md │ │ │ └── index.md │ │ └── index.md │ ├── ReleaseNotes │ │ ├── .gitignore │ │ └── generate.py │ ├── WorkingWithImages │ │ ├── AnatomyOfAnImage │ │ │ ├── images │ │ │ │ ├── gafferImageCoordinates.png │ │ │ │ ├── gafferImageCoordinates.svg │ │ │ │ ├── gafferImageWindows.png │ │ │ │ └── gafferImageWindows.svg │ │ │ └── index.md │ │ └── index.md │ ├── WorkingWithScenes │ │ ├── AnatomyOfACamera │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ ├── illustrationApertureOffset.png │ │ │ │ ├── illustrationApertureOffset.svg │ │ │ │ ├── illustrationCameraDataFlow.png │ │ │ │ ├── illustrationCameraDataFlow.svg │ │ │ │ ├── illustrationCamerasRealCG.png │ │ │ │ ├── illustrationCamerasRealCG.svg │ │ │ │ ├── illustrationDepthOfField.png │ │ │ │ ├── illustrationDepthOfField.svg │ │ │ │ ├── illustrationPerspectiveOrthographic.png │ │ │ │ └── illustrationPerspectiveOrthographic.svg │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── illustrationCameraDataFlow.gfr │ │ │ │ └── illustrationPerspectiveOrthographic.gfr │ │ ├── AnatomyOfAScene │ │ │ ├── .gitignore │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ ├── Camera │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── images │ │ │ │ ├── exampleSphericalCameraSetupArnold.png │ │ │ │ ├── interfaceCameraNode.png │ │ │ │ ├── interfaceCameraTweaksNode.png │ │ │ │ ├── interfaceFrameOverlay.png │ │ │ │ ├── interfaceFrameOverlay.svg │ │ │ │ ├── taskAdjustApertureOffset.gif │ │ │ │ ├── taskCameraToolLookThroughCamera.gif │ │ │ │ ├── taskCameraTweaksPlugs.png │ │ │ │ ├── taskCameraTweaksPlugs.svg │ │ │ │ ├── taskOrbitLookThroughCamera.gif │ │ │ │ ├── taskSelectLookThroughCamera.gif │ │ │ │ └── taskSelectTranslateRotateCamera.gif │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── renderDepthOfFieldBlur.gfr │ │ │ │ ├── taskCameraApertureFocalLengthPlugs_edit.gfr │ │ │ │ ├── taskCameraCustomAperturePlugs_edit.gfr │ │ │ │ ├── taskCameraFOVPlugs_edit.gfr │ │ │ │ ├── taskSelectLookThroughCamera.gfr │ │ │ │ └── taskStandardOptionsDepthOfFieldPlug_edit.gfr │ │ ├── LightLinking │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ ├── exampleGaffyAttacksResults.png │ │ │ │ ├── exampleGaffyAttacksScene.png │ │ │ │ ├── exampleLightLinkingBasics.png │ │ │ │ ├── exampleLightLinkingCityAttack.png │ │ │ │ ├── illustrationLightLinking.png │ │ │ │ ├── illustrationLightLinking.svg │ │ │ │ ├── illustrationLightLinkingMultipleSets.png │ │ │ │ └── illustrationLightLinkingMultipleSets.svg │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ └── index.md │ ├── WorkingWithTheNodeGraph │ │ ├── Box │ │ │ └── images │ │ │ │ └── interfaceUIEditor.png │ │ ├── BoxNode │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── images │ │ │ │ ├── illustrationBoxBasics.png │ │ │ │ ├── illustrationBoxInBoxOutNodes.png │ │ │ │ ├── illustrationBoxInBoxOutNodes.svg │ │ │ │ ├── illustrationBoxNesting.png │ │ │ │ ├── illustrationBoxReferences.png │ │ │ │ ├── illustrationBoxReferences.svg │ │ │ │ ├── illustrationBoxUses.png │ │ │ │ ├── illustrationPromotedPlug.png │ │ │ │ ├── illustrationPromotedPlug.svg │ │ │ │ ├── interfacePassthroughPlug.png │ │ │ │ ├── taskAdjustPlugPosition.gif │ │ │ │ ├── taskBoxUpNodes.gif │ │ │ │ ├── taskBoxUpNodesResult.png │ │ │ │ ├── taskConnectBox.gif │ │ │ │ ├── taskConnectBoxAlt.gif │ │ │ │ ├── taskConnectPassthroughPlug.gif │ │ │ │ ├── taskDemotePlug.gif │ │ │ │ └── taskPromotePlug.gif │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── illustrationBoxBasics.gfr │ │ │ │ ├── illustrationBoxNesting.gfr │ │ │ │ ├── illustrationBoxReferences.gfr │ │ │ │ ├── illustrationBoxUses1.gfr │ │ │ │ ├── illustrationBoxUses2.gfr │ │ │ │ ├── illustrationBoxUses3.gfr │ │ │ │ ├── taskAdjustPlugPosition.gfr │ │ │ │ ├── taskBoxUpNodesAfter.gfr │ │ │ │ ├── taskBoxUpNodesBefore.gfr │ │ │ │ ├── taskConnectBox.gfr │ │ │ │ ├── taskConnectPassthroughPlug.gfr │ │ │ │ ├── taskDemotePlug.gfr │ │ │ │ └── taskPromotePlug.gfr │ │ ├── Contexts │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ ├── illustrationContextsFlow.png │ │ │ │ ├── illustrationContextsFlow.svg │ │ │ │ ├── illustrationContextsSlices.png │ │ │ │ └── illustrationContextsSlices.svg │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── conceptContextsContextVariablesInExpressions.gfr │ │ │ │ ├── conceptContextsInParallelBranches.gfr │ │ │ │ └── conceptContextsInParallelBranchesDownstream.gfr │ │ ├── PerformanceBestPractices │ │ │ ├── .gitignore │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── conceptPerformanceBestPracticesContexts.gfr │ │ │ │ ├── groupFirst.gfr │ │ │ │ └── groupSecond.gfr │ │ ├── SpreadsheetNode │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── images │ │ │ │ ├── illustrationSpreadsheetNodePerLocationGeneral.png │ │ │ │ ├── illustrationSpreadsheetNodePerLocationGeneral.svg │ │ │ │ ├── illustrationSpreadsheetNodePerLocationSpecific.png │ │ │ │ └── illustrationSpreadsheetNodePerLocationSpecific.svg │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── interfaceSpreadsheetNodeAuxiliaryConnections.gfr │ │ │ │ ├── interfaceSpreadsheetNodeBreakdown_edit.gfr │ │ │ │ ├── interfaceSpreadsheetNodeColumnSections.gfr │ │ │ │ ├── interfaceSpreadsheetNodeColumnSections_edit.gfr │ │ │ │ ├── interfaceSpreadsheetNodeCompoundEnabledSwitch.gfr │ │ │ │ ├── interfaceSpreadsheetNodeCompoundEnabledSwitch_edit.gfr │ │ │ │ ├── interfaceSpreadsheetNodeDisabledCell_edit.gfr │ │ │ │ ├── interfaceSpreadsheetNodeInterface.gfr │ │ │ │ ├── interfaceSpreadsheetNodePatternWidths_edit.gfr │ │ │ │ ├── interfaceSpreadsheetNodeRenderNetwork.gfr │ │ │ │ ├── interfaceSpreadsheetNodeRenderNetwork_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeAddPlugBasic_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeAddPlugCompound_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeAddPlugTweak_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeAddPlugVectorSingle_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeAddPlugVectorWhole_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeReorderColumn_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeReorderSection_edit.gfr │ │ │ │ ├── taskSpreadsheetNodeResizeColumnAutomatic_edit.gfr │ │ │ │ └── taskSpreadsheetNodeResizeColumnManual_edit.gfr │ │ ├── TutorialSettingUpASpreadsheet │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ ├── TutorialUsingTheOSLCodeNode │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ ├── UsingThePerformanceMonitor │ │ │ ├── .gitignore │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ └── index.md │ ├── WorkingWithThePythonScriptingAPI │ │ ├── ThePythonEditor │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── images │ │ │ │ └── taskAccessingElementsPythonEditor.gif │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ ├── TutorialNodeGraphEditingInPython │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ └── tutorialPreview.gfr │ │ ├── TutorialQueryingAScene │ │ │ └── index.md │ │ ├── TutorialStartupConfig1 │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ └── tutorialVariableSubstitutionInStringPlug_edit.gfr │ │ ├── TutorialStartupConfig2 │ │ │ ├── .gitignore │ │ │ ├── generate.sh │ │ │ ├── index.md │ │ │ ├── screengrab.py │ │ │ └── scripts │ │ │ │ ├── tutorialBookmarks_edit.gfr │ │ │ │ ├── tutorialDefaultBookmark_edit.gfr │ │ │ │ └── tutorialDefaultImageNodeBookmark_edit.gfr │ │ ├── TutorialStartupConfig3 │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ ├── tutorialMacbethTextureNode.png │ │ │ │ └── tutorialNodeMenuCustomEntry.png │ │ │ ├── index.md │ │ │ └── screengrab.py │ │ └── index.md │ ├── _static │ │ ├── .gitignore │ │ ├── favicon.ico │ │ ├── gaffer.css │ │ ├── normalize.css │ │ └── scrollspy.js │ ├── conf.py │ ├── gafferVars.py │ ├── generate.sh │ └── index.md └── startup │ └── gui │ └── lut.py ├── glsl ├── Constant.frag ├── FacingRatio.frag └── Texture.frag ├── include ├── Gaffer │ ├── Action.h │ ├── Animation.h │ ├── ApplicationRoot.h │ ├── ArrayPlug.h │ ├── Backdrop.h │ ├── BackgroundTask.h │ ├── Box.h │ ├── BoxIO.h │ ├── BoxIO.inl │ ├── BoxIn.h │ ├── BoxOut.h │ ├── BoxOut.inl │ ├── BoxPlug.h │ ├── ChildSet.h │ ├── Collect.h │ ├── CompoundDataPlug.h │ ├── CompoundNumericPlug.h │ ├── CompoundPathFilter.h │ ├── ComputeNode.h │ ├── Container.h │ ├── Container.inl │ ├── Context.h │ ├── Context.inl │ ├── ContextAlgo.h │ ├── ContextMonitor.h │ ├── ContextProcessor.h │ ├── ContextQuery.h │ ├── ContextVariableTweaks.h │ ├── ContextVariables.h │ ├── DeleteContextVariables.h │ ├── DependencyNode.h │ ├── DirtyPropagationScope.h │ ├── Dot.h │ ├── Dot.inl │ ├── DownstreamIterator.h │ ├── EditScope.h │ ├── EditScope.inl │ ├── Export.h │ ├── Expression.h │ ├── FileSequencePathFilter.h │ ├── FileSystemPath.h │ ├── FilteredChildIterator.h │ ├── FilteredRecursiveChildIterator.h │ ├── GraphComponent.h │ ├── GraphComponent.inl │ ├── HiddenFilePathFilter.h │ ├── LeafPathFilter.h │ ├── Loop.h │ ├── MatchPatternPathFilter.h │ ├── Metadata.h │ ├── Metadata.inl │ ├── MetadataAlgo.h │ ├── MetadataAlgo.inl │ ├── Monitor.h │ ├── MonitorAlgo.h │ ├── NameSwitch.h │ ├── NameValuePlug.h │ ├── NameValuePlug.inl │ ├── Node.h │ ├── NodeAlgo.h │ ├── NodeAlgo.inl │ ├── NumericBookmarkSet.h │ ├── NumericPlug.h │ ├── NumericPlug.inl │ ├── OptionalValuePlug.h │ ├── OptionalValuePlug.inl │ ├── ParallelAlgo.h │ ├── Path.h │ ├── PathFilter.h │ ├── PerformanceMonitor.h │ ├── Plug.h │ ├── Plug.inl │ ├── PlugAlgo.h │ ├── PlugAlgo.inl │ ├── PlugType.h │ ├── Preferences.h │ ├── Private │ │ ├── IECorePreview │ │ │ ├── LRUCache.h │ │ │ ├── LRUCache.inl │ │ │ ├── Messages.h │ │ │ ├── MessagesData.h │ │ │ ├── README.md │ │ │ └── TaskMutex.h │ │ ├── ScopedAssignment.h │ │ └── SlotBase.h │ ├── Process.h │ ├── Process.inl │ ├── ProcessMessageHandler.h │ ├── Random.h │ ├── RandomChoice.h │ ├── RandomChoice.inl │ ├── RecursiveChildIterator.h │ ├── Reference.h │ ├── ScriptNode.h │ ├── Set.h │ ├── ShufflePlug.h │ ├── ShufflePlug.inl │ ├── Signals.h │ ├── Signals.inl │ ├── SplinePlug.h │ ├── Spreadsheet.h │ ├── Spreadsheet.inl │ ├── StandardSet.h │ ├── StandardSet.inl │ ├── StringPlug.h │ ├── SubGraph.h │ ├── Switch.h │ ├── ThreadMonitor.h │ ├── ThreadState.h │ ├── TimeWarp.h │ ├── Transform2DPlug.h │ ├── TransformPlug.h │ ├── TweakPlug.h │ ├── TweakPlug.inl │ ├── TypeIds.h │ ├── TypedObjectPlug.h │ ├── TypedObjectPlug.inl │ ├── TypedObjectPlugImplementation.h │ ├── TypedPlug.h │ ├── TypedPlug.inl │ ├── TypedPlugImplementation.h │ ├── UndoScope.h │ ├── VTuneMonitor.h │ ├── ValuePlug.h │ ├── ValuePlug.inl │ └── Version.h.in ├── GafferArnold │ ├── ArnoldAOVShader.h │ ├── ArnoldAtmosphere.h │ ├── ArnoldAttributes.h │ ├── ArnoldBackground.h │ ├── ArnoldCameraShaders.h │ ├── ArnoldColorManager.h │ ├── ArnoldDisplacement.h │ ├── ArnoldImager.h │ ├── ArnoldLight.h │ ├── ArnoldLightFilter.h │ ├── ArnoldMeshLight.h │ ├── ArnoldOptions.h │ ├── ArnoldRender.h │ ├── ArnoldShader.h │ ├── ArnoldVDB.h │ ├── Export.h │ ├── InteractiveArnoldRender.h │ ├── ParameterHandler.h │ └── TypeIds.h ├── GafferArnoldUI │ ├── Export.h │ └── Private │ │ └── VisualiserAlgo.h ├── GafferBindings │ ├── ComputeNodeBinding.h │ ├── DataBinding.h │ ├── DependencyNodeBinding.h │ ├── DependencyNodeBinding.inl │ ├── Export.h │ ├── GraphComponentBinding.h │ ├── GraphComponentBinding.inl │ ├── MetadataBinding.h │ ├── NodeBinding.h │ ├── NodeBinding.inl │ ├── PathBinding.h │ ├── PathBinding.inl │ ├── PlugBinding.h │ ├── PlugBinding.inl │ ├── RawConstructor.h │ ├── RawConstructor.inl │ ├── Serialisation.h │ ├── SerialisationBinding.h │ ├── SerialisationBinding.inl │ ├── SignalBinding.h │ ├── SignalBinding.inl │ ├── TypedObjectPlugBinding.h │ ├── TypedObjectPlugBinding.inl │ ├── TypedPlugBinding.h │ ├── TypedPlugBinding.inl │ └── ValuePlugBinding.h ├── GafferCortex │ ├── CompoundParameterHandler.h │ ├── DateTimeParameterHandler.h │ ├── ExecutableOpHolder.h │ ├── Export.h │ ├── NumericParameterHandler.h │ ├── ObjectParameterHandler.h │ ├── OpHolder.h │ ├── ParameterHandler.h │ ├── ParameterisedHolder.h │ ├── TypeIds.h │ ├── TypedParameterHandler.h │ └── VectorTypedParameterHandler.h ├── GafferCycles │ ├── CyclesAttributes.h │ ├── CyclesBackground.h │ ├── CyclesLight.h │ ├── CyclesMeshLight.h │ ├── CyclesOptions.h │ ├── CyclesRender.h │ ├── CyclesShader.h │ ├── Export.h │ ├── IECoreCyclesPreview │ │ ├── CameraAlgo.h │ │ ├── Export.h │ │ ├── GeometryAlgo.h │ │ ├── IECoreCycles.h │ │ ├── ShaderNetworkAlgo.h │ │ └── SocketAlgo.h │ ├── InteractiveCyclesRender.h │ ├── SocketHandler.h │ └── TypeIds.h ├── GafferDelight │ ├── DelightAttributes.h │ ├── DelightOptions.h │ ├── DelightRender.h │ ├── Export.h │ ├── InteractiveDelightRender.h │ └── TypeIds.h ├── GafferDispatch │ ├── Dispatcher.h │ ├── Export.h │ ├── FrameMask.h │ ├── TaskList.h │ ├── TaskNode.h │ └── TypeIds.h ├── GafferDispatchBindings │ ├── TaskNodeBinding.h │ └── TaskNodeBinding.inl ├── GafferImage │ ├── AtomicFormatPlug.h │ ├── Blur.h │ ├── BufferAlgo.h │ ├── BufferAlgo.inl │ ├── CDL.h │ ├── Catalogue.h │ ├── ChannelDataProcessor.h │ ├── Checkerboard.h │ ├── Clamp.h │ ├── CollectImages.h │ ├── ColorProcessor.h │ ├── ColorSpace.h │ ├── Constant.h │ ├── CopyChannels.h │ ├── CopyImageMetadata.h │ ├── CopyViews.h │ ├── CreateViews.h │ ├── Crop.h │ ├── DeepHoldout.h │ ├── DeepMerge.h │ ├── DeepRecolor.h │ ├── DeepSampleCounts.h │ ├── DeepSampler.h │ ├── DeepState.h │ ├── DeepToFlat.h │ ├── DeleteChannels.h │ ├── DeleteImageMetadata.h │ ├── DeleteViews.h │ ├── Dilate.h │ ├── Display.h │ ├── DisplayTransform.h │ ├── Empty.h │ ├── Erode.h │ ├── Export.h │ ├── FilterAlgo.h │ ├── FilterAlgo.inl │ ├── FlatImageProcessor.h │ ├── FlatImageSource.h │ ├── FlatToDeep.h │ ├── Format.h │ ├── Format.inl │ ├── FormatData.h │ ├── FormatPlug.h │ ├── FormatQuery.h │ ├── Grade.h │ ├── ImageAlgo.h │ ├── ImageAlgo.inl │ ├── ImageMetadata.h │ ├── ImageNode.h │ ├── ImagePlug.h │ ├── ImageProcessor.h │ ├── ImageReader.h │ ├── ImageSampler.h │ ├── ImageStats.h │ ├── ImageTransform.h │ ├── ImageWriter.h │ ├── LUT.h │ ├── LookTransform.h │ ├── Median.h │ ├── Merge.h │ ├── MetadataProcessor.h │ ├── Mirror.h │ ├── Mix.h │ ├── Offset.h │ ├── OpenColorIOAlgo.h │ ├── OpenColorIOConfigPlug.h │ ├── OpenColorIOContext.h │ ├── OpenColorIOTransform.h │ ├── OpenImageIOReader.h │ ├── Premultiply.h │ ├── Ramp.h │ ├── RankFilter.h │ ├── Rectangle.h │ ├── Resample.h │ ├── Resize.h │ ├── Sampler.h │ ├── Sampler.inl │ ├── Saturation.h │ ├── SelectView.h │ ├── Shape.h │ ├── Shuffle.h │ ├── Text.h │ ├── TypeIds.h │ ├── Unpremultiply.h │ ├── VectorWarp.h │ └── Warp.h ├── GafferImageTest │ ├── ContextSanitiser.h │ └── Export.h ├── GafferImageUI │ ├── Export.h │ ├── ImageGadget.h │ ├── ImageView.h │ ├── OpenColorIOAlgo.h │ └── TypeIds.h ├── GafferOSL │ ├── ClosurePlug.h │ ├── Export.h │ ├── OSLCode.h │ ├── OSLImage.h │ ├── OSLLight.h │ ├── OSLObject.h │ ├── OSLShader.h │ ├── Private │ │ └── CapturingErrorHandler.h │ ├── ShadingEngine.h │ ├── ShadingEngineAlgo.h │ └── TypeIds.h ├── GafferScene │ ├── AimConstraint.h │ ├── AttributeProcessor.h │ ├── AttributeQuery.h │ ├── AttributeQuery.inl │ ├── AttributeTweaks.h │ ├── AttributeVisualiser.h │ ├── Attributes.h │ ├── BoundQuery.h │ ├── BranchCreator.h │ ├── Camera.h │ ├── CameraTweaks.h │ ├── Capsule.h │ ├── ClippingPlane.h │ ├── ClosestPointSampler.h │ ├── CollectPrimitiveVariables.h │ ├── CollectScenes.h │ ├── CollectTransforms.h │ ├── Constraint.h │ ├── CoordinateSystem.h │ ├── CopyAttributes.h │ ├── CopyOptions.h │ ├── CopyPrimitiveVariables.h │ ├── Cryptomatte.h │ ├── Cube.h │ ├── CurveSampler.h │ ├── CustomAttributes.h │ ├── CustomOptions.h │ ├── Deformer.h │ ├── DeleteAttributes.h │ ├── DeleteCurves.h │ ├── DeleteFaces.h │ ├── DeleteGlobals.h │ ├── DeleteObject.h │ ├── DeleteOptions.h │ ├── DeleteOutputs.h │ ├── DeletePoints.h │ ├── DeletePrimitiveVariables.h │ ├── DeleteRenderPasses.h │ ├── DeleteSets.h │ ├── Duplicate.h │ ├── EditScopeAlgo.h │ ├── Encapsulate.h │ ├── ExistenceQuery.h │ ├── Export.h │ ├── ExternalProcedural.h │ ├── Filter.h │ ├── FilterPlug.h │ ├── FilterProcessor.h │ ├── FilterQuery.h │ ├── FilterResults.h │ ├── FilteredSceneProcessor.h │ ├── FramingConstraint.h │ ├── FreezeTransform.h │ ├── GlobalShader.h │ ├── GlobalsProcessor.h │ ├── Grid.h │ ├── Group.h │ ├── ImageScatter.h │ ├── ImageToPoints.h │ ├── Instancer.h │ ├── InteractiveRender.h │ ├── Isolate.h │ ├── Light.h │ ├── LightFilter.h │ ├── LightToCamera.h │ ├── LocaliseAttributes.h │ ├── MapOffset.h │ ├── MapProjection.h │ ├── MergeScenes.h │ ├── MeshDistortion.h │ ├── MeshNormals.h │ ├── MeshSegments.h │ ├── MeshSplit.h │ ├── MeshTangents.h │ ├── MeshToPoints.h │ ├── MeshType.h │ ├── MotionPath.h │ ├── ObjectProcessor.h │ ├── ObjectSource.h │ ├── ObjectToScene.h │ ├── OpenGLAttributes.h │ ├── OpenGLRender.h │ ├── OpenGLShader.h │ ├── OptionQuery.h │ ├── OptionTweaks.h │ ├── Options.h │ ├── Orientation.h │ ├── Outputs.h │ ├── Parameters.h │ ├── Parent.h │ ├── ParentConstraint.h │ ├── PathFilter.h │ ├── Plane.h │ ├── PointConstraint.h │ ├── PointsType.h │ ├── PrimitiveSampler.h │ ├── PrimitiveVariableExists.h │ ├── PrimitiveVariableProcessor.h │ ├── PrimitiveVariableQuery.h │ ├── PrimitiveVariables.h │ ├── Private │ │ ├── ChildNamesMap.h │ │ ├── IECoreGLPreview │ │ │ ├── AttributeVisualiser.h │ │ │ ├── LightFilterVisualiser.h │ │ │ ├── LightVisualiser.h │ │ │ ├── ObjectVisualiser.h │ │ │ └── Visualiser.h │ │ ├── IECoreScenePreview │ │ │ ├── CapturingRenderer.h │ │ │ ├── CompoundRenderer.h │ │ │ ├── Geometry.h │ │ │ ├── Placeholder.h │ │ │ ├── Procedural.h │ │ │ └── Renderer.h │ │ └── RendererAlgo.h │ ├── Prune.h │ ├── Rename.h │ ├── Render.h │ ├── RenderController.h │ ├── RenderPasses.h │ ├── ResamplePrimitiveVariables.h │ ├── ReverseWinding.h │ ├── Scatter.h │ ├── SceneAlgo.h │ ├── SceneAlgo.inl │ ├── SceneElementProcessor.h │ ├── SceneFilterPathFilter.h │ ├── SceneNode.h │ ├── ScenePath.h │ ├── ScenePlug.h │ ├── SceneProcessor.h │ ├── SceneReader.h │ ├── SceneWriter.h │ ├── Set.h │ ├── SetAlgo.h │ ├── SetFilter.h │ ├── SetQuery.h │ ├── SetVisualiser.h │ ├── Shader.h │ ├── ShaderAssignment.h │ ├── ShaderPlug.h │ ├── ShaderQuery.h │ ├── ShaderTweaks.h │ ├── ShuffleAttributes.h │ ├── ShufflePrimitiveVariables.h │ ├── Sphere.h │ ├── StandardAttributes.h │ ├── StandardOptions.h │ ├── SubTree.h │ ├── Text.h │ ├── Transform.h │ ├── TransformQuery.h │ ├── TypeIds.h │ ├── UDIMQuery.h │ ├── UVSampler.h │ ├── Unencapsulate.h │ ├── UnionFilter.h │ ├── VisibleSet.h │ ├── VisibleSet.inl │ ├── VisibleSetData.h │ └── Wireframe.h ├── GafferSceneTest │ ├── CompoundObjectSource.h │ ├── ContextSanitiser.h │ ├── Export.h │ ├── ScenePlugTest.h │ ├── TestLight.h │ ├── TestLightFilter.h │ ├── TestShader.h │ ├── TraverseScene.h │ └── TypeIds.h ├── GafferSceneUI │ ├── AttributeQueryUI.h │ ├── CameraTool.h │ ├── ContextAlgo.h │ ├── CropWindowTool.h │ ├── Export.h │ ├── LightTool.h │ ├── Private │ │ ├── AttributeInspector.h │ │ ├── Inspector.h │ │ ├── Inspector.inl │ │ ├── OutputBuffer.h │ │ ├── ParameterInspector.h │ │ └── SetMembershipInspector.h │ ├── RotateTool.h │ ├── ScaleTool.h │ ├── SceneGadget.h │ ├── SceneView.h │ ├── SelectionTool.h │ ├── ShaderView.h │ ├── StandardLightVisualiser.h │ ├── TransformTool.h │ ├── TranslateTool.h │ ├── TypeIds.h │ └── UVView.h ├── GafferTest │ ├── Assert.h │ ├── ComputeNodeTest.h │ ├── ContextTest.h │ ├── DownstreamIteratorTest.h │ ├── Export.h │ ├── FilteredRecursiveChildIteratorTest.h │ ├── MultiplyNode.h │ ├── RandomTest.h │ ├── RecursiveChildIteratorTest.h │ └── TypeIds.h ├── GafferUI │ ├── AnimationGadget.h │ ├── AnnotationsGadget.h │ ├── AuxiliaryConnectionsGadget.h │ ├── AuxiliaryNodeGadget.h │ ├── BackdropNodeGadget.h │ ├── ButtonEvent.h │ ├── CompoundNodule.h │ ├── CompoundNumericNodule.h │ ├── ConnectionCreator.h │ ├── ConnectionGadget.h │ ├── ContainerGadget.h │ ├── DotNodeGadget.h │ ├── DragDropEvent.h │ ├── Event.h │ ├── EventSignalCombiner.h │ ├── EventSignalCombiner.inl │ ├── Export.h │ ├── FPSGadget.h │ ├── Frame.h │ ├── Gadget.h │ ├── GraphGadget.h │ ├── GraphLayout.h │ ├── Handle.h │ ├── ImageGadget.h │ ├── IndividualContainer.h │ ├── IndividualContainer.inl │ ├── KeyEvent.h │ ├── LinearContainer.h │ ├── ModifiableEvent.h │ ├── NameGadget.h │ ├── NodeGadget.h │ ├── Nodule.h │ ├── NoduleLayout.h │ ├── PathColumn.h │ ├── PlugAdder.h │ ├── PlugGadget.h │ ├── PlugGadget.inl │ ├── Pointer.h │ ├── RotateHandle.h │ ├── ScaleHandle.h │ ├── SpacerGadget.h │ ├── StandardConnectionGadget.h │ ├── StandardGraphLayout.h │ ├── StandardNodeGadget.h │ ├── StandardNodule.h │ ├── StandardStyle.h │ ├── Style.h │ ├── TextGadget.h │ ├── Tool.h │ ├── TranslateHandle.h │ ├── TypeIds.h │ ├── View.h │ ├── View.inl │ └── ViewportGadget.h ├── GafferUIBindings │ ├── GadgetBinding.h │ ├── GadgetBinding.inl │ ├── NodeGadgetBinding.h │ └── NodeGadgetBinding.inl ├── GafferUSD │ ├── Export.h │ ├── TypeIds.h │ ├── USDAttributes.h │ ├── USDLayerWriter.h │ ├── USDLight.h │ └── USDShader.h ├── GafferVDB │ ├── Export.h │ ├── Interrupter.h │ ├── LevelSetOffset.h │ ├── LevelSetToMesh.h │ ├── MeshToLevelSet.h │ ├── PointsGridToPoints.h │ ├── PointsToLevelSet.h │ ├── SphereLevelSet.h │ ├── TypeIds.h │ └── VolumeScatter.h ├── IECoreArnold │ ├── CameraAlgo.h │ ├── Export.h │ ├── NodeAlgo.h │ ├── ParameterAlgo.h │ ├── ProceduralAlgo.h │ ├── ShaderNetworkAlgo.h │ ├── ShapeAlgo.h │ └── UniverseBlock.h └── IECoreDelight │ ├── Export.h │ ├── NodeAlgo.h │ ├── ParameterList.h │ └── ShaderNetworkAlgo.h ├── python ├── Gaffer │ ├── About.py │ ├── Application.py │ ├── Context.py │ ├── DictPath.py │ ├── ExtensionAlgo.py │ ├── FileNamePathFilter.py │ ├── GraphComponentPath.py │ ├── InfoPathFilter.py │ ├── Monitor.py │ ├── NodeAlgo.py │ ├── OutputRedirection.py │ ├── PythonExpressionEngine.py │ ├── SequencePath.py │ ├── UndoScope.py │ ├── WeakMethod.py │ ├── _BlockedConnection.py │ ├── _Range.py │ └── __init__.py ├── GafferArnold │ ├── ArnoldShaderBall.py │ ├── ArnoldTextureBake.py │ └── __init__.py ├── GafferArnoldTest │ ├── ArnoldAOVShaderTest.py │ ├── ArnoldAtmosphereTest.py │ ├── ArnoldAttributesTest.py │ ├── ArnoldBackgroundTest.py │ ├── ArnoldCameraShadersTest.py │ ├── ArnoldColorManagerTest.py │ ├── ArnoldDisplacementTest.py │ ├── ArnoldImagerTest.py │ ├── ArnoldLightFilterTest.py │ ├── ArnoldLightTest.py │ ├── ArnoldMeshLightTest.py │ ├── ArnoldOptionsTest.py │ ├── ArnoldRenderTest.py │ ├── ArnoldShaderBallTest.py │ ├── ArnoldShaderTest.py │ ├── ArnoldTextureBakeTest.py │ ├── ArnoldVDBTest.py │ ├── InteractiveArnoldRenderTest.py │ ├── LightToCameraTest.py │ ├── ModuleTest.py │ ├── __init__.py │ ├── images │ │ ├── blue.exr │ │ ├── red.exr │ │ └── sphereLightBake.exr │ ├── metadata │ │ ├── colorPlugType.mtd │ │ ├── emptyPlugType.mtd │ │ ├── floatPlugType.mtd │ │ └── overrideDefaults.mtd │ └── volumes │ │ └── sphere.vdb ├── GafferArnoldUI │ ├── ArnoldAOVShaderUI.py │ ├── ArnoldAtmosphereUI.py │ ├── ArnoldAttributesUI.py │ ├── ArnoldBackgroundUI.py │ ├── ArnoldCameraShadersUI.py │ ├── ArnoldColorManagerUI.py │ ├── ArnoldDisplacementUI.py │ ├── ArnoldImagerUI.py │ ├── ArnoldLightFilterUI.py │ ├── ArnoldLightUI.py │ ├── ArnoldMeshLightUI.py │ ├── ArnoldOptionsUI.py │ ├── ArnoldRenderUI.py │ ├── ArnoldShaderBallUI.py │ ├── ArnoldShaderUI.py │ ├── ArnoldTextureBakeUI.py │ ├── ArnoldVDBUI.py │ ├── CacheMenu.py │ ├── GPUCache.py │ ├── InteractiveArnoldRenderUI.py │ ├── ShaderMenu.py │ └── __init__.py ├── GafferArnoldUITest │ ├── ArnoldSceneGadgetTest.py │ ├── ArnoldShaderUITest.py │ ├── DocumentationTest.py │ ├── InteractiveArnoldRenderPerformanceTest.py │ ├── NodeUITest.py │ ├── VisualiserAlgoTest.py │ ├── __init__.py │ └── metadata │ │ └── overrideUserDefaults.mtd ├── GafferCortex │ ├── ClassLoaderPath.py │ ├── ClassParameterHandler.py │ ├── ClassVectorParameterHandler.py │ ├── IndexedIOPath.py │ ├── ObjectReader.py │ ├── ObjectWriter.py │ ├── OpMatcher.py │ ├── ParameterPath.py │ └── __init__.py ├── GafferCortexTest │ ├── ClassLoaderPathTest.py │ ├── ExecutableOpHolderTest.py │ ├── IndexedIOPathTest.py │ ├── ObjectReaderTest.py │ ├── ObjectWriterTest.py │ ├── OpHolderTest.py │ ├── OpMatcherTest.py │ ├── ParameterHandlerTest.py │ ├── ParameterPathTest.py │ ├── ParameterisedHolderTest.py │ ├── __init__.py │ ├── classes │ │ ├── classParameter │ │ │ └── classParameter-1.py │ │ ├── classVectorParameter │ │ │ └── classVectorParameter-1.py │ │ └── parameterChangedCallback │ │ │ └── parameterChangedCallback-1.py │ ├── cobs │ │ └── string.cob │ └── images │ │ └── checker.exr ├── GafferCortexUI │ ├── ClassParameterValueWidget.py │ ├── ClassVectorParameterValueWidget.py │ ├── CompoundParameterValueWidget.py │ ├── CompoundPlugValueWidget.py │ ├── CompoundVectorParameterValueWidget.py │ ├── DateTimeParameterValueWidget.py │ ├── DirNameParameterValueWidget.py │ ├── ExecutableOpHolderUI.py │ ├── FileIndexedIOPathPreview.py │ ├── FileSequenceParameterValueWidget.py │ ├── FileSequenceVectorParameterValueWidget.py │ ├── ObjectReaderUI.py │ ├── ObjectWriterUI.py │ ├── OpBrowserMode.py │ ├── OpDialogue.py │ ├── OpHolderUI.py │ ├── OpPathPreview.py │ ├── ParameterPresets.py │ ├── ParameterValueWidget.py │ ├── ParameterisedHolderUI.py │ ├── PathParameterValueWidget.py │ ├── PathVectorParameterValueWidget.py │ ├── PresetsOnlyParameterValueWidget.py │ ├── StringParameterValueWidget.py │ ├── ToolParameterValueWidget.py │ └── __init__.py ├── GafferCortexUITest │ ├── CompoundParameterValueWidgetTest.py │ ├── CompoundPlugValueWidgetTest.py │ ├── DocumentationTest.py │ ├── ParameterValueWidgetTest.py │ └── __init__.py ├── GafferCycles │ ├── CyclesShaderBall.py │ └── __init__.py ├── GafferCyclesTest │ ├── CyclesLightTest.py │ ├── CyclesShaderTest.py │ ├── IECoreCyclesPreviewTest │ │ ├── RendererTest.py │ │ ├── ShaderNetworkAlgoTest.py │ │ └── __init__.py │ ├── InteractiveCyclesRenderTest.py │ ├── ModuleTest.py │ └── __init__.py ├── GafferCyclesUI │ ├── CyclesAttributesUI.py │ ├── CyclesLightUI.py │ ├── CyclesMeshLightUI.py │ ├── CyclesOptionsUI.py │ ├── CyclesRenderUI.py │ ├── CyclesShaderBallUI.py │ ├── CyclesShaderUI.py │ ├── InteractiveCyclesRenderUI.py │ ├── ShaderMenu.py │ └── __init__.py ├── GafferCyclesUITest │ ├── CyclesSceneGadgetTest.py │ ├── DocumentationTest.py │ ├── NodeUITest.py │ └── __init__.py ├── GafferDelight │ └── __init__.py ├── GafferDelightTest │ ├── DelightRenderTest.py │ ├── InteractiveDelightRenderTest.py │ ├── ModuleTest.py │ └── __init__.py ├── GafferDelightUI │ ├── DelightAttributesUI.py │ ├── DelightOptionsUI.py │ ├── DelightRenderUI.py │ ├── InteractiveDelightRenderUI.py │ ├── ShaderMenu.py │ └── __init__.py ├── GafferDelightUITest │ ├── DocumentationTest.py │ ├── NodeUITest.py │ └── __init__.py ├── GafferDispatch │ ├── LocalDispatcher.py │ ├── PythonCommand.py │ ├── SystemCommand.py │ ├── TaskContextProcessor.py │ ├── TaskContextVariables.py │ ├── TaskSwitch.py │ ├── Wedge.py │ └── __init__.py ├── GafferDispatchTest │ ├── DebugDispatcher.py │ ├── DispatchApplicationTest.py │ ├── DispatcherTest.py │ ├── ErroringTaskNode.py │ ├── ExecuteApplicationTest.py │ ├── FrameMaskTest.py │ ├── LocalDispatcherTest.py │ ├── LoggingTaskNode.py │ ├── ModuleTest.py │ ├── PythonCommandTest.py │ ├── StatsApplicationTest.py │ ├── SystemCommandTest.py │ ├── TaskContextVariablesTest.py │ ├── TaskListTest.py │ ├── TaskNodeTest.py │ ├── TaskPlugTest.py │ ├── TaskSwitchTest.py │ ├── TextWriter.py │ ├── WedgeTest.py │ └── __init__.py ├── GafferDispatchUI │ ├── DispatchDialogue.py │ ├── DispatcherUI.py │ ├── FrameMaskUI.py │ ├── LocalDispatcherUI.py │ ├── PythonCommandUI.py │ ├── SystemCommandUI.py │ ├── TaskContextProcessorUI.py │ ├── TaskContextVariablesUI.py │ ├── TaskListUI.py │ ├── TaskNodeUI.py │ ├── TaskSwitchUI.py │ ├── WedgeUI.py │ └── __init__.py ├── GafferDispatchUITest │ ├── DocumentationTest.py │ ├── NodeUITest.py │ └── __init__.py ├── GafferImage │ ├── Anaglyph.py │ ├── BleedFill.py │ ├── CatalogueSelect.py │ ├── DeepTidy.py │ └── __init__.py ├── GafferImageTest │ ├── AnaglyphTest.py │ ├── AtomicFormatPlugTest.py │ ├── BleedFillTest.py │ ├── BlurTest.py │ ├── BufferAlgoTest.py │ ├── CDLTest.py │ ├── CatalogueSelectTest.py │ ├── CatalogueTest.py │ ├── CheckerboardTest.py │ ├── ClampTest.py │ ├── CollectImagesTest.py │ ├── ColorSpaceTest.py │ ├── ConstantTest.py │ ├── ContextSanitiserTest.py │ ├── CopyChannelsTest.py │ ├── CopyImageMetadataTest.py │ ├── CopyViewsTest.py │ ├── CreateViewsTest.py │ ├── CropTest.py │ ├── DeepHoldoutTest.py │ ├── DeepMergeTest.py │ ├── DeepRecolorTest.py │ ├── DeepStateTest.py │ ├── DeleteChannelsTest.py │ ├── DeleteImageMetadataTest.py │ ├── DeleteViewsTest.py │ ├── DilateTest.py │ ├── DisplayTest.py │ ├── DisplayTransformTest.py │ ├── EmptyTest.py │ ├── ErodeTest.py │ ├── FilterAlgoTest.py │ ├── FlatToDeepTest.py │ ├── FormatDataTest.py │ ├── FormatPlugTest.py │ ├── FormatQueryTest.py │ ├── FormatTest.py │ ├── GradeTest.py │ ├── ImageAlgoTest.py │ ├── ImageLoopTest.py │ ├── ImageMetadataTest.py │ ├── ImageNodeTest.py │ ├── ImagePlugTest.py │ ├── ImageProcessorTest.py │ ├── ImageReaderTest.py │ ├── ImageSamplerTest.py │ ├── ImageStatsTest.py │ ├── ImageSwitchTest.py │ ├── ImageTestCase.py │ ├── ImageTimeWarpTest.py │ ├── ImageTransformTest.py │ ├── ImageWriterTest.py │ ├── LUTTest.py │ ├── LookTransformTest.py │ ├── MedianTest.py │ ├── MergeTest.py │ ├── MirrorTest.py │ ├── MixTest.py │ ├── ModuleTest.py │ ├── OffsetTest.py │ ├── OpenColorIOAlgoTest.py │ ├── OpenColorIOConfigPlugTest.py │ ├── OpenColorIOContextTest.py │ ├── OpenImageIOReaderTest.py │ ├── PremultiplyTest.py │ ├── RampTest.py │ ├── RectangleTest.py │ ├── ResampleTest.py │ ├── ResizeTest.py │ ├── SamplerTest.py │ ├── SaturationTest.py │ ├── SelectViewTest.py │ ├── ShuffleTest.py │ ├── TextTest.py │ ├── UnpremultiplyTest.py │ ├── VectorWarpTest.py │ ├── __init__.py │ ├── images │ │ ├── GafferChecker.exr │ │ ├── GafferRamp.exr │ │ ├── blueWithDataWindow.100x100.exr │ │ ├── blurRange.exr │ │ ├── channelTestMultiViewNukeCompat.exr │ │ ├── channelTestMultiViewNukePartPerView.exr │ │ ├── channelTestMultiViewNukeSinglePart.exr │ │ ├── channelTestMultiViewPartPerLayer.exr │ │ ├── channelTestMultiViewPartPerView.exr │ │ ├── channelTestMultiViewSinglePart.exr │ │ ├── channelTestNukePartPerLayer.exr │ │ ├── channelTestNukeSinglePart.exr │ │ ├── channelTestPartPerLayer.exr │ │ ├── channelTestSinglePart.exr │ │ ├── checker.exr │ │ ├── checker2x2.exr │ │ ├── checker8x8.exr │ │ ├── checkerBSpline.200x150.exr │ │ ├── checkerBilinear.200x150.exr │ │ ├── checkerBox.200x150.exr │ │ ├── checkerCatmullRom.200x150.exr │ │ ├── checkerCubic.200x150.exr │ │ ├── checkerHermite.200x150.exr │ │ ├── checkerLanczos.200x150.exr │ │ ├── checkerMitchell.200x100.exr │ │ ├── checkerMitchell.200x150.exr │ │ ├── checkerMix.100x100.exr │ │ ├── checkerSinc.200x150.exr │ │ ├── checkerWithNegWindows.200x150.exr │ │ ├── checkerWithNegWindowsReformated.exr │ │ ├── checkerWithNegativeDataWindow.200x150.exr │ │ ├── checkerWithNegativeDataWindow.200x150.iff │ │ ├── checkerWithNegativeDataWindow.200x150.png │ │ ├── checker_ocio_context.exr │ │ ├── checker_ocio_context_override.exr │ │ ├── checker_ocio_look.exr │ │ ├── checkerboard.100x100.exr │ │ ├── circles.exr │ │ ├── circles.jpg │ │ ├── circlesGreenDilate.exr │ │ ├── circlesGreenErode.exr │ │ ├── circlesGreenMedian.exr │ │ ├── circles_as_cineon.exr │ │ ├── colorbars_half_max.exr │ │ ├── colorbars_max_clamp.exr │ │ ├── deepMergeReference.exr │ │ ├── defaultNegativeDisplayWindow.exr │ │ ├── dotGrid.300.exr │ │ ├── dotGrid.warped.exr │ │ ├── filterDerivativesTest.box.exr │ │ ├── filterDerivativesTest.parallel.exr │ │ ├── greenWithDataWindow.100x100.exr │ │ ├── imitateProductionLayers1.exr │ │ ├── imitateProductionLayers2.exr │ │ ├── knownTransformBug.exr │ │ ├── large.exr │ │ ├── layers.10x10.exr │ │ ├── mergeBoundariesRef.exr │ │ ├── multipart.exr │ │ ├── multipartDefaultChannels.exr │ │ ├── multipartDefaultChannelsOverlap.exr │ │ ├── negativeDisplayWindow.exr │ │ ├── noisyBlobs.exr │ │ ├── noisyBlobsMed72x67.exr │ │ ├── noisyRamp.exr │ │ ├── radial.exr │ │ ├── redWithDataWindow.100x100.exr │ │ ├── representativeDeepImage.exr │ │ ├── resamplePatterns.exr │ │ ├── resamplePatterns_101x101_gaussian.exr │ │ ├── resamplePatterns_119x119_mitchell.exr │ │ ├── resamplePatterns_40x40_box.exr │ │ ├── resamplePatterns_4x4_lanczos3.exr │ │ ├── rgb.100x100.dpx │ │ ├── rgb.100x100.exr │ │ ├── rgb.100x100.iff │ │ ├── rgb.100x100.jpg │ │ ├── rgb.100x100.png │ │ ├── rgb.100x100.tga │ │ ├── rgb.100x100.tif │ │ ├── rgbOverChecker.100x100.exr │ │ ├── text.exr │ │ ├── unsupportedMultipart.exr │ │ ├── warpPattern.exr │ │ └── weirdPartNames.exr │ └── openColorIO │ │ ├── context.ocio │ │ ├── looks │ │ └── primary │ │ └── luts │ │ ├── cineon.spi1d │ │ ├── rec709.spi1d │ │ ├── slog10.spi1d │ │ └── srgb.spi1d ├── GafferImageUI │ ├── AnaglyphUI.py │ ├── BleedFillUI.py │ ├── BlurUI.py │ ├── CDLUI.py │ ├── CatalogueSelectUI.py │ ├── CatalogueUI.py │ ├── ChannelDataProcessorUI.py │ ├── ChannelMaskPlugValueWidget.py │ ├── ChannelPlugValueWidget.py │ ├── CheckerboardUI.py │ ├── ClampUI.py │ ├── CollectImagesUI.py │ ├── ColorProcessorUI.py │ ├── ColorSpaceUI.py │ ├── ConstantUI.py │ ├── CopyChannelsUI.py │ ├── CopyImageMetadataUI.py │ ├── CopyViewsUI.py │ ├── CreateViewsUI.py │ ├── CropUI.py │ ├── DeepHoldoutUI.py │ ├── DeepMergeUI.py │ ├── DeepRecolorUI.py │ ├── DeepSampleCountsUI.py │ ├── DeepSamplerUI.py │ ├── DeepStateUI.py │ ├── DeepTidyUI.py │ ├── DeepToFlatUI.py │ ├── DeleteChannelsUI.py │ ├── DeleteImageMetadataUI.py │ ├── DeleteViewsUI.py │ ├── DilateUI.py │ ├── DisplayTransformUI.py │ ├── DisplayUI.py │ ├── EmptyUI.py │ ├── ErodeUI.py │ ├── FlatImageProcessorUI.py │ ├── FlatImageSourceUI.py │ ├── FlatToDeepUI.py │ ├── FormatPlugValueWidget.py │ ├── FormatQueryUI.py │ ├── GradeUI.py │ ├── ImageMetadataUI.py │ ├── ImageNodeUI.py │ ├── ImageProcessorUI.py │ ├── ImageReaderPathPreview.py │ ├── ImageReaderUI.py │ ├── ImageSamplerUI.py │ ├── ImageStatsUI.py │ ├── ImageTransformUI.py │ ├── ImageViewUI.py │ ├── ImageWriterUI.py │ ├── LUTUI.py │ ├── LookTransformUI.py │ ├── MedianUI.py │ ├── MergeUI.py │ ├── MirrorUI.py │ ├── MixUI.py │ ├── OffsetUI.py │ ├── OpenColorIOConfigPlugUI.py │ ├── OpenColorIOContextUI.py │ ├── OpenColorIOTransformUI.py │ ├── OpenImageIOReaderUI.py │ ├── PremultiplyUI.py │ ├── RGBAChannelsPlugValueWidget.py │ ├── RampUI.py │ ├── RankFilterUI.py │ ├── RectangleUI.py │ ├── ResampleUI.py │ ├── ResizeUI.py │ ├── SaturationUI.py │ ├── SelectViewUI.py │ ├── ShapeUI.py │ ├── ShuffleUI.py │ ├── TextUI.py │ ├── UnpremultiplyUI.py │ ├── VectorWarpUI.py │ ├── ViewPlugValueWidget.py │ ├── WarpUI.py │ └── __init__.py ├── GafferImageUITest │ ├── CatalogueUITest.py │ ├── DocumentationTest.py │ ├── FormatPlugValueWidgetTest.py │ ├── ImageGadgetTest.py │ ├── ImageViewTest.py │ ├── NodeUITest.py │ └── __init__.py ├── GafferOSL │ └── __init__.py ├── GafferOSLTest │ ├── ClosurePlugTest.py │ ├── ModuleTest.py │ ├── OSLCodeTest.py │ ├── OSLExpressionEngineTest.py │ ├── OSLImageTest.py │ ├── OSLLightTest.py │ ├── OSLObjectTest.py │ ├── OSLShaderTest.py │ ├── OSLTestCase.py │ ├── ShadingEngineAlgoTest.py │ ├── ShadingEngineTest.py │ ├── __init__.py │ ├── images │ │ └── vRamp.tx │ ├── scripts │ │ ├── networkVersion-0.23.2.1.gfr │ │ └── oslObjectVersion-0.55.0.0.gfr │ └── shaders │ │ ├── V3iArrayAttributeRead.osl │ │ ├── activatorMetadata.osl │ │ ├── add.osl │ │ ├── arrayMetadata.osl │ │ ├── arrays.osl │ │ ├── attribute.osl │ │ ├── constant.osl │ │ ├── contextVariable.osl │ │ ├── debugClosure.osl │ │ ├── debugClosureWithInternalValue.osl │ │ ├── delightSplineParameters.osl │ │ ├── derivatives.osl │ │ ├── dynamicAttribute.osl │ │ ├── extractTranslate.osl │ │ ├── globals.osl │ │ ├── green.osl │ │ ├── inputClosure.osl │ │ ├── intAttribute.osl │ │ ├── metadata.osl │ │ ├── metadataMinMax.osl │ │ ├── multipleDebugClosures.osl │ │ ├── notAvdbVolume.osl │ │ ├── outputClosure.osl │ │ ├── outputTypes.osl │ │ ├── parameterTypes.osl │ │ ├── red.osl │ │ ├── splineMetadata.osl │ │ ├── splineParameters.osl │ │ ├── stringAttribute.osl │ │ ├── structs.osl │ │ ├── transform.osl │ │ ├── typedDebugClosure.osl │ │ ├── types.osl │ │ ├── uv.osl │ │ ├── uvTextureMap.osl │ │ ├── vdbVolume.osl │ │ ├── version1.osl │ │ └── version2.osl ├── GafferOSLUI │ ├── OSLCodeUI.py │ ├── OSLExpressionEngineUI.py │ ├── OSLImageUI.py │ ├── OSLLightUI.py │ ├── OSLObjectUI.py │ ├── OSLShaderUI.py │ ├── _CodeMenu.py │ ├── _CodeWidget.py │ └── __init__.py ├── GafferOSLUITest │ ├── DocumentationTest.py │ ├── HighlighterTest.py │ ├── NodeUITest.py │ ├── OSLCodeUITest.py │ ├── OSLShaderUITest.py │ └── __init__.py ├── GafferScene │ ├── RenderPassWedge.py │ ├── ShaderBall.py │ └── __init__.py ├── GafferSceneTest │ ├── AimConstraintTest.py │ ├── AttributeQueryTest.py │ ├── AttributeTweaksTest.py │ ├── AttributeVisualiserTest.py │ ├── BoundQueryTest.py │ ├── CameraTest.py │ ├── CameraTweaksTest.py │ ├── CapsuleTest.py │ ├── ClippingPlaneTest.py │ ├── ClosestPointSamplerTest.py │ ├── CollectPrimitiveVariablesTest.py │ ├── CollectScenesTest.py │ ├── CollectTransformsTest.py │ ├── ContextSanitiserTest.py │ ├── CoordinateSystemTest.py │ ├── CopyAttributesTest.py │ ├── CopyOptionsTest.py │ ├── CopyPrimitiveVariablesTest.py │ ├── CryptomatteTest.py │ ├── CubeTest.py │ ├── CurveSamplerTest.py │ ├── CustomAttributesTest.py │ ├── CustomOptionsTest.py │ ├── DeleteAttributesTest.py │ ├── DeleteCurvesTest.py │ ├── DeleteFacesTest.py │ ├── DeleteObjectTest.py │ ├── DeleteOptionsTest.py │ ├── DeleteOutputsTest.py │ ├── DeletePointsTest.py │ ├── DeletePrimitiveVariablesTest.py │ ├── DeleteRenderPassesTest.py │ ├── DeleteSceneContextVariablesTest.py │ ├── DeleteSetsTest.py │ ├── DuplicateTest.py │ ├── EditScopeAlgoTest.py │ ├── EncapsulateTest.py │ ├── ExistenceQueryTest.py │ ├── ExternalProceduralTest.py │ ├── FilterPlugTest.py │ ├── FilterProcessorTest.py │ ├── FilterQueryTest.py │ ├── FilterResultsTest.py │ ├── FilterSwitchTest.py │ ├── FilterTest.py │ ├── FilteredSceneProcessorTest.py │ ├── FramingConstraintTest.py │ ├── FreezeTransformTest.py │ ├── GridTest.py │ ├── GroupTest.py │ ├── IECoreGLPreviewTest │ │ ├── RendererTest.py │ │ ├── VisualiserTest.py │ │ └── __init__.py │ ├── IECoreScenePreviewTest │ │ ├── CapturingRendererTest.py │ │ ├── CompoundRendererTest.py │ │ ├── PlaceholderTest.py │ │ └── __init__.py │ ├── ImageScatterTest.py │ ├── ImageToPointsTest.py │ ├── InstancerTest.py │ ├── InteractiveRenderTest.py │ ├── IsolateTest.py │ ├── LightTest.py │ ├── LocaliseAttributesTest.py │ ├── MapOffsetTest.py │ ├── MapProjectionTest.py │ ├── MergeScenesTest.py │ ├── MeshDistortionTest.py │ ├── MeshNormalsTest.py │ ├── MeshSegmentsTest.py │ ├── MeshSplitTest.py │ ├── MeshTangentsTest.py │ ├── MeshToPointsTest.py │ ├── MeshTypeTest.py │ ├── ModuleTest.py │ ├── MotionPathTest.py │ ├── NameSwitchTest.py │ ├── ObjectToSceneTest.py │ ├── OpenGLAttributesTest.py │ ├── OpenGLRenderTest.py │ ├── OpenGLShaderTest.py │ ├── OptionQueryTest.py │ ├── OptionTweaksTest.py │ ├── OrientationTest.py │ ├── OutputsTest.py │ ├── ParametersTest.py │ ├── ParentConstraintTest.py │ ├── ParentTest.py │ ├── PathFilterTest.py │ ├── PlaneTest.py │ ├── PointConstraintTest.py │ ├── PointsTypeTest.py │ ├── PrimitiveVariableExistsTest.py │ ├── PrimitiveVariableQueryTest.py │ ├── PrimitiveVariablesTest.py │ ├── PruneTest.py │ ├── RenameTest.py │ ├── RenderControllerTest.py │ ├── RenderPassWedgeTest.py │ ├── RenderPassesTest.py │ ├── RendererAlgoTest.py │ ├── ResamplePrimitiveVariablesTest.py │ ├── ReverseWindingTest.py │ ├── ScatterTest.py │ ├── SceneAlgoTest.py │ ├── SceneContextVariablesTest.py │ ├── SceneFilterPathFilterTest.py │ ├── SceneLoopTest.py │ ├── SceneNodeTest.py │ ├── ScenePathTest.py │ ├── ScenePlugTest.py │ ├── SceneProcessorTest.py │ ├── SceneReaderTest.py │ ├── SceneSwitchTest.py │ ├── SceneTestCase.py │ ├── SceneTimeWarpTest.py │ ├── SceneWriterTest.py │ ├── SetAlgoTest.py │ ├── SetFilterTest.py │ ├── SetQueryTest.py │ ├── SetTest.py │ ├── SetVisualiserTest.py │ ├── ShaderAssignmentTest.py │ ├── ShaderBallTest.py │ ├── ShaderQueryTest.py │ ├── ShaderSwitchTest.py │ ├── ShaderTest.py │ ├── ShaderTweaksTest.py │ ├── ShuffleAttributesTest.py │ ├── ShufflePrimitiveVariablesTest.py │ ├── SphereTest.py │ ├── SpreadsheetTest.py │ ├── StandardAttributesTest.py │ ├── StandardOptionsTest.py │ ├── SubTreeTest.py │ ├── TextTest.py │ ├── TransformQueryTest.py │ ├── TransformTest.py │ ├── UDIMQueryTest.py │ ├── UnencapsulateTest.py │ ├── UnionFilterTest.py │ ├── VisibleSetDataTest.py │ ├── VisibleSetTest.py │ ├── WireframeTest.py │ ├── __init__.py │ ├── alembicFiles │ │ ├── animatedCube.abc │ │ ├── cube.abc │ │ └── groupedPlane.abc │ ├── images │ │ ├── crypto_material.json │ │ ├── crypto_object.json │ │ ├── cryptomatte.exr │ │ └── cryptomatteKeyed.exr │ ├── scripts │ │ ├── collectScenes-0.48.0.0.gfr │ │ ├── extraAttributes-0.58.5.2.gfr │ │ ├── extraAttributes-0.59.0.0.gfr │ │ ├── filterProcessor-0.27.0.0.gfr │ │ ├── filterProcessorBoxed-0.27.0.0.gfr │ │ ├── lightTweaks-0.52.3.1.gfr │ │ ├── parent-0.54.1.0.gfr │ │ ├── promotedCompoundDataMemberPlug-0.53.4.0.gfr │ │ ├── sceneSwitch-0.49.1.0.gfr │ │ ├── shaderAssignment-0.55.0.0.gfr │ │ └── shaderAssignmentSwitchProblem.gfr │ └── usdFiles │ │ ├── segmentTestMesh.usd │ │ ├── sphereLight.usda │ │ ├── splitTestMesh.usd │ │ └── unsupportedAttribute.usda ├── GafferSceneUI │ ├── AimConstraintUI.py │ ├── AttributeQueryUI.py │ ├── AttributeTweaksUI.py │ ├── AttributeVisualiserUI.py │ ├── AttributesUI.py │ ├── BoundQueryUI.py │ ├── BranchCreatorUI.py │ ├── CameraToolUI.py │ ├── CameraTweaksUI.py │ ├── CameraUI.py │ ├── ClippingPlaneUI.py │ ├── ClosestPointSamplerUI.py │ ├── CollectPrimitiveVariablesUI.py │ ├── CollectScenesUI.py │ ├── CollectTransformsUI.py │ ├── ConstraintUI.py │ ├── CoordinateSystemUI.py │ ├── CopyAttributesUI.py │ ├── CopyOptionsUI.py │ ├── CopyPrimitiveVariablesUI.py │ ├── CropWindowToolUI.py │ ├── CryptomatteUI.py │ ├── CubeUI.py │ ├── CurveSamplerUI.py │ ├── CustomAttributesUI.py │ ├── CustomOptionsUI.py │ ├── DeformerUI.py │ ├── DeleteAttributesUI.py │ ├── DeleteCurvesUI.py │ ├── DeleteFacesUI.py │ ├── DeleteGlobalsUI.py │ ├── DeleteObjectUI.py │ ├── DeleteOptionsUI.py │ ├── DeleteOutputsUI.py │ ├── DeletePointsUI.py │ ├── DeletePrimitiveVariablesUI.py │ ├── DeleteRenderPassesUI.py │ ├── DeleteSetsUI.py │ ├── DuplicateUI.py │ ├── EditScopeUI.py │ ├── EncapsulateUI.py │ ├── ExistenceQueryUI.py │ ├── ExternalProceduralUI.py │ ├── FilterPlugValueWidget.py │ ├── FilterProcessorUI.py │ ├── FilterQueryUI.py │ ├── FilterResultsUI.py │ ├── FilterUI.py │ ├── FilteredSceneProcessorUI.py │ ├── FramingConstraintUI.py │ ├── FreezeTransformUI.py │ ├── GlobalShaderUI.py │ ├── GridUI.py │ ├── GroupUI.py │ ├── HierarchyView.py │ ├── ImageScatterUI.py │ ├── ImageToPointsUI.py │ ├── InstancerUI.py │ ├── InteractiveRenderUI.py │ ├── IsolateUI.py │ ├── LightEditor.py │ ├── LightFilterUI.py │ ├── LightToCameraUI.py │ ├── LightToolUI.py │ ├── LightUI.py │ ├── LocaliseAttributesUI.py │ ├── MapOffsetUI.py │ ├── MapProjectionUI.py │ ├── MergeScenesUI.py │ ├── MeshDistortionUI.py │ ├── MeshNormalsUI.py │ ├── MeshSegmentsUI.py │ ├── MeshSplitUI.py │ ├── MeshTangentsUI.py │ ├── MeshToPointsUI.py │ ├── MeshTypeUI.py │ ├── MotionPathUI.py │ ├── ObjectSourceUI.py │ ├── ObjectToSceneUI.py │ ├── OpenGLAttributesUI.py │ ├── OpenGLRenderUI.py │ ├── OpenGLShaderUI.py │ ├── OptionQueryUI.py │ ├── OptionTweaksUI.py │ ├── OptionsUI.py │ ├── OrientationUI.py │ ├── OutputsUI.py │ ├── ParametersUI.py │ ├── ParentConstraintUI.py │ ├── ParentUI.py │ ├── PathFilterUI.py │ ├── PlaneUI.py │ ├── PointConstraintUI.py │ ├── PointsTypeUI.py │ ├── PrimitiveInspector.py │ ├── PrimitiveSamplerUI.py │ ├── PrimitiveVariableExistsUI.py │ ├── PrimitiveVariableProcessorUI.py │ ├── PrimitiveVariableQueryUI.py │ ├── PrimitiveVariablesUI.py │ ├── PruneUI.py │ ├── RenameUI.py │ ├── RenderPassWedgeUI.py │ ├── RenderPassesUI.py │ ├── RenderUI.py │ ├── ResamplePrimitiveVariablesUI.py │ ├── ReverseWindingUI.py │ ├── RotateToolUI.py │ ├── ScaleToolUI.py │ ├── ScatterUI.py │ ├── SceneElementProcessorUI.py │ ├── SceneHistoryUI.py │ ├── SceneInspector.py │ ├── SceneNodeUI.py │ ├── ScenePathPlugValueWidget.py │ ├── SceneProcessorUI.py │ ├── SceneReaderPathPreview.py │ ├── SceneReaderUI.py │ ├── SceneViewUI.py │ ├── SceneWriterUI.py │ ├── SelectionToolUI.py │ ├── SetEditor.py │ ├── SetFilterUI.py │ ├── SetQueryUI.py │ ├── SetUI.py │ ├── SetVisualiserUI.py │ ├── ShaderAssignmentUI.py │ ├── ShaderBallUI.py │ ├── ShaderQueryUI.py │ ├── ShaderTweaksUI.py │ ├── ShaderUI.py │ ├── ShaderViewUI.py │ ├── ShuffleAttributesUI.py │ ├── ShufflePrimitiveVariablesUI.py │ ├── SphereUI.py │ ├── StandardAttributesUI.py │ ├── StandardOptionsUI.py │ ├── SubTreeUI.py │ ├── TextUI.py │ ├── TransformQueryUI.py │ ├── TransformToolUI.py │ ├── TransformUI.py │ ├── TranslateToolUI.py │ ├── UDIMQueryUI.py │ ├── UVInspector.py │ ├── UVSamplerUI.py │ ├── UnencapsulateUI.py │ ├── UnionFilterUI.py │ ├── WireframeUI.py │ ├── _HistoryWindow.py │ ├── _SceneViewInspector.py │ └── __init__.py ├── GafferSceneUITest │ ├── AttributeInspectorTest.py │ ├── CameraToolTest.py │ ├── ContextAlgoTest.py │ ├── CropWindowToolTest.py │ ├── DocumentationTest.py │ ├── HierarchyViewTest.py │ ├── HistoryPathTest.py │ ├── LightEditorTest.py │ ├── LightToolTest.py │ ├── NodeUITest.py │ ├── ParameterInspectorTest.py │ ├── RotateToolTest.py │ ├── ScaleToolTest.py │ ├── SceneGadgetTest.py │ ├── SceneInspectorTest.py │ ├── SceneViewTest.py │ ├── SetEditorTest.py │ ├── SetMembershipInspectorTest.py │ ├── ShaderAssignmentUITest.py │ ├── ShaderUITest.py │ ├── ShaderViewTest.py │ ├── StandardGraphLayoutTest.py │ ├── TransformToolTest.py │ ├── TranslateToolTest.py │ ├── VisualiserTest.py │ └── __init__.py ├── GafferTest │ ├── AboutTest.py │ ├── AddNode.py │ ├── AnimationTest.py │ ├── ApplicationRootTest.py │ ├── ApplicationTest.py │ ├── ArrayPlugNode.py │ ├── ArrayPlugTest.py │ ├── BackgroundTaskTest.py │ ├── BadNode.py │ ├── BlockedConnectionTest.py │ ├── BoxIOTest.py │ ├── BoxInTest.py │ ├── BoxOutTest.py │ ├── BoxPlugTest.py │ ├── BoxTest.py │ ├── CachingTestNode.py │ ├── CapturingSlot.py │ ├── ChildSetTest.py │ ├── CollectTest.py │ ├── CompoundDataPlugTest.py │ ├── CompoundNumericNode.py │ ├── CompoundNumericPlugTest.py │ ├── CompoundPathFilterTest.py │ ├── CompoundPlugNode.py │ ├── ComputeNodeTest.py │ ├── ContextMonitorTest.py │ ├── ContextQueryTest.py │ ├── ContextTest.py │ ├── ContextVariableTweaksTest.py │ ├── ContextVariablesTest.py │ ├── DeleteContextVariablesTest.py │ ├── DependencyNodeTest.py │ ├── DictPathTest.py │ ├── DirtyPropagationScopeTest.py │ ├── DotTest.py │ ├── DownstreamIteratorTest.py │ ├── EditScopeTest.py │ ├── ExpressionTest.py │ ├── ExtensionAlgoTest.py │ ├── FileSequencePathFilterTest.py │ ├── FileSystemPathTest.py │ ├── FilteredRecursiveChildIteratorTest.py │ ├── FrameNode.py │ ├── GraphComponentPathTest.py │ ├── GraphComponentTest.py │ ├── HiddenFilePathFilterTest.py │ ├── IECorePreviewTest │ │ ├── LRUCacheTest.py │ │ ├── MessagesTest.py │ │ ├── TaskMutexTest.py │ │ └── __init__.py │ ├── KeywordPlugNode.py │ ├── LeafPathFilterTest.py │ ├── LoopTest.py │ ├── MatchPatternPathFilterTest.py │ ├── MetadataAlgoTest.py │ ├── MetadataTest.py │ ├── ModuleTest.py │ ├── MonitorAlgoTest.py │ ├── NameSwitchTest.py │ ├── NameValuePlugTest.py │ ├── NodeAlgoTest.py │ ├── NodeBindingTest.py │ ├── NodeTest.py │ ├── NumericBookmarkSetTest.py │ ├── NumericPlugTest.py │ ├── OptionalValuePlugTest.py │ ├── OutputRedirectionTest.py │ ├── ParallelAlgoTest.py │ ├── PathFilterTest.py │ ├── PathTest.py │ ├── PerformanceMonitorTest.py │ ├── PlugAlgoTest.py │ ├── PlugTest.py │ ├── ProcessMessageHandlerTest.py │ ├── ProcessTest.py │ ├── PythonApplicationTest.py │ ├── RandomChoiceTest.py │ ├── RandomTest.py │ ├── RecursiveChildIteratorTest.py │ ├── ReferenceTest.py │ ├── ScriptNodeTest.py │ ├── SequencePathTest.py │ ├── SerialisationTest.py │ ├── ShufflePlugTest.py │ ├── SignalsTest.py │ ├── SplinePlugTest.py │ ├── SpreadsheetTest.py │ ├── StandardSetTest.py │ ├── StatsApplicationTest.py │ ├── StringInOutNode.py │ ├── StringPlugTest.py │ ├── SubGraphTest.py │ ├── SwitchTest.py │ ├── TestCase.py │ ├── TestRunner.py │ ├── ThreadMonitorTest.py │ ├── TimeWarpTest.py │ ├── Transform2DPlugTest.py │ ├── TransformPlugTest.py │ ├── TweakPlugTest.py │ ├── TypedObjectPlugTest.py │ ├── TypedPlugTest.py │ ├── UndoTest.py │ ├── ValuePlugTest.py │ ├── WeakMethodTest.py │ ├── _WindowsUtils.py │ ├── __init__.py │ ├── cobs │ │ └── pSphereShape1.cob │ ├── pythonScripts │ │ ├── exception.py │ │ ├── flagArguments.py │ │ ├── name.py │ │ ├── unloadExceptionScript.py │ │ └── variableScope.py │ ├── references │ │ ├── empty.grf │ │ └── multipleOutputExpression.grf │ └── scripts │ │ ├── animationVersion-0.60.9.0.gfr │ │ ├── boxIOOutsideBoxVersion-0.52.0.0.gfr │ │ ├── boxPassThroughVersion-0.52.0.0.gfr │ │ ├── boxVersion-0.52.0.0.gfr │ │ ├── previousSerialisationVersion.gfr │ │ ├── stringPlugSubstitutions-0.55.4.0.gfr │ │ └── stringPlugSubstitutions-0.56.0.0.gfr ├── GafferTractor │ ├── TractorDispatcher.py │ └── __init__.py ├── GafferTractorTest │ ├── ModuleTest.py │ ├── TractorDispatcherTest.py │ └── __init__.py ├── GafferTractorUI │ ├── TractorDispatcherUI.py │ └── __init__.py ├── GafferTractorUITest │ ├── DocumentationTest.py │ └── __init__.py ├── GafferUI │ ├── AboutWindow.py │ ├── AnimationEditor.py │ ├── AnimationUI.py │ ├── AnnotationsUI.py │ ├── ApplicationMenu.py │ ├── BackdropUI.py │ ├── BackgroundMethod.py │ ├── BackgroundTaskDialogue.py │ ├── Backups.py │ ├── Bookmarks.py │ ├── BoolPlugValueWidget.py │ ├── BoolWidget.py │ ├── BoxIOUI.py │ ├── BoxInUI.py │ ├── BoxOutUI.py │ ├── BoxPlugValueWidget.py │ ├── BoxUI.py │ ├── BrowserEditor.py │ ├── BusyWidget.py │ ├── Button.py │ ├── ButtonPlugValueWidget.py │ ├── CodeWidget.py │ ├── Collapsible.py │ ├── CollectUI.py │ ├── ColorChooser.py │ ├── ColorChooserDialogue.py │ ├── ColorChooserPlugValueWidget.py │ ├── ColorPlugValueWidget.py │ ├── ColorSwatch.py │ ├── ColorSwatchPlugValueWidget.py │ ├── CompoundDataPlugValueWidget.py │ ├── CompoundEditor.py │ ├── CompoundNumericNoduleUI.py │ ├── CompoundNumericPlugValueWidget.py │ ├── CompoundPathFilterWidget.py │ ├── CompoundPathPreview.py │ ├── ComputeNodeUI.py │ ├── ConfirmationDialogue.py │ ├── ConnectionPlugValueWidget.py │ ├── ContainerWidget.py │ ├── ContextProcessorUI.py │ ├── ContextQueryUI.py │ ├── ContextVariableTweaksUI.py │ ├── ContextVariablesUI.py │ ├── DataPathPreview.py │ ├── DeferredPathPreview.py │ ├── DeleteContextVariablesUI.py │ ├── DependencyNodeUI.py │ ├── Dialogue.py │ ├── Divider.py │ ├── DocumentationAlgo.py │ ├── DotUI.py │ ├── EditMenu.py │ ├── EditScopeUI.py │ ├── Editor.py │ ├── Enums.py │ ├── ErrorDialogue.py │ ├── EventLoop.py │ ├── Examples.py │ ├── ExpressionUI.py │ ├── FileMenu.py │ ├── FileSequencePathFilterWidget.py │ ├── FileSystemPathPlugValueWidget.py │ ├── FileSystemPathVectorDataPlugValueWidget.py │ ├── Frame.py │ ├── GLWidget.py │ ├── GadgetWidget.py │ ├── GraphBookmarksUI.py │ ├── GraphComponentBrowserMode.py │ ├── GraphEditor.py │ ├── GridContainer.py │ ├── HeaderPathPreview.py │ ├── Image.py │ ├── InfoPathFilterWidget.py │ ├── InfoPathPreview.py │ ├── Label.py │ ├── LabelPlugValueWidget.py │ ├── LayoutMenu.py │ ├── LayoutPlugValueWidget.py │ ├── Layouts.py │ ├── LazyMethod.py │ ├── ListContainer.py │ ├── LoopUI.py │ ├── MatchPatternPathFilterWidget.py │ ├── Menu.py │ ├── MenuBar.py │ ├── MenuButton.py │ ├── MessageWidget.py │ ├── MetadataWidget.py │ ├── MultiLineStringPlugValueWidget.py │ ├── MultiLineTextWidget.py │ ├── MultiSelectionMenu.py │ ├── NameLabel.py │ ├── NameSwitchUI.py │ ├── NameValuePlugValueWidget.py │ ├── NameWidget.py │ ├── NodeEditor.py │ ├── NodeFinderDialogue.py │ ├── NodeMenu.py │ ├── NodeSetEditor.py │ ├── NodeToolbar.py │ ├── NodeUI.py │ ├── NotificationMessageHandler.py │ ├── NumericPlugValueWidget.py │ ├── NumericWidget.py │ ├── OptionalValuePlugValueWidget.py │ ├── PathChooserDialogue.py │ ├── PathChooserWidget.py │ ├── PathFilterWidget.py │ ├── PathListingWidget.py │ ├── PathPlugValueWidget.py │ ├── PathPreviewWidget.py │ ├── PathVectorDataPlugValueWidget.py │ ├── PathVectorDataWidget.py │ ├── PathWidget.py │ ├── Playback.py │ ├── PlugLayout.py │ ├── PlugPopup.py │ ├── PlugValueWidget.py │ ├── PlugWidget.py │ ├── PopupWindow.py │ ├── PreferencesUI.py │ ├── PresetsPlugValueWidget.py │ ├── ProgressBar.py │ ├── PythonEditor.py │ ├── RampPlugValueWidget.py │ ├── RandomChoiceUI.py │ ├── RandomUI.py │ ├── ReferenceUI.py │ ├── RefreshPlugValueWidget.py │ ├── ScriptNodeUI.py │ ├── ScriptWindow.py │ ├── ScrolledContainer.py │ ├── SelectionMenu.py │ ├── ShowURL.py │ ├── ShufflePlugValueWidget.py │ ├── Slider.py │ ├── Spacer.py │ ├── SplinePlugValueWidget.py │ ├── SplineWidget.py │ ├── SplitContainer.py │ ├── SpreadsheetUI │ │ ├── _Algo.py │ │ ├── _CellPlugValueWidget.py │ │ ├── _ClipboardAlgo.py │ │ ├── _Formatting.py │ │ ├── _LinkedScrollBar.py │ │ ├── _Menus.py │ │ ├── _Metadata.py │ │ ├── _PlugTableDelegate.py │ │ ├── _PlugTableModel.py │ │ ├── _PlugTableView.py │ │ ├── _ProxyModels.py │ │ ├── _ProxySelectionModel.py │ │ ├── _RowsPlugValueWidget.py │ │ ├── _SectionChooser.py │ │ └── __init__.py │ ├── StandardNodeToolbar.py │ ├── StandardNodeUI.py │ ├── StringPlugValueWidget.py │ ├── SubGraphUI.py │ ├── SwitchUI.py │ ├── TabbedContainer.py │ ├── TextInputDialogue.py │ ├── TextWidget.py │ ├── TimeWarpUI.py │ ├── Timeline.py │ ├── ToolPlugValueWidget.py │ ├── ToolUI.py │ ├── TweakPlugValueWidget.py │ ├── UIEditor.py │ ├── UserPlugs.py │ ├── VectorDataPlugValueWidget.py │ ├── VectorDataWidget.py │ ├── ViewUI.py │ ├── Viewer.py │ ├── Widget.py │ ├── WidgetAlgo.py │ ├── Window.py │ ├── _PlugAdder.py │ ├── _Pointer.py │ ├── _StyleSheet.py │ ├── _TableView.py │ ├── _Variant.py │ └── __init__.py ├── GafferUITest │ ├── AnimationGadgetTest.py │ ├── AuxiliaryConnectionsGadgetTest.py │ ├── AuxiliaryNodeGadgetTest.py │ ├── BackdropNodeGadgetTest.py │ ├── BackgroundMethodTest.py │ ├── BackupsTest.py │ ├── BookmarksTest.py │ ├── BoolPlugValueWidgetTest.py │ ├── BoolWidgetTest.py │ ├── BoxIOUITest.py │ ├── BoxUITest.py │ ├── ButtonTest.py │ ├── CodeWidgetTest.py │ ├── CollapsibleTest.py │ ├── ColorSwatchTest.py │ ├── CompoundDataPlugValueWidgetTest.py │ ├── CompoundEditorTest.py │ ├── CompoundNoduleTest.py │ ├── CompoundNumericNoduleTest.py │ ├── CompoundNumericPlugValueWidgetTest.py │ ├── ConnectionGadgetTest.py │ ├── ContainerWidgetTest.py │ ├── DocumentationAlgoTest.py │ ├── DocumentationTest.py │ ├── DotNodeGadgetTest.py │ ├── EditorTest.py │ ├── ErrorDialogueTest.py │ ├── EventLoopTest.py │ ├── EventSignalCombinerTest.py │ ├── ExamplesTest.py │ ├── FrameTest.py │ ├── GLWidgetTest.py │ ├── GadgetTest.py │ ├── GadgetWidgetTest.py │ ├── GraphEditorTest.py │ ├── GraphGadgetTest.py │ ├── GridContainerTest.py │ ├── ImageGadgetTest.py │ ├── ImageTest.py │ ├── LabelPlugValueWidgetTest.py │ ├── LabelTest.py │ ├── LayoutsTest.py │ ├── LazyMethodTest.py │ ├── LinearContainerTest.py │ ├── ListContainerTest.py │ ├── MenuBarTest.py │ ├── MenuTest.py │ ├── MessageWidgetTest.py │ ├── ModuleTest.py │ ├── MultiLineTextWidgetTest.py │ ├── MultiSelectionMenuTest.py │ ├── NameGadgetTest.py │ ├── NameLabelTest.py │ ├── NameWidgetTest.py │ ├── NodeEditorTest.py │ ├── NodeGadgetTest.py │ ├── NodeSetEditorTest.py │ ├── NodeUITest.py │ ├── NoduleLayoutTest.py │ ├── NoduleTest.py │ ├── NumericPlugValueWidgetTest.py │ ├── NumericWidgetTest.py │ ├── PathColumnTest.py │ ├── PathListingWidgetTest.py │ ├── PlaybackTest.py │ ├── PlugLayoutTest.py │ ├── PlugValueWidgetTest.py │ ├── PresetsPlugValueWidgetTest.py │ ├── ProgressBarTest.py │ ├── PythonEditorTest.py │ ├── ReferenceUITest.py │ ├── ScriptWindowTest.py │ ├── ScrolledContainerTest.py │ ├── SelectionMenuTest.py │ ├── SliderTest.py │ ├── SpacerGadgetTest.py │ ├── SplitContainerTest.py │ ├── SpreadsheetUITest.py │ ├── StandardGraphLayoutTest.py │ ├── StandardNodeGadgetTest.py │ ├── StandardNodeToolbarTest.py │ ├── StandardNodeUITest.py │ ├── StandardStyleTest.py │ ├── StringPlugValueWidgetTest.py │ ├── SwitchNodeGadgetTest.py │ ├── TabbedContainerTest.py │ ├── TestCase.py │ ├── TextWidgetTest.py │ ├── ToolTest.py │ ├── VariantTest.py │ ├── VectorDataWidgetTest.py │ ├── ViewTest.py │ ├── ViewportGadgetTest.py │ ├── WidgetAlgoTest.py │ ├── WidgetSignalTest.py │ ├── WidgetTest.py │ ├── WindowTest.py │ ├── __init__.py │ └── scripts │ │ └── auxiliaryConnectionBoxExitCrash.gfr ├── GafferUSD │ └── __init__.py ├── GafferUSDTest │ ├── ModuleTest.py │ ├── USDAttributesTest.py │ ├── USDLayerWriterTest.py │ ├── USDLightTest.py │ ├── USDShaderTest.py │ └── __init__.py ├── GafferUSDUI │ ├── USDAttributesUI.py │ ├── USDLayerWriterUI.py │ ├── USDLightUI.py │ ├── USDShaderUI.py │ └── __init__.py ├── GafferUSDUITest │ ├── DocumentationTest.py │ ├── NodeUITest.py │ └── __init__.py ├── GafferVDB │ └── __init__.py ├── GafferVDBTest │ ├── LevelSetOffsetTest.py │ ├── LevelSetToMeshTest.py │ ├── MeshToLevelSetTest.py │ ├── ModuleTest.py │ ├── PointsGridToPointsTest.py │ ├── PointsToLevelSetTest.py │ ├── SphereLevelSetTest.py │ ├── VDBTestCase.py │ ├── VolumeScatterTest.py │ ├── __init__.py │ └── data │ │ ├── points.vdb │ │ ├── smoke.vdb │ │ └── sphere.vdb ├── GafferVDBUI │ ├── LevelSetOffsetUI.py │ ├── LevelSetToMeshUI.py │ ├── MeshToLevelSetUI.py │ ├── PointsGridToPointsUI.py │ ├── PointsToLevelSetUI.py │ ├── SphereLevelSetUI.py │ ├── VolumeScatterUI.py │ └── __init__.py ├── GafferVDBUITest │ ├── DocumentationTest.py │ ├── NodeUITest.py │ └── __init__.py ├── IECoreArnold │ ├── UniverseBlock.py │ └── __init__.py ├── IECoreArnoldTest │ ├── CameraAlgoTest.py │ ├── CurvesAlgoTest.py │ ├── MeshAlgoTest.py │ ├── OutputDriverTest.py │ ├── ParameterAlgoTest.py │ ├── PointsAlgoTest.py │ ├── RendererTest.py │ ├── ShaderNetworkAlgoTest.py │ ├── SphereAlgoTest.py │ ├── UniverseBlockTest.py │ ├── __init__.py │ ├── assFiles │ │ ├── mergedDisplays.ass │ │ ├── outputWithLayerName.ass │ │ └── vectorAndPointDisplays.ass │ └── metadata │ │ └── test.mtd ├── IECoreDelight │ └── __init__.py └── IECoreDelightTest │ ├── RendererTest.py │ ├── __init__.py │ ├── shaders │ └── delightSplineParameters.osl │ └── volumes │ └── sphere.vdb ├── resources ├── GafferLogo.py ├── GafferLogo.svg ├── GafferLogoMini.py ├── GafferLogoMini.svg ├── Info.plist ├── docGraphics.py ├── docGraphics.svg ├── graphics.py └── graphics.svg ├── shaders ├── Conversion │ ├── ColorToFloat.osl │ ├── ColorToVector.osl │ ├── FloatToColor.osl │ ├── FloatToVector.osl │ ├── VectorToColor.osl │ └── VectorToFloat.osl ├── GafferOSL │ ├── ArrayArgList.h │ ├── Expression.h │ ├── ImageProcessing.h │ ├── MetaUtils.h │ ├── ObjectProcessing.h │ └── Spline.h ├── ImageProcessing │ ├── InChannel.osl │ ├── InLayer.osl │ ├── OutChannel.osl │ ├── OutImage.osl │ └── OutLayer.osl ├── MaterialX │ ├── mx_pack_color.osl │ └── mx_swizzle_color_float.osl ├── Maths │ ├── AddColor.osl │ ├── AddFloat.osl │ ├── AddVector.osl │ ├── CrossProduct.osl │ ├── DivideColor.osl │ ├── DivideFloat.osl │ ├── DivideVector.osl │ ├── DotProduct.osl │ ├── InvertMatrix.osl │ ├── Length.osl │ ├── MatrixTransform.osl │ ├── MixColor.osl │ ├── MixFloat.osl │ ├── MixVector.osl │ ├── MultiplyColor.osl │ ├── MultiplyFloat.osl │ ├── MultiplyVector.osl │ ├── Normalize.osl │ ├── PowFloat.osl │ ├── RoundFloat.osl │ ├── ScaleVector.osl │ ├── SinFloat.osl │ ├── SubtractColor.osl │ ├── SubtractFloat.osl │ └── SubtractVector.osl ├── ObjectProcessing │ ├── InColor.osl │ ├── InFloat.osl │ ├── InInt.osl │ ├── InMatrix.osl │ ├── InNormal.osl │ ├── InPoint.osl │ ├── InString.osl │ ├── InUV.osl │ ├── InVector.osl │ ├── OutColor.osl │ ├── OutFloat.osl │ ├── OutInt.osl │ ├── OutMatrix.osl │ ├── OutNormal.osl │ ├── OutObject.osl │ ├── OutPoint.osl │ ├── OutString.osl │ ├── OutUV.osl │ └── OutVector.osl ├── Pattern │ ├── ColorSpline.osl │ ├── FloatSpline.osl │ ├── Noise.osl │ └── PointNoise.osl ├── Surface │ └── Constant.osl ├── Utility │ ├── CompareColor.osl │ ├── CompareFloat.osl │ ├── CompareVector.osl │ ├── CoordinateSystemMatrix.osl │ ├── CoordinateSystemTransform.osl │ ├── Globals.osl │ ├── Luminance.osl │ ├── RemapColor.osl │ ├── RemapFloat.osl │ ├── RemapVector.osl │ ├── SwitchColor.osl │ ├── SwitchFloat.osl │ ├── SwitchVector.osl │ ├── __ColorToArray.osl │ └── __FloatToArray.osl └── __viewer │ ├── __arnold_add.osl │ ├── __arnold_blackbody.osl │ ├── __arnold_color_correct.osl │ ├── __arnold_image.osl │ └── __arnold_multiply.osl ├── src ├── Gaffer │ ├── Action.cpp │ ├── Animation.cpp │ ├── ApplicationRoot.cpp │ ├── ArrayPlug.cpp │ ├── Backdrop.cpp │ ├── BackgroundTask.cpp │ ├── Box.cpp │ ├── BoxIO.cpp │ ├── BoxIn.cpp │ ├── BoxOut.cpp │ ├── BoxPlug.cpp │ ├── ChildSet.cpp │ ├── Collect.cpp │ ├── CompoundDataPlug.cpp │ ├── CompoundNumericPlug.cpp │ ├── CompoundPathFilter.cpp │ ├── ComputeNode.cpp │ ├── Context.cpp │ ├── ContextAlgo.cpp │ ├── ContextMonitor.cpp │ ├── ContextProcessor.cpp │ ├── ContextQuery.cpp │ ├── ContextVariableTweaks.cpp │ ├── ContextVariables.cpp │ ├── DeleteContextVariables.cpp │ ├── DependencyNode.cpp │ ├── DirtyPropagationScope.cpp │ ├── Dot.cpp │ ├── EditScope.cpp │ ├── Expression.cpp │ ├── FileSequencePathFilter.cpp │ ├── FileSystemPath.cpp │ ├── GraphComponent.cpp │ ├── HiddenFilePathFilter.cpp │ ├── IECorePreview │ │ ├── Messages.cpp │ │ └── MessagesData.cpp │ ├── LeafPathFilter.cpp │ ├── Loop.cpp │ ├── MatchPatternPathFilter.cpp │ ├── Metadata.cpp │ ├── MetadataAlgo.cpp │ ├── Monitor.cpp │ ├── MonitorAlgo.cpp │ ├── NameSwitch.cpp │ ├── NameValuePlug.cpp │ ├── Node.cpp │ ├── NumericBookmarkSet.cpp │ ├── NumericPlug.cpp │ ├── OptionalValuePlug.cpp │ ├── ParallelAlgo.cpp │ ├── Path.cpp │ ├── PathFilter.cpp │ ├── PerformanceMonitor.cpp │ ├── Plug.cpp │ ├── PlugAlgo.cpp │ ├── Preferences.cpp │ ├── Process.cpp │ ├── ProcessMessageHandler.cpp │ ├── Random.cpp │ ├── RandomChoice.cpp │ ├── Reference.cpp │ ├── ScriptNode.cpp │ ├── Set.cpp │ ├── ShufflePlug.cpp │ ├── SplinePlug.cpp │ ├── Spreadsheet.cpp │ ├── StandardSet.cpp │ ├── StringPlug.cpp │ ├── SubGraph.cpp │ ├── Switch.cpp │ ├── ThreadMonitor.cpp │ ├── ThreadState.cpp │ ├── TimeWarp.cpp │ ├── Transform2DPlug.cpp │ ├── TransformPlug.cpp │ ├── TweakPlug.cpp │ ├── TypedObjectPlug.cpp │ ├── TypedPlug.cpp │ ├── UndoScope.cpp │ ├── VTuneMonitor.cpp │ ├── ValuePlug.cpp │ └── Version.cpp ├── GafferArnold │ ├── ArnoldAOVShader.cpp │ ├── ArnoldAtmosphere.cpp │ ├── ArnoldAttributes.cpp │ ├── ArnoldBackground.cpp │ ├── ArnoldCameraShaders.cpp │ ├── ArnoldColorManager.cpp │ ├── ArnoldDisplacement.cpp │ ├── ArnoldImager.cpp │ ├── ArnoldLight.cpp │ ├── ArnoldLightFilter.cpp │ ├── ArnoldMeshLight.cpp │ ├── ArnoldOptions.cpp │ ├── ArnoldRender.cpp │ ├── ArnoldShader.cpp │ ├── ArnoldVDB.cpp │ ├── InteractiveArnoldRender.cpp │ └── ParameterHandler.cpp ├── GafferArnoldModule │ └── GafferArnoldModule.cpp ├── GafferArnoldPlugin │ └── OutputDriver.cpp ├── GafferArnoldUI │ ├── ArnoldLightVisualiser.cpp │ ├── BarndoorVisualiser.cpp │ ├── DecayVisualiser.cpp │ ├── GoboVisualiser.cpp │ ├── LightBlockerVisualiser.cpp │ └── VisualiserAlgo.cpp ├── GafferArnoldUIModule │ └── GafferArnoldUIModule.cpp ├── GafferBindings │ ├── DataBinding.cpp │ ├── DependencyNodeBinding.cpp │ ├── MetadataBinding.cpp │ ├── NodeBinding.cpp │ ├── PathBinding.cpp │ ├── PlugBinding.cpp │ ├── Serialisation.cpp │ ├── SignalBinding.cpp │ └── ValuePlugBinding.cpp ├── GafferCortex │ ├── CompoundParameterHandler.cpp │ ├── DateTimeParameterHandler.cpp │ ├── ExecutableOpHolder.cpp │ ├── NumericParameterHandler.cpp │ ├── ObjectParameterHandler.cpp │ ├── OpHolder.cpp │ ├── ParameterHandler.cpp │ ├── ParameterisedHolder.cpp │ ├── TypedParameterHandler.cpp │ └── VectorTypedParameterHandler.cpp ├── GafferCortexModule │ ├── CompoundParameterHandlerBinding.cpp │ ├── CompoundParameterHandlerBinding.h │ ├── ExecutableOpHolderBinding.cpp │ ├── ExecutableOpHolderBinding.h │ ├── GafferCortexModule.cpp │ ├── OpHolderBinding.cpp │ ├── OpHolderBinding.h │ ├── ParameterHandlerBinding.cpp │ ├── ParameterHandlerBinding.h │ ├── ParameterisedHolderBinding.cpp │ └── ParameterisedHolderBinding.h ├── GafferCycles │ ├── CyclesAttributes.cpp │ ├── CyclesBackground.cpp │ ├── CyclesLight.cpp │ ├── CyclesMeshLight.cpp │ ├── CyclesOptions.cpp │ ├── CyclesRender.cpp │ ├── CyclesShader.cpp │ ├── IECoreCyclesPreview │ │ ├── CameraAlgo.cpp │ │ ├── CurvesAlgo.cpp │ │ ├── GeometryAlgo.cpp │ │ ├── IECoreCycles.cpp │ │ ├── IEDisplayOutputDriver.cpp │ │ ├── IEDisplayOutputDriver.h │ │ ├── MeshAlgo.cpp │ │ ├── OIIOOutputDriver.cpp │ │ ├── OIIOOutputDriver.h │ │ ├── PointsAlgo.cpp │ │ ├── Renderer.cpp │ │ ├── ShaderNetworkAlgo.cpp │ │ ├── SocketAlgo.cpp │ │ ├── SphereAlgo.cpp │ │ └── VDBAlgo.cpp │ ├── InteractiveCyclesRender.cpp │ └── SocketHandler.cpp ├── GafferCyclesModule │ └── GafferCyclesModule.cpp ├── GafferDelight │ ├── DelightAttributes.cpp │ ├── DelightOptions.cpp │ ├── DelightRender.cpp │ └── InteractiveDelightRender.cpp ├── GafferDelightModule │ └── GafferDelightModule.cpp ├── GafferDispatch │ ├── Dispatcher.cpp │ ├── FrameMask.cpp │ ├── TaskList.cpp │ └── TaskNode.cpp ├── GafferDispatchModule │ ├── DispatcherBinding.cpp │ ├── DispatcherBinding.h │ ├── GafferDispatchModule.cpp │ ├── TaskNodeBinding.cpp │ └── TaskNodeBinding.h ├── GafferImage │ ├── AtomicFormatPlug.cpp │ ├── Blur.cpp │ ├── CDL.cpp │ ├── Catalogue.cpp │ ├── ChannelDataProcessor.cpp │ ├── Checkerboard.cpp │ ├── Clamp.cpp │ ├── CollectImages.cpp │ ├── ColorProcessor.cpp │ ├── ColorSpace.cpp │ ├── Constant.cpp │ ├── CopyChannels.cpp │ ├── CopyImageMetadata.cpp │ ├── CopyViews.cpp │ ├── CreateViews.cpp │ ├── Crop.cpp │ ├── DeepHoldout.cpp │ ├── DeepMerge.cpp │ ├── DeepRecolor.cpp │ ├── DeepSampleCounts.cpp │ ├── DeepSampler.cpp │ ├── DeepState.cpp │ ├── DeepToFlat.cpp │ ├── DeleteChannels.cpp │ ├── DeleteImageMetadata.cpp │ ├── DeleteViews.cpp │ ├── Dilate.cpp │ ├── Display.cpp │ ├── DisplayTransform.cpp │ ├── Empty.cpp │ ├── Erode.cpp │ ├── FilterAlgo.cpp │ ├── FlatImageProcessor.cpp │ ├── FlatImageSource.cpp │ ├── FlatToDeep.cpp │ ├── Format.cpp │ ├── FormatData.cpp │ ├── FormatPlug.cpp │ ├── FormatQuery.cpp │ ├── Grade.cpp │ ├── ImageAlgo.cpp │ ├── ImageMetadata.cpp │ ├── ImageNode.cpp │ ├── ImagePlug.cpp │ ├── ImageProcessor.cpp │ ├── ImageReader.cpp │ ├── ImageSampler.cpp │ ├── ImageStats.cpp │ ├── ImageTransform.cpp │ ├── ImageWriter.cpp │ ├── LUT.cpp │ ├── LookTransform.cpp │ ├── Median.cpp │ ├── Merge.cpp │ ├── MetadataProcessor.cpp │ ├── Mirror.cpp │ ├── Mix.cpp │ ├── Offset.cpp │ ├── OpenColorIOAlgo.cpp │ ├── OpenColorIOConfigPlug.cpp │ ├── OpenColorIOContext.cpp │ ├── OpenColorIOTransform.cpp │ ├── OpenImageIOReader.cpp │ ├── Premultiply.cpp │ ├── Ramp.cpp │ ├── RankFilter.cpp │ ├── Rectangle.cpp │ ├── Resample.cpp │ ├── Resize.cpp │ ├── Sampler.cpp │ ├── Saturation.cpp │ ├── SelectView.cpp │ ├── Shape.cpp │ ├── Shuffle.cpp │ ├── Text.cpp │ ├── Unpremultiply.cpp │ ├── VectorWarp.cpp │ └── Warp.cpp ├── GafferImageModule │ ├── BufferAlgoBinding.cpp │ ├── BufferAlgoBinding.h │ ├── CatalogueBinding.cpp │ ├── CatalogueBinding.h │ ├── ChannelDataProcessorBinding.cpp │ ├── ChannelDataProcessorBinding.h │ ├── CoreBinding.cpp │ ├── CoreBinding.h │ ├── DeepNodeBinding.cpp │ ├── DeepNodeBinding.h │ ├── FilterAlgoBinding.cpp │ ├── FilterAlgoBinding.h │ ├── FilterBinding.cpp │ ├── FilterBinding.h │ ├── GafferImageModule.cpp │ ├── IOBinding.cpp │ ├── IOBinding.h │ ├── ImageAlgoBinding.cpp │ ├── ImageAlgoBinding.h │ ├── ImageProcessorBinding.cpp │ ├── ImageProcessorBinding.h │ ├── MetadataBinding.cpp │ ├── MetadataBinding.h │ ├── MultiViewBinding.cpp │ ├── MultiViewBinding.h │ ├── OpenColorIOAlgoBinding.cpp │ ├── OpenColorIOAlgoBinding.h │ ├── OpenColorIOTransformBinding.cpp │ ├── OpenColorIOTransformBinding.h │ ├── ShapeBinding.cpp │ ├── ShapeBinding.h │ ├── TransformBinding.cpp │ ├── TransformBinding.h │ ├── UtilityNodeBinding.cpp │ ├── UtilityNodeBinding.h │ ├── WarpBinding.cpp │ └── WarpBinding.h ├── GafferImageTest │ └── ContextSanitiser.cpp ├── GafferImageTestModule │ └── GafferImageTestModule.cpp ├── GafferImageUI │ ├── ImageGadget.cpp │ ├── ImageView.cpp │ └── OpenColorIOAlgo.cpp ├── GafferImageUIModule │ ├── GafferImageUIModule.cpp │ ├── ImageGadgetBinding.cpp │ ├── ImageGadgetBinding.h │ ├── ImageViewBinding.cpp │ ├── ImageViewBinding.h │ ├── OpenColorIOAlgoBinding.cpp │ └── OpenColorIOAlgoBinding.h ├── GafferModule │ ├── ActionBinding.cpp │ ├── ActionBinding.h │ ├── AnimationBinding.cpp │ ├── AnimationBinding.h │ ├── ApplicationRootBinding.cpp │ ├── ApplicationRootBinding.h │ ├── ArrayPlugBinding.cpp │ ├── ArrayPlugBinding.h │ ├── BoxPlugBinding.cpp │ ├── BoxPlugBinding.h │ ├── CollectBinding.cpp │ ├── CollectBinding.h │ ├── CompoundDataPlugBinding.cpp │ ├── CompoundDataPlugBinding.h │ ├── CompoundNumericPlugBinding.cpp │ ├── CompoundNumericPlugBinding.h │ ├── ContextBinding.cpp │ ├── ContextBinding.h │ ├── ContextProcessorBinding.cpp │ ├── ContextProcessorBinding.h │ ├── DirtyPropagationScopeBinding.cpp │ ├── DirtyPropagationScopeBinding.h │ ├── DotBinding.cpp │ ├── DotBinding.h │ ├── ExpressionBinding.cpp │ ├── ExpressionBinding.h │ ├── GafferModule.cpp │ ├── GraphComponentBinding.cpp │ ├── GraphComponentBinding.h │ ├── MessagesBinding.cpp │ ├── MessagesBinding.h │ ├── MetadataAlgoBinding.cpp │ ├── MetadataAlgoBinding.h │ ├── MetadataBinding.cpp │ ├── MetadataBinding.h │ ├── MonitorBinding.cpp │ ├── MonitorBinding.h │ ├── NameValuePlugBinding.cpp │ ├── NameValuePlugBinding.h │ ├── NodeAlgoBinding.cpp │ ├── NodeAlgoBinding.h │ ├── NodeBinding.cpp │ ├── NodeBinding.h │ ├── NumericPlugBinding.cpp │ ├── NumericPlugBinding.h │ ├── OptionalValuePlugBinding.cpp │ ├── OptionalValuePlugBinding.h │ ├── ParallelAlgoBinding.cpp │ ├── ParallelAlgoBinding.h │ ├── PathBinding.cpp │ ├── PathBinding.h │ ├── PathFilterBinding.cpp │ ├── PathFilterBinding.h │ ├── PlugAlgoBinding.cpp │ ├── PlugAlgoBinding.h │ ├── PlugBinding.cpp │ ├── PlugBinding.h │ ├── ProcessBinding.cpp │ ├── ProcessBinding.h │ ├── ProcessMessageHandlerBinding.cpp │ ├── ProcessMessageHandlerBinding.h │ ├── RandomBinding.cpp │ ├── RandomBinding.h │ ├── ScriptNodeBinding.cpp │ ├── ScriptNodeBinding.h │ ├── SerialisationBinding.cpp │ ├── SerialisationBinding.h │ ├── SetBinding.cpp │ ├── SetBinding.h │ ├── ShufflesBinding.cpp │ ├── ShufflesBinding.h │ ├── SignalsBinding.cpp │ ├── SignalsBinding.h │ ├── SplinePlugBinding.cpp │ ├── SplinePlugBinding.h │ ├── SpreadsheetBinding.cpp │ ├── SpreadsheetBinding.h │ ├── StringAlgoBinding.h │ ├── StringPlugBinding.cpp │ ├── StringPlugBinding.h │ ├── SubGraphBinding.cpp │ ├── SubGraphBinding.h │ ├── SwitchBinding.cpp │ ├── SwitchBinding.h │ ├── Transform2DPlugBinding.cpp │ ├── Transform2DPlugBinding.h │ ├── TransformPlugBinding.cpp │ ├── TransformPlugBinding.h │ ├── TweakPlugBinding.cpp │ ├── TweakPlugBinding.h │ ├── TypedObjectPlugBinding.cpp │ ├── TypedObjectPlugBinding.h │ ├── TypedPlugBinding.cpp │ ├── TypedPlugBinding.h │ ├── UndoScopeBinding.cpp │ ├── UndoScopeBinding.h │ ├── ValuePlugBinding.cpp │ └── ValuePlugBinding.h ├── GafferOSL │ ├── CapturingErrorHandler.cpp │ ├── ClosurePlug.cpp │ ├── OSLCode.cpp │ ├── OSLExpressionEngine.cpp │ ├── OSLImage.cpp │ ├── OSLLight.cpp │ ├── OSLObject.cpp │ ├── OSLShader.cpp │ ├── ShadingEngine.cpp │ └── ShadingEngineAlgo.cpp ├── GafferOSLModule │ └── GafferOSLModule.cpp ├── GafferOSLUI │ ├── OSLImageUI.cpp │ └── OSLObjectUI.cpp ├── GafferOSLUIModule │ └── GafferOSLUIModule.cpp ├── GafferScene │ ├── AimConstraint.cpp │ ├── AttributeProcessor.cpp │ ├── AttributeQuery.cpp │ ├── AttributeTweaks.cpp │ ├── AttributeVisualiser.cpp │ ├── Attributes.cpp │ ├── BoundQuery.cpp │ ├── BranchCreator.cpp │ ├── Camera.cpp │ ├── CameraTweaks.cpp │ ├── Capsule.cpp │ ├── ChildNamesMap.cpp │ ├── ClippingPlane.cpp │ ├── ClosestPointSampler.cpp │ ├── CollectPrimitiveVariables.cpp │ ├── CollectScenes.cpp │ ├── CollectTransforms.cpp │ ├── Constraint.cpp │ ├── CoordinateSystem.cpp │ ├── CopyAttributes.cpp │ ├── CopyOptions.cpp │ ├── CopyPrimitiveVariables.cpp │ ├── Cryptomatte.cpp │ ├── Cube.cpp │ ├── CurveSampler.cpp │ ├── CustomAttributes.cpp │ ├── CustomOptions.cpp │ ├── Deformer.cpp │ ├── DeleteAttributes.cpp │ ├── DeleteCurves.cpp │ ├── DeleteFaces.cpp │ ├── DeleteGlobals.cpp │ ├── DeleteObject.cpp │ ├── DeleteOptions.cpp │ ├── DeleteOutputs.cpp │ ├── DeletePoints.cpp │ ├── DeletePrimitiveVariables.cpp │ ├── DeleteRenderPasses.cpp │ ├── DeleteSets.cpp │ ├── Duplicate.cpp │ ├── EditScopeAlgo.cpp │ ├── Encapsulate.cpp │ ├── ExistenceQuery.cpp │ ├── ExternalProcedural.cpp │ ├── Filter.cpp │ ├── FilterPlug.cpp │ ├── FilterProcessor.cpp │ ├── FilterQuery.cpp │ ├── FilterResults.cpp │ ├── FilteredSceneProcessor.cpp │ ├── FramingConstraint.cpp │ ├── FreezeTransform.cpp │ ├── GlobalShader.cpp │ ├── GlobalsProcessor.cpp │ ├── Grid.cpp │ ├── Group.cpp │ ├── IECoreGLPreview │ │ ├── AttributeVisualiser.cpp │ │ ├── LightFilterVisualiser.cpp │ │ ├── LightVisualiser.cpp │ │ ├── ObjectVisualiser.cpp │ │ ├── ProceduralVisualiser.cpp │ │ ├── Renderer.cpp │ │ └── Visualiser.cpp │ ├── IECoreScenePreview │ │ ├── CapturingRenderer.cpp │ │ ├── CompoundRenderer.cpp │ │ ├── Geometry.cpp │ │ ├── Placeholder.cpp │ │ ├── Procedural.cpp │ │ └── Renderer.cpp │ ├── ImageScatter.cpp │ ├── ImageToPoints.cpp │ ├── Instancer.cpp │ ├── InteractiveRender.cpp │ ├── Isolate.cpp │ ├── Light.cpp │ ├── LightFilter.cpp │ ├── LightToCamera.cpp │ ├── LocaliseAttributes.cpp │ ├── MapOffset.cpp │ ├── MapProjection.cpp │ ├── MergeScenes.cpp │ ├── MeshDistortion.cpp │ ├── MeshNormals.cpp │ ├── MeshSegments.cpp │ ├── MeshSplit.cpp │ ├── MeshTangents.cpp │ ├── MeshToPoints.cpp │ ├── MeshType.cpp │ ├── MotionPath.cpp │ ├── ObjectProcessor.cpp │ ├── ObjectSource.cpp │ ├── ObjectToScene.cpp │ ├── OpenGLAttributes.cpp │ ├── OpenGLRender.cpp │ ├── OpenGLShader.cpp │ ├── OptionQuery.cpp │ ├── OptionTweaks.cpp │ ├── Options.cpp │ ├── Orientation.cpp │ ├── Outputs.cpp │ ├── Parameters.cpp │ ├── Parent.cpp │ ├── ParentConstraint.cpp │ ├── PathFilter.cpp │ ├── Plane.cpp │ ├── PointConstraint.cpp │ ├── PointsType.cpp │ ├── PrimitiveSampler.cpp │ ├── PrimitiveVariableExists.cpp │ ├── PrimitiveVariableProcessor.cpp │ ├── PrimitiveVariableQuery.cpp │ ├── PrimitiveVariables.cpp │ ├── Prune.cpp │ ├── Rename.cpp │ ├── Render.cpp │ ├── RenderController.cpp │ ├── RenderPasses.cpp │ ├── RendererAlgo.cpp │ ├── ResamplePrimitiveVariables.cpp │ ├── ReverseWinding.cpp │ ├── Scatter.cpp │ ├── SceneAlgo.cpp │ ├── SceneElementProcessor.cpp │ ├── SceneFilterPathFilter.cpp │ ├── SceneNode.cpp │ ├── ScenePath.cpp │ ├── ScenePlug.cpp │ ├── SceneProcessor.cpp │ ├── SceneReader.cpp │ ├── SceneWriter.cpp │ ├── Set.cpp │ ├── SetAlgo.cpp │ ├── SetFilter.cpp │ ├── SetQuery.cpp │ ├── SetVisualiser.cpp │ ├── Shader.cpp │ ├── ShaderAssignment.cpp │ ├── ShaderPlug.cpp │ ├── ShaderQuery.cpp │ ├── ShaderTweaks.cpp │ ├── ShuffleAttributes.cpp │ ├── ShufflePrimitiveVariables.cpp │ ├── Sphere.cpp │ ├── StandardAttributes.cpp │ ├── StandardOptions.cpp │ ├── SubTree.cpp │ ├── Text.cpp │ ├── Transform.cpp │ ├── TransformQuery.cpp │ ├── UDIMQuery.cpp │ ├── UVSampler.cpp │ ├── Unencapsulate.cpp │ ├── UnionFilter.cpp │ ├── VisibleSetData.cpp │ └── Wireframe.cpp ├── GafferSceneModule │ ├── AttributesBinding.cpp │ ├── AttributesBinding.h │ ├── CoreBinding.cpp │ ├── CoreBinding.h │ ├── CryptomatteBinding.cpp │ ├── CryptomatteBinding.h │ ├── EditScopeAlgoBinding.cpp │ ├── EditScopeAlgoBinding.h │ ├── FilterBinding.cpp │ ├── FilterBinding.h │ ├── GafferSceneModule.cpp │ ├── GlobalsBinding.cpp │ ├── GlobalsBinding.h │ ├── HierarchyBinding.cpp │ ├── HierarchyBinding.h │ ├── IECoreGLPreviewBinding.cpp │ ├── IECoreGLPreviewBinding.h │ ├── IOBinding.cpp │ ├── IOBinding.h │ ├── ObjectProcessorBinding.cpp │ ├── ObjectProcessorBinding.h │ ├── OptionsBinding.cpp │ ├── OptionsBinding.h │ ├── PathMatcherBinding.h │ ├── PrimitiveSamplerBinding.cpp │ ├── PrimitiveSamplerBinding.h │ ├── PrimitiveVariablesBinding.cpp │ ├── PrimitiveVariablesBinding.h │ ├── PrimitivesBinding.cpp │ ├── PrimitivesBinding.h │ ├── QueryBinding.cpp │ ├── QueryBinding.h │ ├── RenderBinding.cpp │ ├── RenderBinding.h │ ├── RenderControllerBinding.cpp │ ├── RenderControllerBinding.h │ ├── SceneAlgoBinding.cpp │ ├── SceneAlgoBinding.h │ ├── ScenePathBinding.cpp │ ├── ScenePathBinding.h │ ├── SetAlgoBinding.cpp │ ├── SetAlgoBinding.h │ ├── ShaderBinding.cpp │ ├── ShaderBinding.h │ ├── TransformBinding.cpp │ ├── TransformBinding.h │ ├── TweaksBinding.cpp │ ├── TweaksBinding.h │ ├── VisibleSetBinding.cpp │ └── VisibleSetBinding.h ├── GafferSceneTest │ ├── CompoundObjectSource.cpp │ ├── ContextSanitiser.cpp │ ├── ScenePlugTest.cpp │ ├── TestLight.cpp │ ├── TestLightFilter.cpp │ ├── TestShader.cpp │ └── TraverseScene.cpp ├── GafferSceneTestModule │ └── GafferSceneTestModule.cpp ├── GafferSceneUI │ ├── AttributeInspector.cpp │ ├── AttributeQueryUI.cpp │ ├── CameraTool.cpp │ ├── CameraVisualiser.cpp │ ├── ClippingPlaneVisualiser.cpp │ ├── ContextAlgo.cpp │ ├── CoordinateSystemVisualiser.cpp │ ├── CropWindowTool.cpp │ ├── Inspector.cpp │ ├── LightTool.cpp │ ├── OutputBuffer.cpp │ ├── ParameterInspector.cpp │ ├── RotateTool.cpp │ ├── ScaleTool.cpp │ ├── SceneGadget.cpp │ ├── SceneView.cpp │ ├── SelectionTool.cpp │ ├── SetMembershipInspector.cpp │ ├── ShaderTweaksUI.cpp │ ├── ShaderUI.cpp │ ├── ShaderView.cpp │ ├── StandardLightVisualiser.cpp │ ├── TransformTool.cpp │ ├── TranslateTool.cpp │ └── UVView.cpp ├── GafferSceneUIModule │ ├── ContextAlgoBinding.cpp │ ├── ContextAlgoBinding.h │ ├── GafferSceneUIModule.cpp │ ├── HierarchyViewBinding.cpp │ ├── HierarchyViewBinding.h │ ├── InspectorBinding.cpp │ ├── InspectorBinding.h │ ├── LightEditorBinding.cpp │ ├── LightEditorBinding.h │ ├── QueryBinding.cpp │ ├── QueryBinding.h │ ├── SceneGadgetBinding.cpp │ ├── SceneGadgetBinding.h │ ├── SetEditorBinding.cpp │ ├── SetEditorBinding.h │ ├── ToolBinding.cpp │ ├── ToolBinding.h │ ├── ViewBinding.cpp │ ├── ViewBinding.h │ ├── VisualiserBinding.cpp │ └── VisualiserBinding.h ├── GafferTest │ ├── ComputeNodeTest.cpp │ ├── ContextTest.cpp │ ├── DownstreamIteratorTest.cpp │ ├── FilteredRecursiveChildIteratorTest.cpp │ ├── MultiplyNode.cpp │ ├── RandomTest.cpp │ └── RecursiveChildIteratorTest.cpp ├── GafferTestModule │ ├── GafferTestModule.cpp │ ├── LRUCacheTest.cpp │ ├── LRUCacheTest.h │ ├── MessagesTest.cpp │ ├── MessagesTest.h │ ├── MetadataTest.cpp │ ├── MetadataTest.h │ ├── ProcessTest.cpp │ ├── ProcessTest.h │ ├── SignalsTest.cpp │ ├── SignalsTest.h │ ├── TaskMutexTest.cpp │ ├── TaskMutexTest.h │ ├── ValuePlugTest.cpp │ └── ValuePlugTest.h ├── GafferUI │ ├── AnimationGadget.cpp │ ├── AnnotationsGadget.cpp │ ├── ArrayPlugUI.cpp │ ├── AuxiliaryConnectionsGadget.cpp │ ├── AuxiliaryNodeGadget.cpp │ ├── BackdropNodeGadget.cpp │ ├── BoxIONodeGadget.cpp │ ├── BoxUI.cpp │ ├── CompoundNodule.cpp │ ├── CompoundNumericNodule.cpp │ ├── ConnectionCreator.cpp │ ├── ConnectionGadget.cpp │ ├── ContainerGadget.cpp │ ├── ContextProcessorUI.cpp │ ├── DotNodeGadget.cpp │ ├── EditScopeUI.cpp │ ├── FPSGadget.cpp │ ├── Frame.cpp │ ├── Gadget.cpp │ ├── GraphGadget.cpp │ ├── GraphLayout.cpp │ ├── Handle.cpp │ ├── ImageGadget.cpp │ ├── IndividualContainer.cpp │ ├── LinearContainer.cpp │ ├── LoopUI.cpp │ ├── NameGadget.cpp │ ├── NameSwitchUI.cpp │ ├── NodeGadget.cpp │ ├── Nodule.cpp │ ├── NoduleLayout.cpp │ ├── PathColumn.cpp │ ├── PlugAdder.cpp │ ├── PlugGadget.cpp │ ├── Pointer.cpp │ ├── RotateHandle.cpp │ ├── ScaleHandle.cpp │ ├── SpacerGadget.cpp │ ├── StandardConnectionGadget.cpp │ ├── StandardGraphLayout.cpp │ ├── StandardNodeGadget.cpp │ ├── StandardNodule.cpp │ ├── StandardStyle.cpp │ ├── Style.cpp │ ├── SwitchUI.cpp │ ├── TextGadget.cpp │ ├── Tool.cpp │ ├── TranslateHandle.cpp │ ├── View.cpp │ └── ViewportGadget.cpp ├── GafferUIModule │ ├── AnimationGadgetBinding.cpp │ ├── AnimationGadgetBinding.h │ ├── ConnectionCreatorBinding.h │ ├── ConnectionCreatorBinding.inl │ ├── ConnectionGadgetBinding.cpp │ ├── ConnectionGadgetBinding.h │ ├── ContainerGadgetBinding.cpp │ ├── ContainerGadgetBinding.h │ ├── EventBinding.cpp │ ├── EventBinding.h │ ├── GLWidgetBinding.cpp │ ├── GLWidgetBinding.h │ ├── GadgetBinding.cpp │ ├── GadgetBinding.h │ ├── GafferUIModule.cpp │ ├── GraphGadgetBinding.cpp │ ├── GraphGadgetBinding.h │ ├── HandleBinding.cpp │ ├── HandleBinding.h │ ├── ImageGadgetBinding.cpp │ ├── ImageGadgetBinding.h │ ├── NameGadgetBinding.cpp │ ├── NameGadgetBinding.h │ ├── NodeGadgetBinding.cpp │ ├── NodeGadgetBinding.h │ ├── NoduleBinding.cpp │ ├── NoduleBinding.h │ ├── PathColumnBinding.cpp │ ├── PathColumnBinding.h │ ├── PathListingWidgetBinding.cpp │ ├── PathListingWidgetBinding.h │ ├── PlugAdderBinding.cpp │ ├── PlugAdderBinding.h │ ├── PlugGadgetBinding.cpp │ ├── PlugGadgetBinding.h │ ├── PointerBinding.cpp │ ├── PointerBinding.h │ ├── SpacerGadgetBinding.cpp │ ├── SpacerGadgetBinding.h │ ├── StyleBinding.cpp │ ├── StyleBinding.h │ ├── TextGadgetBinding.cpp │ ├── TextGadgetBinding.h │ ├── ToolBinding.cpp │ ├── ToolBinding.h │ ├── ViewBinding.cpp │ ├── ViewBinding.h │ ├── ViewportGadgetBinding.cpp │ ├── ViewportGadgetBinding.h │ ├── WidgetSignalBinding.cpp │ └── WidgetSignalBinding.h ├── GafferUSD │ ├── USDAttributes.cpp │ ├── USDLayerWriter.cpp │ ├── USDLight.cpp │ └── USDShader.cpp ├── GafferUSDModule │ └── GafferUSDModule.cpp ├── GafferVDB │ ├── LevelSetOffset.cpp │ ├── LevelSetToMesh.cpp │ ├── MeshToLevelSet.cpp │ ├── PointsGridToPoints.cpp │ ├── PointsToLevelSet.cpp │ ├── SphereLevelSet.cpp │ └── VolumeScatter.cpp ├── GafferVDBModule │ └── GafferVDBModule.cpp ├── GafferVDBUI │ └── VDBVisualiser.cpp ├── GafferVDBUIModule │ └── GafferVDBUIModule.cpp ├── IECoreArnold │ ├── CameraAlgo.cpp │ ├── CurvesAlgo.cpp │ ├── MeshAlgo.cpp │ ├── NodeAlgo.cpp │ ├── ParameterAlgo.cpp │ ├── PointsAlgo.cpp │ ├── ProceduralAlgo.cpp │ ├── Renderer.cpp │ ├── ShaderNetworkAlgo.cpp │ ├── ShapeAlgo.cpp │ ├── SphereAlgo.cpp │ ├── UniverseBlock.cpp │ └── VDBAlgo.cpp ├── IECoreArnoldModule │ └── IECoreArnoldModule.cpp ├── IECoreDelight │ ├── CameraAlgo.cpp │ ├── CurvesAlgo.cpp │ ├── DiskAlgo.cpp │ ├── Display.cpp │ ├── GeometryAlgo.cpp │ ├── MeshAlgo.cpp │ ├── NodeAlgo.cpp │ ├── ParameterList.cpp │ ├── PointsAlgo.cpp │ ├── Renderer.cpp │ ├── ShaderNetworkAlgo.cpp │ ├── SphereAlgo.cpp │ └── VDBAlgo.cpp └── IECoreDelightModule │ └── IECoreDelightModule.cpp └── startup ├── Gaffer ├── animationCompatibility.py ├── boxIOCompatibility.py ├── cache.py ├── compoundDataPlugCompatibility.py ├── compoundPlugCompatibility.py ├── contextCompatibility.py ├── contextProcessorCompatibility.py ├── loopCompatibility.py ├── metadataCompatibility.py ├── plugFlagsCompatibility.py ├── randomCompatibility.py ├── signalsCompatibility.py ├── splinePlugCompatibility.py ├── spreadsheetCompatibility.py ├── switchCompatibility.py └── tweakPlugCompatibility.py ├── GafferArnoldUI ├── arnoldExamples.py └── cameraTweaks.py ├── GafferCycles └── userDefaults.py ├── GafferCyclesUI └── cyclesExamples.py ├── GafferImage ├── catalogueCompatibility.py ├── catromFilterCompatibility.py ├── channelMaskPlugCompatibility.py ├── contextProcessorCompatibility.py ├── defaultColorSpace.py ├── gradeCompatibility.py ├── imageStatsCompatibility.py ├── loopCompatibility.py ├── switchCompatibility.py └── uvWarpCompatibility.py ├── GafferImageUI └── catalogueUICompatibility.py ├── GafferOSL ├── oslObjectAndImageCompatibility.py ├── oslObjectCompatibility.py └── shaderNameCompatibility.py ├── GafferOSLUI ├── oslExamples.py └── splineUIMetadata.py ├── GafferScene ├── alembic.py ├── arnoldLights.py ├── attributesCompatibility.py ├── branchCreatorCompatibility.py ├── cameraCompatibility.py ├── collectScenesCompatibility.py ├── contextProcessorCompatibility.py ├── copyAttributesCompatibility.py ├── copyOptionsCompatibility.py ├── cyclesLights.py ├── delightLights.py ├── instancerCompatibility.py ├── lightCompatibility.py ├── lightTweakCompatibility.py ├── loopCompatibility.py ├── parentCompatibility.py ├── pathMatcherCompatibility.py ├── pointsTypeCompatibility.py ├── rendererAlgoCompatibility.py ├── seedsCompatibility.py ├── setFilterCompatibility.py ├── shaderAssignmentCompatibility.py ├── sharedSceneInterfaces.py ├── switchCompatibility.py ├── tweakPlugCompatibility.py ├── usd.py ├── usdLights.py ├── uvCompatibility.py └── vdb.py ├── GafferSceneUI ├── catalogue.py ├── gafferSceneExamples.py ├── hierarchyViewCompatibility.py ├── oslHideShaders.py ├── sceneViewCompatibility.py └── sceneViewInspector.py ├── GafferUI ├── editorCompatibility.py ├── gafferExamples.py ├── layoutBackwardsCompatibility.py ├── pathListingWidgetCompatibility.py └── sliderCompatibility.py ├── browser ├── bookmarks.py ├── ocio.py ├── ocioCompatibility.py └── previews.py ├── dispatch ├── gui.py ├── localDispatcher.py └── project.py ├── gui ├── arnoldViewerSettings.gfr ├── bookmarks.py ├── browser.py ├── cacheCompatibility.py ├── cyclesViewerSettings.gfr ├── editor.py ├── formats.py ├── graphEditor.py ├── layouts.py ├── lightEditor.py ├── localDispatcher.py ├── menus.py ├── nodeEditor.py ├── ocio.py ├── ocioCompatibility.py ├── outputs.py ├── performanceMonitor.py ├── project.py ├── pythonEditor.py ├── shaderPresets.py ├── shaderView.py ├── usd.py └── viewer.py ├── op └── bookmarks.py └── view ├── ocio.py ├── ocioCompatibility.py └── previews.py /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/Changes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/SConstruct -------------------------------------------------------------------------------- /apps/browser/browser-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/browser/browser-1.py -------------------------------------------------------------------------------- /apps/cli/cli-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/cli/cli-1.py -------------------------------------------------------------------------------- /apps/dispatch/dispatch-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/dispatch/dispatch-1.py -------------------------------------------------------------------------------- /apps/env/env-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/env/env-1.py -------------------------------------------------------------------------------- /apps/execute/execute-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/execute/execute-1.py -------------------------------------------------------------------------------- /apps/gui/gui-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/gui/gui-1.py -------------------------------------------------------------------------------- /apps/license/license-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/license/license-1.py -------------------------------------------------------------------------------- /apps/op/op-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/op/op-1.py -------------------------------------------------------------------------------- /apps/python/python-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/python/python-1.py -------------------------------------------------------------------------------- /apps/screengrab/screengrab-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/screengrab/screengrab-1.py -------------------------------------------------------------------------------- /apps/stats/stats-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/stats/stats-1.py -------------------------------------------------------------------------------- /apps/test/test-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/test/test-1.py -------------------------------------------------------------------------------- /apps/view/view-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/apps/view/view-1.py -------------------------------------------------------------------------------- /arnoldPlugins/gaffer.mtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/arnoldPlugins/gaffer.mtd -------------------------------------------------------------------------------- /bin/__gaffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/bin/__gaffer.py -------------------------------------------------------------------------------- /bin/gaffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/bin/gaffer -------------------------------------------------------------------------------- /bin/gaffer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/bin/gaffer.cmd -------------------------------------------------------------------------------- /config/brew/Casks/inkscape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/brew/Casks/inkscape.rb -------------------------------------------------------------------------------- /config/ie/installAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/ie/installAll -------------------------------------------------------------------------------- /config/ie/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/ie/options -------------------------------------------------------------------------------- /config/ie/postInstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/ie/postInstall -------------------------------------------------------------------------------- /config/ie/publicRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/ie/publicRelease -------------------------------------------------------------------------------- /config/installDependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/installDependencies.sh -------------------------------------------------------------------------------- /config/jh/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/jh/options -------------------------------------------------------------------------------- /config/publishRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/publishRelease.py -------------------------------------------------------------------------------- /config/validateRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/config/validateRelease.py -------------------------------------------------------------------------------- /contrib/arnold/mtoa.mtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/arnold/mtoa.mtd -------------------------------------------------------------------------------- /contrib/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/cmake/cmake/FindOSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/cmake/cmake/FindOSL.cmake -------------------------------------------------------------------------------- /contrib/cmake/cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/cmake/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /contrib/cmake/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/cmake/readme.md -------------------------------------------------------------------------------- /contrib/dd/notes/noodleShapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/dd/notes/noodleShapes.svg -------------------------------------------------------------------------------- /contrib/jh/notes/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/jh/notes/docs.txt -------------------------------------------------------------------------------- /contrib/jh/notes/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/jh/notes/notes.txt -------------------------------------------------------------------------------- /contrib/jh/notes/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/jh/notes/todo.txt -------------------------------------------------------------------------------- /contrib/ops/convertAnimCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/ops/convertAnimCache.py -------------------------------------------------------------------------------- /contrib/scripts/qt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/scripts/qt5.py -------------------------------------------------------------------------------- /contrib/scripts/qt5Check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/contrib/scripts/qt5Check.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | .doctrees 2 | -------------------------------------------------------------------------------- /doc/examples/boxBasics.gfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/examples/boxBasics.gfr -------------------------------------------------------------------------------- /doc/references/arrow.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/references/arrow.grf -------------------------------------------------------------------------------- /doc/references/highlightArea.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/references/highlightArea.grf -------------------------------------------------------------------------------- /doc/references/textHeading.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/references/textHeading.grf -------------------------------------------------------------------------------- /doc/source/.gitignore: -------------------------------------------------------------------------------- 1 | gafferVars.json 2 | -------------------------------------------------------------------------------- /doc/source/Appendices/License/.gitignore: -------------------------------------------------------------------------------- 1 | index.md 2 | -------------------------------------------------------------------------------- /doc/source/Appendices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/Appendices/index.md -------------------------------------------------------------------------------- /doc/source/GettingStarted/TutorialAssemblingTheGafferBot/.gitignore: -------------------------------------------------------------------------------- 1 | images -------------------------------------------------------------------------------- /doc/source/Interface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/Interface/index.md -------------------------------------------------------------------------------- /doc/source/Reference/CommandLineReference/.gitignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /doc/source/Reference/NodeReference/.gitignore: -------------------------------------------------------------------------------- 1 | Gaffer* 2 | index.md 3 | -------------------------------------------------------------------------------- /doc/source/Reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/Reference/index.md -------------------------------------------------------------------------------- /doc/source/ReleaseNotes/.gitignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /doc/source/WorkingWithScenes/AnatomyOfAScene/.gitignore: -------------------------------------------------------------------------------- 1 | /images 2 | -------------------------------------------------------------------------------- /doc/source/WorkingWithTheNodeGraph/TutorialSettingUpASpreadsheet/.gitignore: -------------------------------------------------------------------------------- 1 | images -------------------------------------------------------------------------------- /doc/source/WorkingWithTheNodeGraph/TutorialUsingTheOSLCodeNode/.gitignore: -------------------------------------------------------------------------------- 1 | images 2 | -------------------------------------------------------------------------------- /doc/source/WorkingWithTheNodeGraph/UsingThePerformanceMonitor/.gitignore: -------------------------------------------------------------------------------- 1 | images -------------------------------------------------------------------------------- /doc/source/WorkingWithThePythonScriptingAPI/TutorialNodeGraphEditingInPython/.gitignore: -------------------------------------------------------------------------------- 1 | images 2 | -------------------------------------------------------------------------------- /doc/source/WorkingWithThePythonScriptingAPI/TutorialStartupConfig2/.gitignore: -------------------------------------------------------------------------------- 1 | images 2 | -------------------------------------------------------------------------------- /doc/source/WorkingWithThePythonScriptingAPI/TutorialStartupConfig3/.gitignore: -------------------------------------------------------------------------------- 1 | images/exampleMacbethChart.png 2 | -------------------------------------------------------------------------------- /doc/source/_static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/_static/.gitignore -------------------------------------------------------------------------------- /doc/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/_static/favicon.ico -------------------------------------------------------------------------------- /doc/source/_static/gaffer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/_static/gaffer.css -------------------------------------------------------------------------------- /doc/source/_static/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/_static/normalize.css -------------------------------------------------------------------------------- /doc/source/_static/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/_static/scrollspy.js -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/gafferVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/gafferVars.py -------------------------------------------------------------------------------- /doc/source/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/generate.sh -------------------------------------------------------------------------------- /doc/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/source/index.md -------------------------------------------------------------------------------- /doc/startup/gui/lut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/doc/startup/gui/lut.py -------------------------------------------------------------------------------- /glsl/Constant.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/glsl/Constant.frag -------------------------------------------------------------------------------- /glsl/FacingRatio.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/glsl/FacingRatio.frag -------------------------------------------------------------------------------- /glsl/Texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/glsl/Texture.frag -------------------------------------------------------------------------------- /include/Gaffer/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Action.h -------------------------------------------------------------------------------- /include/Gaffer/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Animation.h -------------------------------------------------------------------------------- /include/Gaffer/ApplicationRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ApplicationRoot.h -------------------------------------------------------------------------------- /include/Gaffer/ArrayPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ArrayPlug.h -------------------------------------------------------------------------------- /include/Gaffer/Backdrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Backdrop.h -------------------------------------------------------------------------------- /include/Gaffer/BackgroundTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BackgroundTask.h -------------------------------------------------------------------------------- /include/Gaffer/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Box.h -------------------------------------------------------------------------------- /include/Gaffer/BoxIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BoxIO.h -------------------------------------------------------------------------------- /include/Gaffer/BoxIO.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BoxIO.inl -------------------------------------------------------------------------------- /include/Gaffer/BoxIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BoxIn.h -------------------------------------------------------------------------------- /include/Gaffer/BoxOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BoxOut.h -------------------------------------------------------------------------------- /include/Gaffer/BoxOut.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BoxOut.inl -------------------------------------------------------------------------------- /include/Gaffer/BoxPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/BoxPlug.h -------------------------------------------------------------------------------- /include/Gaffer/ChildSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ChildSet.h -------------------------------------------------------------------------------- /include/Gaffer/Collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Collect.h -------------------------------------------------------------------------------- /include/Gaffer/CompoundDataPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/CompoundDataPlug.h -------------------------------------------------------------------------------- /include/Gaffer/ComputeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ComputeNode.h -------------------------------------------------------------------------------- /include/Gaffer/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Container.h -------------------------------------------------------------------------------- /include/Gaffer/Container.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Container.inl -------------------------------------------------------------------------------- /include/Gaffer/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Context.h -------------------------------------------------------------------------------- /include/Gaffer/Context.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Context.inl -------------------------------------------------------------------------------- /include/Gaffer/ContextAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ContextAlgo.h -------------------------------------------------------------------------------- /include/Gaffer/ContextMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ContextMonitor.h -------------------------------------------------------------------------------- /include/Gaffer/ContextProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ContextProcessor.h -------------------------------------------------------------------------------- /include/Gaffer/ContextQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ContextQuery.h -------------------------------------------------------------------------------- /include/Gaffer/ContextVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ContextVariables.h -------------------------------------------------------------------------------- /include/Gaffer/DependencyNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/DependencyNode.h -------------------------------------------------------------------------------- /include/Gaffer/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Dot.h -------------------------------------------------------------------------------- /include/Gaffer/Dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Dot.inl -------------------------------------------------------------------------------- /include/Gaffer/EditScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/EditScope.h -------------------------------------------------------------------------------- /include/Gaffer/EditScope.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/EditScope.inl -------------------------------------------------------------------------------- /include/Gaffer/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Export.h -------------------------------------------------------------------------------- /include/Gaffer/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Expression.h -------------------------------------------------------------------------------- /include/Gaffer/FileSystemPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/FileSystemPath.h -------------------------------------------------------------------------------- /include/Gaffer/GraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/GraphComponent.h -------------------------------------------------------------------------------- /include/Gaffer/GraphComponent.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/GraphComponent.inl -------------------------------------------------------------------------------- /include/Gaffer/LeafPathFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/LeafPathFilter.h -------------------------------------------------------------------------------- /include/Gaffer/Loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Loop.h -------------------------------------------------------------------------------- /include/Gaffer/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Metadata.h -------------------------------------------------------------------------------- /include/Gaffer/Metadata.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Metadata.inl -------------------------------------------------------------------------------- /include/Gaffer/MetadataAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/MetadataAlgo.h -------------------------------------------------------------------------------- /include/Gaffer/MetadataAlgo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/MetadataAlgo.inl -------------------------------------------------------------------------------- /include/Gaffer/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Monitor.h -------------------------------------------------------------------------------- /include/Gaffer/MonitorAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/MonitorAlgo.h -------------------------------------------------------------------------------- /include/Gaffer/NameSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NameSwitch.h -------------------------------------------------------------------------------- /include/Gaffer/NameValuePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NameValuePlug.h -------------------------------------------------------------------------------- /include/Gaffer/NameValuePlug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NameValuePlug.inl -------------------------------------------------------------------------------- /include/Gaffer/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Node.h -------------------------------------------------------------------------------- /include/Gaffer/NodeAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NodeAlgo.h -------------------------------------------------------------------------------- /include/Gaffer/NodeAlgo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NodeAlgo.inl -------------------------------------------------------------------------------- /include/Gaffer/NumericPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NumericPlug.h -------------------------------------------------------------------------------- /include/Gaffer/NumericPlug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/NumericPlug.inl -------------------------------------------------------------------------------- /include/Gaffer/ParallelAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ParallelAlgo.h -------------------------------------------------------------------------------- /include/Gaffer/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Path.h -------------------------------------------------------------------------------- /include/Gaffer/PathFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/PathFilter.h -------------------------------------------------------------------------------- /include/Gaffer/Plug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Plug.h -------------------------------------------------------------------------------- /include/Gaffer/Plug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Plug.inl -------------------------------------------------------------------------------- /include/Gaffer/PlugAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/PlugAlgo.h -------------------------------------------------------------------------------- /include/Gaffer/PlugAlgo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/PlugAlgo.inl -------------------------------------------------------------------------------- /include/Gaffer/PlugType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/PlugType.h -------------------------------------------------------------------------------- /include/Gaffer/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Preferences.h -------------------------------------------------------------------------------- /include/Gaffer/Private/SlotBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Private/SlotBase.h -------------------------------------------------------------------------------- /include/Gaffer/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Process.h -------------------------------------------------------------------------------- /include/Gaffer/Process.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Process.inl -------------------------------------------------------------------------------- /include/Gaffer/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Random.h -------------------------------------------------------------------------------- /include/Gaffer/RandomChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/RandomChoice.h -------------------------------------------------------------------------------- /include/Gaffer/RandomChoice.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/RandomChoice.inl -------------------------------------------------------------------------------- /include/Gaffer/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Reference.h -------------------------------------------------------------------------------- /include/Gaffer/ScriptNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ScriptNode.h -------------------------------------------------------------------------------- /include/Gaffer/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Set.h -------------------------------------------------------------------------------- /include/Gaffer/ShufflePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ShufflePlug.h -------------------------------------------------------------------------------- /include/Gaffer/ShufflePlug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ShufflePlug.inl -------------------------------------------------------------------------------- /include/Gaffer/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Signals.h -------------------------------------------------------------------------------- /include/Gaffer/Signals.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Signals.inl -------------------------------------------------------------------------------- /include/Gaffer/SplinePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/SplinePlug.h -------------------------------------------------------------------------------- /include/Gaffer/Spreadsheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Spreadsheet.h -------------------------------------------------------------------------------- /include/Gaffer/Spreadsheet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Spreadsheet.inl -------------------------------------------------------------------------------- /include/Gaffer/StandardSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/StandardSet.h -------------------------------------------------------------------------------- /include/Gaffer/StandardSet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/StandardSet.inl -------------------------------------------------------------------------------- /include/Gaffer/StringPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/StringPlug.h -------------------------------------------------------------------------------- /include/Gaffer/SubGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/SubGraph.h -------------------------------------------------------------------------------- /include/Gaffer/Switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Switch.h -------------------------------------------------------------------------------- /include/Gaffer/ThreadMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ThreadMonitor.h -------------------------------------------------------------------------------- /include/Gaffer/ThreadState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ThreadState.h -------------------------------------------------------------------------------- /include/Gaffer/TimeWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TimeWarp.h -------------------------------------------------------------------------------- /include/Gaffer/Transform2DPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Transform2DPlug.h -------------------------------------------------------------------------------- /include/Gaffer/TransformPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TransformPlug.h -------------------------------------------------------------------------------- /include/Gaffer/TweakPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TweakPlug.h -------------------------------------------------------------------------------- /include/Gaffer/TweakPlug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TweakPlug.inl -------------------------------------------------------------------------------- /include/Gaffer/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TypeIds.h -------------------------------------------------------------------------------- /include/Gaffer/TypedObjectPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TypedObjectPlug.h -------------------------------------------------------------------------------- /include/Gaffer/TypedPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TypedPlug.h -------------------------------------------------------------------------------- /include/Gaffer/TypedPlug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/TypedPlug.inl -------------------------------------------------------------------------------- /include/Gaffer/UndoScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/UndoScope.h -------------------------------------------------------------------------------- /include/Gaffer/VTuneMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/VTuneMonitor.h -------------------------------------------------------------------------------- /include/Gaffer/ValuePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ValuePlug.h -------------------------------------------------------------------------------- /include/Gaffer/ValuePlug.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/ValuePlug.inl -------------------------------------------------------------------------------- /include/Gaffer/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/Gaffer/Version.h.in -------------------------------------------------------------------------------- /include/GafferArnold/ArnoldVDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferArnold/ArnoldVDB.h -------------------------------------------------------------------------------- /include/GafferArnold/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferArnold/Export.h -------------------------------------------------------------------------------- /include/GafferArnold/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferArnold/TypeIds.h -------------------------------------------------------------------------------- /include/GafferArnoldUI/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferArnoldUI/Export.h -------------------------------------------------------------------------------- /include/GafferBindings/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferBindings/Export.h -------------------------------------------------------------------------------- /include/GafferCortex/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferCortex/Export.h -------------------------------------------------------------------------------- /include/GafferCortex/OpHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferCortex/OpHolder.h -------------------------------------------------------------------------------- /include/GafferCortex/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferCortex/TypeIds.h -------------------------------------------------------------------------------- /include/GafferCycles/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferCycles/Export.h -------------------------------------------------------------------------------- /include/GafferCycles/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferCycles/TypeIds.h -------------------------------------------------------------------------------- /include/GafferDelight/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferDelight/Export.h -------------------------------------------------------------------------------- /include/GafferDelight/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferDelight/TypeIds.h -------------------------------------------------------------------------------- /include/GafferDispatch/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferDispatch/Export.h -------------------------------------------------------------------------------- /include/GafferDispatch/TaskList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferDispatch/TaskList.h -------------------------------------------------------------------------------- /include/GafferDispatch/TaskNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferDispatch/TaskNode.h -------------------------------------------------------------------------------- /include/GafferDispatch/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferDispatch/TypeIds.h -------------------------------------------------------------------------------- /include/GafferImage/Blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Blur.h -------------------------------------------------------------------------------- /include/GafferImage/BufferAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/BufferAlgo.h -------------------------------------------------------------------------------- /include/GafferImage/CDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/CDL.h -------------------------------------------------------------------------------- /include/GafferImage/Catalogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Catalogue.h -------------------------------------------------------------------------------- /include/GafferImage/Clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Clamp.h -------------------------------------------------------------------------------- /include/GafferImage/ColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ColorSpace.h -------------------------------------------------------------------------------- /include/GafferImage/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Constant.h -------------------------------------------------------------------------------- /include/GafferImage/CopyViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/CopyViews.h -------------------------------------------------------------------------------- /include/GafferImage/CreateViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/CreateViews.h -------------------------------------------------------------------------------- /include/GafferImage/Crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Crop.h -------------------------------------------------------------------------------- /include/GafferImage/DeepHoldout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeepHoldout.h -------------------------------------------------------------------------------- /include/GafferImage/DeepMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeepMerge.h -------------------------------------------------------------------------------- /include/GafferImage/DeepRecolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeepRecolor.h -------------------------------------------------------------------------------- /include/GafferImage/DeepSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeepSampler.h -------------------------------------------------------------------------------- /include/GafferImage/DeepState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeepState.h -------------------------------------------------------------------------------- /include/GafferImage/DeepToFlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeepToFlat.h -------------------------------------------------------------------------------- /include/GafferImage/DeleteViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/DeleteViews.h -------------------------------------------------------------------------------- /include/GafferImage/Dilate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Dilate.h -------------------------------------------------------------------------------- /include/GafferImage/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Display.h -------------------------------------------------------------------------------- /include/GafferImage/Empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Empty.h -------------------------------------------------------------------------------- /include/GafferImage/Erode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Erode.h -------------------------------------------------------------------------------- /include/GafferImage/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Export.h -------------------------------------------------------------------------------- /include/GafferImage/FilterAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/FilterAlgo.h -------------------------------------------------------------------------------- /include/GafferImage/FlatToDeep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/FlatToDeep.h -------------------------------------------------------------------------------- /include/GafferImage/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Format.h -------------------------------------------------------------------------------- /include/GafferImage/Format.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Format.inl -------------------------------------------------------------------------------- /include/GafferImage/FormatData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/FormatData.h -------------------------------------------------------------------------------- /include/GafferImage/FormatPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/FormatPlug.h -------------------------------------------------------------------------------- /include/GafferImage/FormatQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/FormatQuery.h -------------------------------------------------------------------------------- /include/GafferImage/Grade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Grade.h -------------------------------------------------------------------------------- /include/GafferImage/ImageAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImageAlgo.h -------------------------------------------------------------------------------- /include/GafferImage/ImageAlgo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImageAlgo.inl -------------------------------------------------------------------------------- /include/GafferImage/ImageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImageNode.h -------------------------------------------------------------------------------- /include/GafferImage/ImagePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImagePlug.h -------------------------------------------------------------------------------- /include/GafferImage/ImageReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImageReader.h -------------------------------------------------------------------------------- /include/GafferImage/ImageStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImageStats.h -------------------------------------------------------------------------------- /include/GafferImage/ImageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/ImageWriter.h -------------------------------------------------------------------------------- /include/GafferImage/LUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/LUT.h -------------------------------------------------------------------------------- /include/GafferImage/Median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Median.h -------------------------------------------------------------------------------- /include/GafferImage/Merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Merge.h -------------------------------------------------------------------------------- /include/GafferImage/Mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Mirror.h -------------------------------------------------------------------------------- /include/GafferImage/Mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Mix.h -------------------------------------------------------------------------------- /include/GafferImage/Offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Offset.h -------------------------------------------------------------------------------- /include/GafferImage/Premultiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Premultiply.h -------------------------------------------------------------------------------- /include/GafferImage/Ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Ramp.h -------------------------------------------------------------------------------- /include/GafferImage/RankFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/RankFilter.h -------------------------------------------------------------------------------- /include/GafferImage/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Rectangle.h -------------------------------------------------------------------------------- /include/GafferImage/Resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Resample.h -------------------------------------------------------------------------------- /include/GafferImage/Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Resize.h -------------------------------------------------------------------------------- /include/GafferImage/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Sampler.h -------------------------------------------------------------------------------- /include/GafferImage/Sampler.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Sampler.inl -------------------------------------------------------------------------------- /include/GafferImage/Saturation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Saturation.h -------------------------------------------------------------------------------- /include/GafferImage/SelectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/SelectView.h -------------------------------------------------------------------------------- /include/GafferImage/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Shape.h -------------------------------------------------------------------------------- /include/GafferImage/Shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Shuffle.h -------------------------------------------------------------------------------- /include/GafferImage/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Text.h -------------------------------------------------------------------------------- /include/GafferImage/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/TypeIds.h -------------------------------------------------------------------------------- /include/GafferImage/VectorWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/VectorWarp.h -------------------------------------------------------------------------------- /include/GafferImage/Warp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImage/Warp.h -------------------------------------------------------------------------------- /include/GafferImageTest/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImageTest/Export.h -------------------------------------------------------------------------------- /include/GafferImageUI/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImageUI/Export.h -------------------------------------------------------------------------------- /include/GafferImageUI/ImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImageUI/ImageView.h -------------------------------------------------------------------------------- /include/GafferImageUI/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferImageUI/TypeIds.h -------------------------------------------------------------------------------- /include/GafferOSL/ClosurePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/ClosurePlug.h -------------------------------------------------------------------------------- /include/GafferOSL/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/Export.h -------------------------------------------------------------------------------- /include/GafferOSL/OSLCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/OSLCode.h -------------------------------------------------------------------------------- /include/GafferOSL/OSLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/OSLImage.h -------------------------------------------------------------------------------- /include/GafferOSL/OSLLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/OSLLight.h -------------------------------------------------------------------------------- /include/GafferOSL/OSLObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/OSLObject.h -------------------------------------------------------------------------------- /include/GafferOSL/OSLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/OSLShader.h -------------------------------------------------------------------------------- /include/GafferOSL/ShadingEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/ShadingEngine.h -------------------------------------------------------------------------------- /include/GafferOSL/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferOSL/TypeIds.h -------------------------------------------------------------------------------- /include/GafferScene/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Attributes.h -------------------------------------------------------------------------------- /include/GafferScene/BoundQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/BoundQuery.h -------------------------------------------------------------------------------- /include/GafferScene/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Camera.h -------------------------------------------------------------------------------- /include/GafferScene/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Capsule.h -------------------------------------------------------------------------------- /include/GafferScene/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Constraint.h -------------------------------------------------------------------------------- /include/GafferScene/CopyOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/CopyOptions.h -------------------------------------------------------------------------------- /include/GafferScene/Cryptomatte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Cryptomatte.h -------------------------------------------------------------------------------- /include/GafferScene/Cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Cube.h -------------------------------------------------------------------------------- /include/GafferScene/Deformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Deformer.h -------------------------------------------------------------------------------- /include/GafferScene/DeleteFaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/DeleteFaces.h -------------------------------------------------------------------------------- /include/GafferScene/DeleteSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/DeleteSets.h -------------------------------------------------------------------------------- /include/GafferScene/Duplicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Duplicate.h -------------------------------------------------------------------------------- /include/GafferScene/Encapsulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Encapsulate.h -------------------------------------------------------------------------------- /include/GafferScene/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Export.h -------------------------------------------------------------------------------- /include/GafferScene/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Filter.h -------------------------------------------------------------------------------- /include/GafferScene/FilterPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/FilterPlug.h -------------------------------------------------------------------------------- /include/GafferScene/FilterQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/FilterQuery.h -------------------------------------------------------------------------------- /include/GafferScene/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Grid.h -------------------------------------------------------------------------------- /include/GafferScene/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Group.h -------------------------------------------------------------------------------- /include/GafferScene/Instancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Instancer.h -------------------------------------------------------------------------------- /include/GafferScene/Isolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Isolate.h -------------------------------------------------------------------------------- /include/GafferScene/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Light.h -------------------------------------------------------------------------------- /include/GafferScene/LightFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/LightFilter.h -------------------------------------------------------------------------------- /include/GafferScene/MapOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/MapOffset.h -------------------------------------------------------------------------------- /include/GafferScene/MergeScenes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/MergeScenes.h -------------------------------------------------------------------------------- /include/GafferScene/MeshNormals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/MeshNormals.h -------------------------------------------------------------------------------- /include/GafferScene/MeshSplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/MeshSplit.h -------------------------------------------------------------------------------- /include/GafferScene/MeshType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/MeshType.h -------------------------------------------------------------------------------- /include/GafferScene/MotionPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/MotionPath.h -------------------------------------------------------------------------------- /include/GafferScene/OptionQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/OptionQuery.h -------------------------------------------------------------------------------- /include/GafferScene/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Options.h -------------------------------------------------------------------------------- /include/GafferScene/Orientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Orientation.h -------------------------------------------------------------------------------- /include/GafferScene/Outputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Outputs.h -------------------------------------------------------------------------------- /include/GafferScene/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Parameters.h -------------------------------------------------------------------------------- /include/GafferScene/Parent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Parent.h -------------------------------------------------------------------------------- /include/GafferScene/PathFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/PathFilter.h -------------------------------------------------------------------------------- /include/GafferScene/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Plane.h -------------------------------------------------------------------------------- /include/GafferScene/PointsType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/PointsType.h -------------------------------------------------------------------------------- /include/GafferScene/Prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Prune.h -------------------------------------------------------------------------------- /include/GafferScene/Rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Rename.h -------------------------------------------------------------------------------- /include/GafferScene/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Render.h -------------------------------------------------------------------------------- /include/GafferScene/Scatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Scatter.h -------------------------------------------------------------------------------- /include/GafferScene/SceneAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SceneAlgo.h -------------------------------------------------------------------------------- /include/GafferScene/SceneAlgo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SceneAlgo.inl -------------------------------------------------------------------------------- /include/GafferScene/SceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SceneNode.h -------------------------------------------------------------------------------- /include/GafferScene/ScenePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/ScenePath.h -------------------------------------------------------------------------------- /include/GafferScene/ScenePlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/ScenePlug.h -------------------------------------------------------------------------------- /include/GafferScene/SceneReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SceneReader.h -------------------------------------------------------------------------------- /include/GafferScene/SceneWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SceneWriter.h -------------------------------------------------------------------------------- /include/GafferScene/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Set.h -------------------------------------------------------------------------------- /include/GafferScene/SetAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SetAlgo.h -------------------------------------------------------------------------------- /include/GafferScene/SetFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SetFilter.h -------------------------------------------------------------------------------- /include/GafferScene/SetQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SetQuery.h -------------------------------------------------------------------------------- /include/GafferScene/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Shader.h -------------------------------------------------------------------------------- /include/GafferScene/ShaderPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/ShaderPlug.h -------------------------------------------------------------------------------- /include/GafferScene/ShaderQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/ShaderQuery.h -------------------------------------------------------------------------------- /include/GafferScene/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Sphere.h -------------------------------------------------------------------------------- /include/GafferScene/SubTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/SubTree.h -------------------------------------------------------------------------------- /include/GafferScene/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Text.h -------------------------------------------------------------------------------- /include/GafferScene/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Transform.h -------------------------------------------------------------------------------- /include/GafferScene/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/TypeIds.h -------------------------------------------------------------------------------- /include/GafferScene/UDIMQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/UDIMQuery.h -------------------------------------------------------------------------------- /include/GafferScene/UVSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/UVSampler.h -------------------------------------------------------------------------------- /include/GafferScene/UnionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/UnionFilter.h -------------------------------------------------------------------------------- /include/GafferScene/VisibleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/VisibleSet.h -------------------------------------------------------------------------------- /include/GafferScene/Wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferScene/Wireframe.h -------------------------------------------------------------------------------- /include/GafferSceneTest/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneTest/Export.h -------------------------------------------------------------------------------- /include/GafferSceneTest/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneTest/TypeIds.h -------------------------------------------------------------------------------- /include/GafferSceneUI/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneUI/Export.h -------------------------------------------------------------------------------- /include/GafferSceneUI/LightTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneUI/LightTool.h -------------------------------------------------------------------------------- /include/GafferSceneUI/ScaleTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneUI/ScaleTool.h -------------------------------------------------------------------------------- /include/GafferSceneUI/SceneView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneUI/SceneView.h -------------------------------------------------------------------------------- /include/GafferSceneUI/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneUI/TypeIds.h -------------------------------------------------------------------------------- /include/GafferSceneUI/UVView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferSceneUI/UVView.h -------------------------------------------------------------------------------- /include/GafferTest/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferTest/Assert.h -------------------------------------------------------------------------------- /include/GafferTest/ContextTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferTest/ContextTest.h -------------------------------------------------------------------------------- /include/GafferTest/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferTest/Export.h -------------------------------------------------------------------------------- /include/GafferTest/MultiplyNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferTest/MultiplyNode.h -------------------------------------------------------------------------------- /include/GafferTest/RandomTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferTest/RandomTest.h -------------------------------------------------------------------------------- /include/GafferTest/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferTest/TypeIds.h -------------------------------------------------------------------------------- /include/GafferUI/ButtonEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/ButtonEvent.h -------------------------------------------------------------------------------- /include/GafferUI/CompoundNodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/CompoundNodule.h -------------------------------------------------------------------------------- /include/GafferUI/DotNodeGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/DotNodeGadget.h -------------------------------------------------------------------------------- /include/GafferUI/DragDropEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/DragDropEvent.h -------------------------------------------------------------------------------- /include/GafferUI/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Event.h -------------------------------------------------------------------------------- /include/GafferUI/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Export.h -------------------------------------------------------------------------------- /include/GafferUI/FPSGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/FPSGadget.h -------------------------------------------------------------------------------- /include/GafferUI/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Frame.h -------------------------------------------------------------------------------- /include/GafferUI/Gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Gadget.h -------------------------------------------------------------------------------- /include/GafferUI/GraphGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/GraphGadget.h -------------------------------------------------------------------------------- /include/GafferUI/GraphLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/GraphLayout.h -------------------------------------------------------------------------------- /include/GafferUI/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Handle.h -------------------------------------------------------------------------------- /include/GafferUI/ImageGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/ImageGadget.h -------------------------------------------------------------------------------- /include/GafferUI/KeyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/KeyEvent.h -------------------------------------------------------------------------------- /include/GafferUI/NameGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/NameGadget.h -------------------------------------------------------------------------------- /include/GafferUI/NodeGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/NodeGadget.h -------------------------------------------------------------------------------- /include/GafferUI/Nodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Nodule.h -------------------------------------------------------------------------------- /include/GafferUI/NoduleLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/NoduleLayout.h -------------------------------------------------------------------------------- /include/GafferUI/PathColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/PathColumn.h -------------------------------------------------------------------------------- /include/GafferUI/PlugAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/PlugAdder.h -------------------------------------------------------------------------------- /include/GafferUI/PlugGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/PlugGadget.h -------------------------------------------------------------------------------- /include/GafferUI/PlugGadget.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/PlugGadget.inl -------------------------------------------------------------------------------- /include/GafferUI/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Pointer.h -------------------------------------------------------------------------------- /include/GafferUI/RotateHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/RotateHandle.h -------------------------------------------------------------------------------- /include/GafferUI/ScaleHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/ScaleHandle.h -------------------------------------------------------------------------------- /include/GafferUI/SpacerGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/SpacerGadget.h -------------------------------------------------------------------------------- /include/GafferUI/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Style.h -------------------------------------------------------------------------------- /include/GafferUI/TextGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/TextGadget.h -------------------------------------------------------------------------------- /include/GafferUI/Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/Tool.h -------------------------------------------------------------------------------- /include/GafferUI/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/TypeIds.h -------------------------------------------------------------------------------- /include/GafferUI/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/View.h -------------------------------------------------------------------------------- /include/GafferUI/View.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUI/View.inl -------------------------------------------------------------------------------- /include/GafferUSD/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUSD/Export.h -------------------------------------------------------------------------------- /include/GafferUSD/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUSD/TypeIds.h -------------------------------------------------------------------------------- /include/GafferUSD/USDLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUSD/USDLight.h -------------------------------------------------------------------------------- /include/GafferUSD/USDShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferUSD/USDShader.h -------------------------------------------------------------------------------- /include/GafferVDB/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferVDB/Export.h -------------------------------------------------------------------------------- /include/GafferVDB/Interrupter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferVDB/Interrupter.h -------------------------------------------------------------------------------- /include/GafferVDB/TypeIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/GafferVDB/TypeIds.h -------------------------------------------------------------------------------- /include/IECoreArnold/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/IECoreArnold/Export.h -------------------------------------------------------------------------------- /include/IECoreArnold/NodeAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/IECoreArnold/NodeAlgo.h -------------------------------------------------------------------------------- /include/IECoreDelight/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/include/IECoreDelight/Export.h -------------------------------------------------------------------------------- /python/Gaffer/About.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/About.py -------------------------------------------------------------------------------- /python/Gaffer/Application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/Application.py -------------------------------------------------------------------------------- /python/Gaffer/Context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/Context.py -------------------------------------------------------------------------------- /python/Gaffer/DictPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/DictPath.py -------------------------------------------------------------------------------- /python/Gaffer/ExtensionAlgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/ExtensionAlgo.py -------------------------------------------------------------------------------- /python/Gaffer/InfoPathFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/InfoPathFilter.py -------------------------------------------------------------------------------- /python/Gaffer/Monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/Monitor.py -------------------------------------------------------------------------------- /python/Gaffer/NodeAlgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/NodeAlgo.py -------------------------------------------------------------------------------- /python/Gaffer/SequencePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/SequencePath.py -------------------------------------------------------------------------------- /python/Gaffer/UndoScope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/UndoScope.py -------------------------------------------------------------------------------- /python/Gaffer/WeakMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/WeakMethod.py -------------------------------------------------------------------------------- /python/Gaffer/_Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/_Range.py -------------------------------------------------------------------------------- /python/Gaffer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/Gaffer/__init__.py -------------------------------------------------------------------------------- /python/GafferArnold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferArnold/__init__.py -------------------------------------------------------------------------------- /python/GafferCortex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferCortex/__init__.py -------------------------------------------------------------------------------- /python/GafferCycles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferCycles/__init__.py -------------------------------------------------------------------------------- /python/GafferDispatch/Wedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferDispatch/Wedge.py -------------------------------------------------------------------------------- /python/GafferImage/Anaglyph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImage/Anaglyph.py -------------------------------------------------------------------------------- /python/GafferImage/BleedFill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImage/BleedFill.py -------------------------------------------------------------------------------- /python/GafferImage/DeepTidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImage/DeepTidy.py -------------------------------------------------------------------------------- /python/GafferImage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImage/__init__.py -------------------------------------------------------------------------------- /python/GafferImageUI/BlurUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/BlurUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/CDLUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/CDLUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/ClampUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/ClampUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/CropUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/CropUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/EmptyUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/EmptyUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/ErodeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/ErodeUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/GradeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/GradeUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/LUTUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/LUTUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/MergeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/MergeUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/MixUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/MixUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/RampUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/RampUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/ShapeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/ShapeUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/TextUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/TextUI.py -------------------------------------------------------------------------------- /python/GafferImageUI/WarpUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferImageUI/WarpUI.py -------------------------------------------------------------------------------- /python/GafferOSL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferOSL/__init__.py -------------------------------------------------------------------------------- /python/GafferOSLUI/OSLCodeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferOSLUI/OSLCodeUI.py -------------------------------------------------------------------------------- /python/GafferOSLUI/_CodeMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferOSLUI/_CodeMenu.py -------------------------------------------------------------------------------- /python/GafferOSLUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferOSLUI/__init__.py -------------------------------------------------------------------------------- /python/GafferScene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferScene/__init__.py -------------------------------------------------------------------------------- /python/GafferSceneUI/CubeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/CubeUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/GridUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/GridUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/GroupUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/GroupUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/LightUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/LightUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/PlaneUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/PlaneUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/PruneUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/PruneUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/SetUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/SetUI.py -------------------------------------------------------------------------------- /python/GafferSceneUI/TextUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferSceneUI/TextUI.py -------------------------------------------------------------------------------- /python/GafferTest/AboutTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/AboutTest.py -------------------------------------------------------------------------------- /python/GafferTest/AddNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/AddNode.py -------------------------------------------------------------------------------- /python/GafferTest/BadNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/BadNode.py -------------------------------------------------------------------------------- /python/GafferTest/BoxIOTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/BoxIOTest.py -------------------------------------------------------------------------------- /python/GafferTest/BoxInTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/BoxInTest.py -------------------------------------------------------------------------------- /python/GafferTest/BoxOutTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/BoxOutTest.py -------------------------------------------------------------------------------- /python/GafferTest/BoxTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/BoxTest.py -------------------------------------------------------------------------------- /python/GafferTest/DotTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/DotTest.py -------------------------------------------------------------------------------- /python/GafferTest/FrameNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/FrameNode.py -------------------------------------------------------------------------------- /python/GafferTest/LoopTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/LoopTest.py -------------------------------------------------------------------------------- /python/GafferTest/ModuleTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/ModuleTest.py -------------------------------------------------------------------------------- /python/GafferTest/NodeTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/NodeTest.py -------------------------------------------------------------------------------- /python/GafferTest/PathTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/PathTest.py -------------------------------------------------------------------------------- /python/GafferTest/PlugTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/PlugTest.py -------------------------------------------------------------------------------- /python/GafferTest/RandomTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/RandomTest.py -------------------------------------------------------------------------------- /python/GafferTest/SwitchTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/SwitchTest.py -------------------------------------------------------------------------------- /python/GafferTest/TestCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/TestCase.py -------------------------------------------------------------------------------- /python/GafferTest/TestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/TestRunner.py -------------------------------------------------------------------------------- /python/GafferTest/UndoTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/UndoTest.py -------------------------------------------------------------------------------- /python/GafferTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferTest/__init__.py -------------------------------------------------------------------------------- /python/GafferTest/references/empty.grf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/GafferUI/AboutWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/AboutWindow.py -------------------------------------------------------------------------------- /python/GafferUI/AnimationUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/AnimationUI.py -------------------------------------------------------------------------------- /python/GafferUI/BackdropUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BackdropUI.py -------------------------------------------------------------------------------- /python/GafferUI/Backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Backups.py -------------------------------------------------------------------------------- /python/GafferUI/Bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Bookmarks.py -------------------------------------------------------------------------------- /python/GafferUI/BoolWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BoolWidget.py -------------------------------------------------------------------------------- /python/GafferUI/BoxIOUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BoxIOUI.py -------------------------------------------------------------------------------- /python/GafferUI/BoxInUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BoxInUI.py -------------------------------------------------------------------------------- /python/GafferUI/BoxOutUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BoxOutUI.py -------------------------------------------------------------------------------- /python/GafferUI/BoxUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BoxUI.py -------------------------------------------------------------------------------- /python/GafferUI/BusyWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/BusyWidget.py -------------------------------------------------------------------------------- /python/GafferUI/Button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Button.py -------------------------------------------------------------------------------- /python/GafferUI/CodeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/CodeWidget.py -------------------------------------------------------------------------------- /python/GafferUI/Collapsible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Collapsible.py -------------------------------------------------------------------------------- /python/GafferUI/CollectUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/CollectUI.py -------------------------------------------------------------------------------- /python/GafferUI/ColorChooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ColorChooser.py -------------------------------------------------------------------------------- /python/GafferUI/ColorSwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ColorSwatch.py -------------------------------------------------------------------------------- /python/GafferUI/Dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Dialogue.py -------------------------------------------------------------------------------- /python/GafferUI/Divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Divider.py -------------------------------------------------------------------------------- /python/GafferUI/DotUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/DotUI.py -------------------------------------------------------------------------------- /python/GafferUI/EditMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/EditMenu.py -------------------------------------------------------------------------------- /python/GafferUI/EditScopeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/EditScopeUI.py -------------------------------------------------------------------------------- /python/GafferUI/Editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Editor.py -------------------------------------------------------------------------------- /python/GafferUI/Enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Enums.py -------------------------------------------------------------------------------- /python/GafferUI/EventLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/EventLoop.py -------------------------------------------------------------------------------- /python/GafferUI/Examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Examples.py -------------------------------------------------------------------------------- /python/GafferUI/ExpressionUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ExpressionUI.py -------------------------------------------------------------------------------- /python/GafferUI/FileMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/FileMenu.py -------------------------------------------------------------------------------- /python/GafferUI/Frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Frame.py -------------------------------------------------------------------------------- /python/GafferUI/GLWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/GLWidget.py -------------------------------------------------------------------------------- /python/GafferUI/GadgetWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/GadgetWidget.py -------------------------------------------------------------------------------- /python/GafferUI/GraphEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/GraphEditor.py -------------------------------------------------------------------------------- /python/GafferUI/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Image.py -------------------------------------------------------------------------------- /python/GafferUI/Label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Label.py -------------------------------------------------------------------------------- /python/GafferUI/LayoutMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/LayoutMenu.py -------------------------------------------------------------------------------- /python/GafferUI/Layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Layouts.py -------------------------------------------------------------------------------- /python/GafferUI/LazyMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/LazyMethod.py -------------------------------------------------------------------------------- /python/GafferUI/LoopUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/LoopUI.py -------------------------------------------------------------------------------- /python/GafferUI/Menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Menu.py -------------------------------------------------------------------------------- /python/GafferUI/MenuBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/MenuBar.py -------------------------------------------------------------------------------- /python/GafferUI/MenuButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/MenuButton.py -------------------------------------------------------------------------------- /python/GafferUI/NameLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NameLabel.py -------------------------------------------------------------------------------- /python/GafferUI/NameSwitchUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NameSwitchUI.py -------------------------------------------------------------------------------- /python/GafferUI/NameWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NameWidget.py -------------------------------------------------------------------------------- /python/GafferUI/NodeEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NodeEditor.py -------------------------------------------------------------------------------- /python/GafferUI/NodeMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NodeMenu.py -------------------------------------------------------------------------------- /python/GafferUI/NodeToolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NodeToolbar.py -------------------------------------------------------------------------------- /python/GafferUI/NodeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/NodeUI.py -------------------------------------------------------------------------------- /python/GafferUI/PathWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/PathWidget.py -------------------------------------------------------------------------------- /python/GafferUI/Playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Playback.py -------------------------------------------------------------------------------- /python/GafferUI/PlugLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/PlugLayout.py -------------------------------------------------------------------------------- /python/GafferUI/PlugPopup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/PlugPopup.py -------------------------------------------------------------------------------- /python/GafferUI/PlugWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/PlugWidget.py -------------------------------------------------------------------------------- /python/GafferUI/PopupWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/PopupWindow.py -------------------------------------------------------------------------------- /python/GafferUI/ProgressBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ProgressBar.py -------------------------------------------------------------------------------- /python/GafferUI/PythonEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/PythonEditor.py -------------------------------------------------------------------------------- /python/GafferUI/RandomUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/RandomUI.py -------------------------------------------------------------------------------- /python/GafferUI/ReferenceUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ReferenceUI.py -------------------------------------------------------------------------------- /python/GafferUI/ScriptNodeUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ScriptNodeUI.py -------------------------------------------------------------------------------- /python/GafferUI/ScriptWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ScriptWindow.py -------------------------------------------------------------------------------- /python/GafferUI/ShowURL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ShowURL.py -------------------------------------------------------------------------------- /python/GafferUI/Slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Slider.py -------------------------------------------------------------------------------- /python/GafferUI/Spacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Spacer.py -------------------------------------------------------------------------------- /python/GafferUI/SplineWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/SplineWidget.py -------------------------------------------------------------------------------- /python/GafferUI/SubGraphUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/SubGraphUI.py -------------------------------------------------------------------------------- /python/GafferUI/SwitchUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/SwitchUI.py -------------------------------------------------------------------------------- /python/GafferUI/TextWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/TextWidget.py -------------------------------------------------------------------------------- /python/GafferUI/TimeWarpUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/TimeWarpUI.py -------------------------------------------------------------------------------- /python/GafferUI/Timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Timeline.py -------------------------------------------------------------------------------- /python/GafferUI/ToolUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ToolUI.py -------------------------------------------------------------------------------- /python/GafferUI/UIEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/UIEditor.py -------------------------------------------------------------------------------- /python/GafferUI/UserPlugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/UserPlugs.py -------------------------------------------------------------------------------- /python/GafferUI/ViewUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/ViewUI.py -------------------------------------------------------------------------------- /python/GafferUI/Viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Viewer.py -------------------------------------------------------------------------------- /python/GafferUI/Widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Widget.py -------------------------------------------------------------------------------- /python/GafferUI/WidgetAlgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/WidgetAlgo.py -------------------------------------------------------------------------------- /python/GafferUI/Window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/Window.py -------------------------------------------------------------------------------- /python/GafferUI/_PlugAdder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/_PlugAdder.py -------------------------------------------------------------------------------- /python/GafferUI/_Pointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/_Pointer.py -------------------------------------------------------------------------------- /python/GafferUI/_StyleSheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/_StyleSheet.py -------------------------------------------------------------------------------- /python/GafferUI/_TableView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/_TableView.py -------------------------------------------------------------------------------- /python/GafferUI/_Variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/_Variant.py -------------------------------------------------------------------------------- /python/GafferUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUI/__init__.py -------------------------------------------------------------------------------- /python/GafferUITest/MenuTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUITest/MenuTest.py -------------------------------------------------------------------------------- /python/GafferUITest/TestCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUITest/TestCase.py -------------------------------------------------------------------------------- /python/GafferUITest/ToolTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUITest/ToolTest.py -------------------------------------------------------------------------------- /python/GafferUITest/ViewTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUITest/ViewTest.py -------------------------------------------------------------------------------- /python/GafferUITest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUITest/__init__.py -------------------------------------------------------------------------------- /python/GafferUSD/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUSD/__init__.py -------------------------------------------------------------------------------- /python/GafferUSDUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferUSDUI/__init__.py -------------------------------------------------------------------------------- /python/GafferVDB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferVDB/__init__.py -------------------------------------------------------------------------------- /python/GafferVDBUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/GafferVDBUI/__init__.py -------------------------------------------------------------------------------- /python/IECoreArnold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/python/IECoreArnold/__init__.py -------------------------------------------------------------------------------- /resources/GafferLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/GafferLogo.py -------------------------------------------------------------------------------- /resources/GafferLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/GafferLogo.svg -------------------------------------------------------------------------------- /resources/GafferLogoMini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/GafferLogoMini.py -------------------------------------------------------------------------------- /resources/GafferLogoMini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/GafferLogoMini.svg -------------------------------------------------------------------------------- /resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/Info.plist -------------------------------------------------------------------------------- /resources/docGraphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/docGraphics.py -------------------------------------------------------------------------------- /resources/docGraphics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/docGraphics.svg -------------------------------------------------------------------------------- /resources/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/graphics.py -------------------------------------------------------------------------------- /resources/graphics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/resources/graphics.svg -------------------------------------------------------------------------------- /shaders/GafferOSL/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/GafferOSL/Expression.h -------------------------------------------------------------------------------- /shaders/GafferOSL/MetaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/GafferOSL/MetaUtils.h -------------------------------------------------------------------------------- /shaders/GafferOSL/Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/GafferOSL/Spline.h -------------------------------------------------------------------------------- /shaders/Maths/AddColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/AddColor.osl -------------------------------------------------------------------------------- /shaders/Maths/AddFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/AddFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/AddVector.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/AddVector.osl -------------------------------------------------------------------------------- /shaders/Maths/CrossProduct.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/CrossProduct.osl -------------------------------------------------------------------------------- /shaders/Maths/DivideColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/DivideColor.osl -------------------------------------------------------------------------------- /shaders/Maths/DivideFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/DivideFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/DivideVector.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/DivideVector.osl -------------------------------------------------------------------------------- /shaders/Maths/DotProduct.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/DotProduct.osl -------------------------------------------------------------------------------- /shaders/Maths/InvertMatrix.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/InvertMatrix.osl -------------------------------------------------------------------------------- /shaders/Maths/Length.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/Length.osl -------------------------------------------------------------------------------- /shaders/Maths/MixColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/MixColor.osl -------------------------------------------------------------------------------- /shaders/Maths/MixFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/MixFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/MixVector.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/MixVector.osl -------------------------------------------------------------------------------- /shaders/Maths/MultiplyColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/MultiplyColor.osl -------------------------------------------------------------------------------- /shaders/Maths/MultiplyFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/MultiplyFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/Normalize.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/Normalize.osl -------------------------------------------------------------------------------- /shaders/Maths/PowFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/PowFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/RoundFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/RoundFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/ScaleVector.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/ScaleVector.osl -------------------------------------------------------------------------------- /shaders/Maths/SinFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/SinFloat.osl -------------------------------------------------------------------------------- /shaders/Maths/SubtractColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/SubtractColor.osl -------------------------------------------------------------------------------- /shaders/Maths/SubtractFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Maths/SubtractFloat.osl -------------------------------------------------------------------------------- /shaders/Pattern/ColorSpline.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Pattern/ColorSpline.osl -------------------------------------------------------------------------------- /shaders/Pattern/FloatSpline.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Pattern/FloatSpline.osl -------------------------------------------------------------------------------- /shaders/Pattern/Noise.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Pattern/Noise.osl -------------------------------------------------------------------------------- /shaders/Pattern/PointNoise.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Pattern/PointNoise.osl -------------------------------------------------------------------------------- /shaders/Surface/Constant.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Surface/Constant.osl -------------------------------------------------------------------------------- /shaders/Utility/Globals.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/Globals.osl -------------------------------------------------------------------------------- /shaders/Utility/Luminance.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/Luminance.osl -------------------------------------------------------------------------------- /shaders/Utility/RemapColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/RemapColor.osl -------------------------------------------------------------------------------- /shaders/Utility/RemapFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/RemapFloat.osl -------------------------------------------------------------------------------- /shaders/Utility/RemapVector.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/RemapVector.osl -------------------------------------------------------------------------------- /shaders/Utility/SwitchColor.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/SwitchColor.osl -------------------------------------------------------------------------------- /shaders/Utility/SwitchFloat.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/shaders/Utility/SwitchFloat.osl -------------------------------------------------------------------------------- /src/Gaffer/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Action.cpp -------------------------------------------------------------------------------- /src/Gaffer/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Animation.cpp -------------------------------------------------------------------------------- /src/Gaffer/ApplicationRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ApplicationRoot.cpp -------------------------------------------------------------------------------- /src/Gaffer/ArrayPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ArrayPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/Backdrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Backdrop.cpp -------------------------------------------------------------------------------- /src/Gaffer/BackgroundTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/BackgroundTask.cpp -------------------------------------------------------------------------------- /src/Gaffer/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Box.cpp -------------------------------------------------------------------------------- /src/Gaffer/BoxIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/BoxIO.cpp -------------------------------------------------------------------------------- /src/Gaffer/BoxIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/BoxIn.cpp -------------------------------------------------------------------------------- /src/Gaffer/BoxOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/BoxOut.cpp -------------------------------------------------------------------------------- /src/Gaffer/BoxPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/BoxPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/ChildSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ChildSet.cpp -------------------------------------------------------------------------------- /src/Gaffer/Collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Collect.cpp -------------------------------------------------------------------------------- /src/Gaffer/CompoundDataPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/CompoundDataPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/ComputeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ComputeNode.cpp -------------------------------------------------------------------------------- /src/Gaffer/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Context.cpp -------------------------------------------------------------------------------- /src/Gaffer/ContextAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ContextAlgo.cpp -------------------------------------------------------------------------------- /src/Gaffer/ContextMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ContextMonitor.cpp -------------------------------------------------------------------------------- /src/Gaffer/ContextProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ContextProcessor.cpp -------------------------------------------------------------------------------- /src/Gaffer/ContextQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ContextQuery.cpp -------------------------------------------------------------------------------- /src/Gaffer/ContextVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ContextVariables.cpp -------------------------------------------------------------------------------- /src/Gaffer/DependencyNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/DependencyNode.cpp -------------------------------------------------------------------------------- /src/Gaffer/Dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Dot.cpp -------------------------------------------------------------------------------- /src/Gaffer/EditScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/EditScope.cpp -------------------------------------------------------------------------------- /src/Gaffer/Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Expression.cpp -------------------------------------------------------------------------------- /src/Gaffer/FileSystemPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/FileSystemPath.cpp -------------------------------------------------------------------------------- /src/Gaffer/GraphComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/GraphComponent.cpp -------------------------------------------------------------------------------- /src/Gaffer/LeafPathFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/LeafPathFilter.cpp -------------------------------------------------------------------------------- /src/Gaffer/Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Loop.cpp -------------------------------------------------------------------------------- /src/Gaffer/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Metadata.cpp -------------------------------------------------------------------------------- /src/Gaffer/MetadataAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/MetadataAlgo.cpp -------------------------------------------------------------------------------- /src/Gaffer/Monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Monitor.cpp -------------------------------------------------------------------------------- /src/Gaffer/MonitorAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/MonitorAlgo.cpp -------------------------------------------------------------------------------- /src/Gaffer/NameSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/NameSwitch.cpp -------------------------------------------------------------------------------- /src/Gaffer/NameValuePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/NameValuePlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Node.cpp -------------------------------------------------------------------------------- /src/Gaffer/NumericPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/NumericPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/ParallelAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ParallelAlgo.cpp -------------------------------------------------------------------------------- /src/Gaffer/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Path.cpp -------------------------------------------------------------------------------- /src/Gaffer/PathFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/PathFilter.cpp -------------------------------------------------------------------------------- /src/Gaffer/Plug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Plug.cpp -------------------------------------------------------------------------------- /src/Gaffer/PlugAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/PlugAlgo.cpp -------------------------------------------------------------------------------- /src/Gaffer/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Preferences.cpp -------------------------------------------------------------------------------- /src/Gaffer/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Process.cpp -------------------------------------------------------------------------------- /src/Gaffer/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Random.cpp -------------------------------------------------------------------------------- /src/Gaffer/RandomChoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/RandomChoice.cpp -------------------------------------------------------------------------------- /src/Gaffer/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Reference.cpp -------------------------------------------------------------------------------- /src/Gaffer/ScriptNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ScriptNode.cpp -------------------------------------------------------------------------------- /src/Gaffer/Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Set.cpp -------------------------------------------------------------------------------- /src/Gaffer/ShufflePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ShufflePlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/SplinePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/SplinePlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/Spreadsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Spreadsheet.cpp -------------------------------------------------------------------------------- /src/Gaffer/StandardSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/StandardSet.cpp -------------------------------------------------------------------------------- /src/Gaffer/StringPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/StringPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/SubGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/SubGraph.cpp -------------------------------------------------------------------------------- /src/Gaffer/Switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Switch.cpp -------------------------------------------------------------------------------- /src/Gaffer/ThreadMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ThreadMonitor.cpp -------------------------------------------------------------------------------- /src/Gaffer/ThreadState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ThreadState.cpp -------------------------------------------------------------------------------- /src/Gaffer/TimeWarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/TimeWarp.cpp -------------------------------------------------------------------------------- /src/Gaffer/Transform2DPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Transform2DPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/TransformPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/TransformPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/TweakPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/TweakPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/TypedObjectPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/TypedObjectPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/TypedPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/TypedPlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/UndoScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/UndoScope.cpp -------------------------------------------------------------------------------- /src/Gaffer/VTuneMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/VTuneMonitor.cpp -------------------------------------------------------------------------------- /src/Gaffer/ValuePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/ValuePlug.cpp -------------------------------------------------------------------------------- /src/Gaffer/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/Gaffer/Version.cpp -------------------------------------------------------------------------------- /src/GafferArnold/ArnoldVDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferArnold/ArnoldVDB.cpp -------------------------------------------------------------------------------- /src/GafferCortex/OpHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferCortex/OpHolder.cpp -------------------------------------------------------------------------------- /src/GafferDispatch/TaskList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferDispatch/TaskList.cpp -------------------------------------------------------------------------------- /src/GafferDispatch/TaskNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferDispatch/TaskNode.cpp -------------------------------------------------------------------------------- /src/GafferImage/Blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Blur.cpp -------------------------------------------------------------------------------- /src/GafferImage/CDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/CDL.cpp -------------------------------------------------------------------------------- /src/GafferImage/Catalogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Catalogue.cpp -------------------------------------------------------------------------------- /src/GafferImage/Clamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Clamp.cpp -------------------------------------------------------------------------------- /src/GafferImage/ColorSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ColorSpace.cpp -------------------------------------------------------------------------------- /src/GafferImage/Constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Constant.cpp -------------------------------------------------------------------------------- /src/GafferImage/CopyViews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/CopyViews.cpp -------------------------------------------------------------------------------- /src/GafferImage/CreateViews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/CreateViews.cpp -------------------------------------------------------------------------------- /src/GafferImage/Crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Crop.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeepHoldout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeepHoldout.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeepMerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeepMerge.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeepRecolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeepRecolor.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeepSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeepSampler.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeepState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeepState.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeepToFlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeepToFlat.cpp -------------------------------------------------------------------------------- /src/GafferImage/DeleteViews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/DeleteViews.cpp -------------------------------------------------------------------------------- /src/GafferImage/Dilate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Dilate.cpp -------------------------------------------------------------------------------- /src/GafferImage/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Display.cpp -------------------------------------------------------------------------------- /src/GafferImage/Empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Empty.cpp -------------------------------------------------------------------------------- /src/GafferImage/Erode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Erode.cpp -------------------------------------------------------------------------------- /src/GafferImage/FilterAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/FilterAlgo.cpp -------------------------------------------------------------------------------- /src/GafferImage/FlatToDeep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/FlatToDeep.cpp -------------------------------------------------------------------------------- /src/GafferImage/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Format.cpp -------------------------------------------------------------------------------- /src/GafferImage/FormatData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/FormatData.cpp -------------------------------------------------------------------------------- /src/GafferImage/FormatPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/FormatPlug.cpp -------------------------------------------------------------------------------- /src/GafferImage/FormatQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/FormatQuery.cpp -------------------------------------------------------------------------------- /src/GafferImage/Grade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Grade.cpp -------------------------------------------------------------------------------- /src/GafferImage/ImageAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ImageAlgo.cpp -------------------------------------------------------------------------------- /src/GafferImage/ImageNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ImageNode.cpp -------------------------------------------------------------------------------- /src/GafferImage/ImagePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ImagePlug.cpp -------------------------------------------------------------------------------- /src/GafferImage/ImageReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ImageReader.cpp -------------------------------------------------------------------------------- /src/GafferImage/ImageStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ImageStats.cpp -------------------------------------------------------------------------------- /src/GafferImage/ImageWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/ImageWriter.cpp -------------------------------------------------------------------------------- /src/GafferImage/LUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/LUT.cpp -------------------------------------------------------------------------------- /src/GafferImage/Median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Median.cpp -------------------------------------------------------------------------------- /src/GafferImage/Merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Merge.cpp -------------------------------------------------------------------------------- /src/GafferImage/Mirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Mirror.cpp -------------------------------------------------------------------------------- /src/GafferImage/Mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Mix.cpp -------------------------------------------------------------------------------- /src/GafferImage/Offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Offset.cpp -------------------------------------------------------------------------------- /src/GafferImage/Premultiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Premultiply.cpp -------------------------------------------------------------------------------- /src/GafferImage/Ramp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Ramp.cpp -------------------------------------------------------------------------------- /src/GafferImage/RankFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/RankFilter.cpp -------------------------------------------------------------------------------- /src/GafferImage/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Rectangle.cpp -------------------------------------------------------------------------------- /src/GafferImage/Resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Resample.cpp -------------------------------------------------------------------------------- /src/GafferImage/Resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Resize.cpp -------------------------------------------------------------------------------- /src/GafferImage/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Sampler.cpp -------------------------------------------------------------------------------- /src/GafferImage/Saturation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Saturation.cpp -------------------------------------------------------------------------------- /src/GafferImage/SelectView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/SelectView.cpp -------------------------------------------------------------------------------- /src/GafferImage/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Shape.cpp -------------------------------------------------------------------------------- /src/GafferImage/Shuffle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Shuffle.cpp -------------------------------------------------------------------------------- /src/GafferImage/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Text.cpp -------------------------------------------------------------------------------- /src/GafferImage/VectorWarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/VectorWarp.cpp -------------------------------------------------------------------------------- /src/GafferImage/Warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImage/Warp.cpp -------------------------------------------------------------------------------- /src/GafferImageUI/ImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferImageUI/ImageView.cpp -------------------------------------------------------------------------------- /src/GafferModule/DotBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/DotBinding.cpp -------------------------------------------------------------------------------- /src/GafferModule/DotBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/DotBinding.h -------------------------------------------------------------------------------- /src/GafferModule/NodeBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/NodeBinding.h -------------------------------------------------------------------------------- /src/GafferModule/PathBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/PathBinding.h -------------------------------------------------------------------------------- /src/GafferModule/PlugBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/PlugBinding.h -------------------------------------------------------------------------------- /src/GafferModule/SetBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/SetBinding.cpp -------------------------------------------------------------------------------- /src/GafferModule/SetBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferModule/SetBinding.h -------------------------------------------------------------------------------- /src/GafferOSL/ClosurePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/ClosurePlug.cpp -------------------------------------------------------------------------------- /src/GafferOSL/OSLCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/OSLCode.cpp -------------------------------------------------------------------------------- /src/GafferOSL/OSLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/OSLImage.cpp -------------------------------------------------------------------------------- /src/GafferOSL/OSLLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/OSLLight.cpp -------------------------------------------------------------------------------- /src/GafferOSL/OSLObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/OSLObject.cpp -------------------------------------------------------------------------------- /src/GafferOSL/OSLShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/OSLShader.cpp -------------------------------------------------------------------------------- /src/GafferOSL/ShadingEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSL/ShadingEngine.cpp -------------------------------------------------------------------------------- /src/GafferOSLUI/OSLImageUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSLUI/OSLImageUI.cpp -------------------------------------------------------------------------------- /src/GafferOSLUI/OSLObjectUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferOSLUI/OSLObjectUI.cpp -------------------------------------------------------------------------------- /src/GafferScene/Attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Attributes.cpp -------------------------------------------------------------------------------- /src/GafferScene/BoundQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/BoundQuery.cpp -------------------------------------------------------------------------------- /src/GafferScene/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Camera.cpp -------------------------------------------------------------------------------- /src/GafferScene/Capsule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Capsule.cpp -------------------------------------------------------------------------------- /src/GafferScene/Constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Constraint.cpp -------------------------------------------------------------------------------- /src/GafferScene/CopyOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/CopyOptions.cpp -------------------------------------------------------------------------------- /src/GafferScene/Cryptomatte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Cryptomatte.cpp -------------------------------------------------------------------------------- /src/GafferScene/Cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Cube.cpp -------------------------------------------------------------------------------- /src/GafferScene/Deformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Deformer.cpp -------------------------------------------------------------------------------- /src/GafferScene/DeleteFaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/DeleteFaces.cpp -------------------------------------------------------------------------------- /src/GafferScene/DeleteSets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/DeleteSets.cpp -------------------------------------------------------------------------------- /src/GafferScene/Duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Duplicate.cpp -------------------------------------------------------------------------------- /src/GafferScene/Encapsulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Encapsulate.cpp -------------------------------------------------------------------------------- /src/GafferScene/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Filter.cpp -------------------------------------------------------------------------------- /src/GafferScene/FilterPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/FilterPlug.cpp -------------------------------------------------------------------------------- /src/GafferScene/FilterQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/FilterQuery.cpp -------------------------------------------------------------------------------- /src/GafferScene/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Grid.cpp -------------------------------------------------------------------------------- /src/GafferScene/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Group.cpp -------------------------------------------------------------------------------- /src/GafferScene/Instancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Instancer.cpp -------------------------------------------------------------------------------- /src/GafferScene/Isolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Isolate.cpp -------------------------------------------------------------------------------- /src/GafferScene/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Light.cpp -------------------------------------------------------------------------------- /src/GafferScene/LightFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/LightFilter.cpp -------------------------------------------------------------------------------- /src/GafferScene/MapOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/MapOffset.cpp -------------------------------------------------------------------------------- /src/GafferScene/MergeScenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/MergeScenes.cpp -------------------------------------------------------------------------------- /src/GafferScene/MeshNormals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/MeshNormals.cpp -------------------------------------------------------------------------------- /src/GafferScene/MeshSplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/MeshSplit.cpp -------------------------------------------------------------------------------- /src/GafferScene/MeshType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/MeshType.cpp -------------------------------------------------------------------------------- /src/GafferScene/MotionPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/MotionPath.cpp -------------------------------------------------------------------------------- /src/GafferScene/OptionQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/OptionQuery.cpp -------------------------------------------------------------------------------- /src/GafferScene/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Options.cpp -------------------------------------------------------------------------------- /src/GafferScene/Orientation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Orientation.cpp -------------------------------------------------------------------------------- /src/GafferScene/Outputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Outputs.cpp -------------------------------------------------------------------------------- /src/GafferScene/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Parameters.cpp -------------------------------------------------------------------------------- /src/GafferScene/Parent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Parent.cpp -------------------------------------------------------------------------------- /src/GafferScene/PathFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/PathFilter.cpp -------------------------------------------------------------------------------- /src/GafferScene/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Plane.cpp -------------------------------------------------------------------------------- /src/GafferScene/PointsType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/PointsType.cpp -------------------------------------------------------------------------------- /src/GafferScene/Prune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Prune.cpp -------------------------------------------------------------------------------- /src/GafferScene/Rename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Rename.cpp -------------------------------------------------------------------------------- /src/GafferScene/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Render.cpp -------------------------------------------------------------------------------- /src/GafferScene/Scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Scatter.cpp -------------------------------------------------------------------------------- /src/GafferScene/SceneAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SceneAlgo.cpp -------------------------------------------------------------------------------- /src/GafferScene/SceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SceneNode.cpp -------------------------------------------------------------------------------- /src/GafferScene/ScenePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/ScenePath.cpp -------------------------------------------------------------------------------- /src/GafferScene/ScenePlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/ScenePlug.cpp -------------------------------------------------------------------------------- /src/GafferScene/SceneReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SceneReader.cpp -------------------------------------------------------------------------------- /src/GafferScene/SceneWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SceneWriter.cpp -------------------------------------------------------------------------------- /src/GafferScene/Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Set.cpp -------------------------------------------------------------------------------- /src/GafferScene/SetAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SetAlgo.cpp -------------------------------------------------------------------------------- /src/GafferScene/SetFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SetFilter.cpp -------------------------------------------------------------------------------- /src/GafferScene/SetQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SetQuery.cpp -------------------------------------------------------------------------------- /src/GafferScene/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Shader.cpp -------------------------------------------------------------------------------- /src/GafferScene/ShaderPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/ShaderPlug.cpp -------------------------------------------------------------------------------- /src/GafferScene/ShaderQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/ShaderQuery.cpp -------------------------------------------------------------------------------- /src/GafferScene/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Sphere.cpp -------------------------------------------------------------------------------- /src/GafferScene/SubTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/SubTree.cpp -------------------------------------------------------------------------------- /src/GafferScene/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Text.cpp -------------------------------------------------------------------------------- /src/GafferScene/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Transform.cpp -------------------------------------------------------------------------------- /src/GafferScene/UDIMQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/UDIMQuery.cpp -------------------------------------------------------------------------------- /src/GafferScene/UVSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/UVSampler.cpp -------------------------------------------------------------------------------- /src/GafferScene/UnionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/UnionFilter.cpp -------------------------------------------------------------------------------- /src/GafferScene/Wireframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferScene/Wireframe.cpp -------------------------------------------------------------------------------- /src/GafferSceneUI/Inspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferSceneUI/Inspector.cpp -------------------------------------------------------------------------------- /src/GafferSceneUI/LightTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferSceneUI/LightTool.cpp -------------------------------------------------------------------------------- /src/GafferSceneUI/ScaleTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferSceneUI/ScaleTool.cpp -------------------------------------------------------------------------------- /src/GafferSceneUI/SceneView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferSceneUI/SceneView.cpp -------------------------------------------------------------------------------- /src/GafferSceneUI/ShaderUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferSceneUI/ShaderUI.cpp -------------------------------------------------------------------------------- /src/GafferSceneUI/UVView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferSceneUI/UVView.cpp -------------------------------------------------------------------------------- /src/GafferTest/ContextTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferTest/ContextTest.cpp -------------------------------------------------------------------------------- /src/GafferTest/MultiplyNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferTest/MultiplyNode.cpp -------------------------------------------------------------------------------- /src/GafferTest/RandomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferTest/RandomTest.cpp -------------------------------------------------------------------------------- /src/GafferUI/ArrayPlugUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/ArrayPlugUI.cpp -------------------------------------------------------------------------------- /src/GafferUI/BoxUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/BoxUI.cpp -------------------------------------------------------------------------------- /src/GafferUI/CompoundNodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/CompoundNodule.cpp -------------------------------------------------------------------------------- /src/GafferUI/DotNodeGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/DotNodeGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/EditScopeUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/EditScopeUI.cpp -------------------------------------------------------------------------------- /src/GafferUI/FPSGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/FPSGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Frame.cpp -------------------------------------------------------------------------------- /src/GafferUI/Gadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Gadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/GraphGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/GraphGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/GraphLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/GraphLayout.cpp -------------------------------------------------------------------------------- /src/GafferUI/Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Handle.cpp -------------------------------------------------------------------------------- /src/GafferUI/ImageGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/ImageGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/LoopUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/LoopUI.cpp -------------------------------------------------------------------------------- /src/GafferUI/NameGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/NameGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/NameSwitchUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/NameSwitchUI.cpp -------------------------------------------------------------------------------- /src/GafferUI/NodeGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/NodeGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/Nodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Nodule.cpp -------------------------------------------------------------------------------- /src/GafferUI/NoduleLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/NoduleLayout.cpp -------------------------------------------------------------------------------- /src/GafferUI/PathColumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/PathColumn.cpp -------------------------------------------------------------------------------- /src/GafferUI/PlugAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/PlugAdder.cpp -------------------------------------------------------------------------------- /src/GafferUI/PlugGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/PlugGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/Pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Pointer.cpp -------------------------------------------------------------------------------- /src/GafferUI/RotateHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/RotateHandle.cpp -------------------------------------------------------------------------------- /src/GafferUI/ScaleHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/ScaleHandle.cpp -------------------------------------------------------------------------------- /src/GafferUI/SpacerGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/SpacerGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/StandardNodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/StandardNodule.cpp -------------------------------------------------------------------------------- /src/GafferUI/StandardStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/StandardStyle.cpp -------------------------------------------------------------------------------- /src/GafferUI/Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Style.cpp -------------------------------------------------------------------------------- /src/GafferUI/SwitchUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/SwitchUI.cpp -------------------------------------------------------------------------------- /src/GafferUI/TextGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/TextGadget.cpp -------------------------------------------------------------------------------- /src/GafferUI/Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/Tool.cpp -------------------------------------------------------------------------------- /src/GafferUI/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/View.cpp -------------------------------------------------------------------------------- /src/GafferUI/ViewportGadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUI/ViewportGadget.cpp -------------------------------------------------------------------------------- /src/GafferUSD/USDAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUSD/USDAttributes.cpp -------------------------------------------------------------------------------- /src/GafferUSD/USDLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUSD/USDLight.cpp -------------------------------------------------------------------------------- /src/GafferUSD/USDShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferUSD/USDShader.cpp -------------------------------------------------------------------------------- /src/GafferVDB/VolumeScatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/GafferVDB/VolumeScatter.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/CameraAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/CameraAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/CurvesAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/CurvesAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/MeshAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/MeshAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/NodeAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/NodeAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/PointsAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/PointsAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/Renderer.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/ShapeAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/ShapeAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/SphereAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/SphereAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreArnold/VDBAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreArnold/VDBAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreDelight/DiskAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreDelight/DiskAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreDelight/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreDelight/Display.cpp -------------------------------------------------------------------------------- /src/IECoreDelight/MeshAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreDelight/MeshAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreDelight/NodeAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreDelight/NodeAlgo.cpp -------------------------------------------------------------------------------- /src/IECoreDelight/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreDelight/Renderer.cpp -------------------------------------------------------------------------------- /src/IECoreDelight/VDBAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/src/IECoreDelight/VDBAlgo.cpp -------------------------------------------------------------------------------- /startup/Gaffer/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/Gaffer/cache.py -------------------------------------------------------------------------------- /startup/GafferScene/alembic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/GafferScene/alembic.py -------------------------------------------------------------------------------- /startup/GafferScene/usd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/GafferScene/usd.py -------------------------------------------------------------------------------- /startup/GafferScene/vdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/GafferScene/vdb.py -------------------------------------------------------------------------------- /startup/browser/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/browser/bookmarks.py -------------------------------------------------------------------------------- /startup/browser/ocio.py: -------------------------------------------------------------------------------- 1 | ../../startup/gui/ocio.py -------------------------------------------------------------------------------- /startup/browser/ocioCompatibility.py: -------------------------------------------------------------------------------- 1 | ../../startup/gui/ocioCompatibility.py -------------------------------------------------------------------------------- /startup/browser/previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/browser/previews.py -------------------------------------------------------------------------------- /startup/dispatch/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/dispatch/gui.py -------------------------------------------------------------------------------- /startup/dispatch/project.py: -------------------------------------------------------------------------------- 1 | ../../startup/gui/project.py -------------------------------------------------------------------------------- /startup/gui/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/bookmarks.py -------------------------------------------------------------------------------- /startup/gui/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/browser.py -------------------------------------------------------------------------------- /startup/gui/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/editor.py -------------------------------------------------------------------------------- /startup/gui/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/formats.py -------------------------------------------------------------------------------- /startup/gui/graphEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/graphEditor.py -------------------------------------------------------------------------------- /startup/gui/layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/layouts.py -------------------------------------------------------------------------------- /startup/gui/lightEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/lightEditor.py -------------------------------------------------------------------------------- /startup/gui/localDispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/localDispatcher.py -------------------------------------------------------------------------------- /startup/gui/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/menus.py -------------------------------------------------------------------------------- /startup/gui/nodeEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/nodeEditor.py -------------------------------------------------------------------------------- /startup/gui/ocio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/ocio.py -------------------------------------------------------------------------------- /startup/gui/outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/outputs.py -------------------------------------------------------------------------------- /startup/gui/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/project.py -------------------------------------------------------------------------------- /startup/gui/pythonEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/pythonEditor.py -------------------------------------------------------------------------------- /startup/gui/shaderPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/shaderPresets.py -------------------------------------------------------------------------------- /startup/gui/shaderView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/shaderView.py -------------------------------------------------------------------------------- /startup/gui/usd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/usd.py -------------------------------------------------------------------------------- /startup/gui/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/gui/viewer.py -------------------------------------------------------------------------------- /startup/op/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/op/bookmarks.py -------------------------------------------------------------------------------- /startup/view/ocio.py: -------------------------------------------------------------------------------- 1 | ../../startup/gui/ocio.py -------------------------------------------------------------------------------- /startup/view/ocioCompatibility.py: -------------------------------------------------------------------------------- 1 | ../../startup/gui/ocioCompatibility.py -------------------------------------------------------------------------------- /startup/view/previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boberfly/gaffer/HEAD/startup/view/previews.py --------------------------------------------------------------------------------