├── .gitignore ├── LICENSE ├── Packages └── RealityKitContent │ ├── Package.realitycomposerpro │ ├── PluginData │ │ └── D2DBC65D-E937-4C38-B021-EBED20E1BB92 │ │ │ └── ShaderGraphEditorPluginID │ │ │ └── ShaderGraphEditorPluginID │ ├── ProjectData │ │ └── main.json │ └── WorkspaceData │ │ ├── SceneMetadataList.json │ │ └── Settings.rcprojectdata │ ├── Package.swift │ ├── README.md │ └── Sources │ └── RealityKitContent │ ├── RealityKitContent.rkassets │ ├── Materials │ │ └── GridMaterial.usda │ └── StereoMaker.usda │ └── RealityKitContent.swift ├── README.md ├── ShaderGraph Stereo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── SG Stereo revised.xcscheme ├── ShaderGraph Stereo ├── Assets.xcassets │ ├── AppIcon.solidimagestack │ │ ├── Back.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Middle.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── Contents.json │ ├── amesLeft.imageset │ │ ├── Contents.json │ │ └── amesLeft.png │ ├── amesRight.imageset │ │ ├── Contents.json │ │ └── amesRight.png │ ├── artroom2im0.imageset │ │ ├── Contents.json │ │ └── artroom2im0.png │ ├── artroom2im1.imageset │ │ ├── Contents.json │ │ └── artroom2im1.png │ ├── chess2im0.imageset │ │ ├── Contents.json │ │ └── chess2im0.png │ ├── chess2im1.imageset │ │ ├── Contents.json │ │ └── chess2im1.png │ ├── curule1im0.imageset │ │ ├── Contents.json │ │ └── curule1im0.png │ └── curule1im1.imageset │ │ ├── Contents.json │ │ └── curule1im1.png ├── ContentView.swift ├── ImageViewer.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── ShaderGraph_StereoApp.swift ├── StereoPair.swift ├── StereoView_revised.swift └── StereoView_simple.swift ├── screenshot.png └── shadergraph.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/PluginData/D2DBC65D-E937-4C38-B021-EBED20E1BB92/ShaderGraphEditorPluginID/ShaderGraphEditorPluginID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/PluginData/D2DBC65D-E937-4C38-B021-EBED20E1BB92/ShaderGraphEditorPluginID/ShaderGraphEditorPluginID -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Package.swift -------------------------------------------------------------------------------- /Packages/RealityKitContent/README.md: -------------------------------------------------------------------------------- 1 | # RealityKitContent 2 | 3 | A description of this package. -------------------------------------------------------------------------------- /Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Materials/GridMaterial.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Materials/GridMaterial.usda -------------------------------------------------------------------------------- /Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/StereoMaker.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/StereoMaker.usda -------------------------------------------------------------------------------- /Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/README.md -------------------------------------------------------------------------------- /ShaderGraph Stereo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShaderGraph Stereo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShaderGraph Stereo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ShaderGraph Stereo.xcodeproj/xcshareddata/xcschemes/SG Stereo revised.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo.xcodeproj/xcshareddata/xcschemes/SG Stereo revised.xcscheme -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/amesLeft.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/amesLeft.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/amesLeft.imageset/amesLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/amesLeft.imageset/amesLeft.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/amesRight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/amesRight.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/amesRight.imageset/amesRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/amesRight.imageset/amesRight.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/artroom2im0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/artroom2im0.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/artroom2im0.imageset/artroom2im0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/artroom2im0.imageset/artroom2im0.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/artroom2im1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/artroom2im1.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/artroom2im1.imageset/artroom2im1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/artroom2im1.imageset/artroom2im1.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/chess2im0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/chess2im0.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/chess2im0.imageset/chess2im0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/chess2im0.imageset/chess2im0.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/chess2im1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/chess2im1.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/chess2im1.imageset/chess2im1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/chess2im1.imageset/chess2im1.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/curule1im0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/curule1im0.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/curule1im0.imageset/curule1im0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/curule1im0.imageset/curule1im0.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/curule1im1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/curule1im1.imageset/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/Assets.xcassets/curule1im1.imageset/curule1im1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Assets.xcassets/curule1im1.imageset/curule1im1.png -------------------------------------------------------------------------------- /ShaderGraph Stereo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/ContentView.swift -------------------------------------------------------------------------------- /ShaderGraph Stereo/ImageViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/ImageViewer.swift -------------------------------------------------------------------------------- /ShaderGraph Stereo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Info.plist -------------------------------------------------------------------------------- /ShaderGraph Stereo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ShaderGraph Stereo/ShaderGraph_StereoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/ShaderGraph_StereoApp.swift -------------------------------------------------------------------------------- /ShaderGraph Stereo/StereoPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/StereoPair.swift -------------------------------------------------------------------------------- /ShaderGraph Stereo/StereoView_revised.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/StereoView_revised.swift -------------------------------------------------------------------------------- /ShaderGraph Stereo/StereoView_simple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/ShaderGraph Stereo/StereoView_simple.swift -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/screenshot.png -------------------------------------------------------------------------------- /shadergraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halmueller/ShaderGraphStereo/HEAD/shadergraph.png --------------------------------------------------------------------------------