├── .gitignore ├── README.md └── UnitySVDComputeShader ├── Assets ├── Common.cginc ├── Common.cginc.meta ├── ComputeWithCS.compute ├── ComputeWithCS.compute.meta ├── ComputeWithCS.cs ├── ComputeWithCS.cs.meta ├── GetSVD3D.unity ├── GetSVD3D.unity.meta ├── Math.cginc └── Math.cginc.meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/README.md -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/Common.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/Common.cginc -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/Common.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/Common.cginc.meta -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/ComputeWithCS.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/ComputeWithCS.compute -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/ComputeWithCS.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/ComputeWithCS.compute.meta -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/ComputeWithCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/ComputeWithCS.cs -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/ComputeWithCS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/ComputeWithCS.cs.meta -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/GetSVD3D.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/GetSVD3D.unity -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/GetSVD3D.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/GetSVD3D.unity.meta -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/Math.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/Math.cginc -------------------------------------------------------------------------------- /UnitySVDComputeShader/Assets/Math.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/Assets/Math.cginc.meta -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.0f3 2 | -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanish87/UnitySVDComputeShader/HEAD/UnitySVDComputeShader/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /UnitySVDComputeShader/UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------