├── .gitignore ├── Assets ├── YccaSubsampling.meta ├── YccaSubsampling │ ├── Editor.meta │ ├── Editor │ │ ├── YCgACoEditor.cs │ │ ├── YCgACoEditor.cs.meta │ │ ├── YCgACoEncoder.cs │ │ ├── YCgACoEncoder.cs.meta │ │ ├── YCgACoPostprocessor.cs │ │ └── YCgACoPostprocessor.cs.meta │ ├── Shaders.meta │ └── Shaders │ │ ├── RGBA_to_CgACoY.shader │ │ ├── RGBA_to_CgACoY.shader.meta │ │ ├── Y-CgACo_to_RGBA.shader │ │ └── Y-CgACo_to_RGBA.shader.meta ├── YccaSubsamplingTest.meta └── YccaSubsamplingTest │ ├── Circle.meta │ ├── Circle │ ├── Circle.png │ ├── Circle.png.meta │ ├── Screenshot.png │ └── Screenshot.png.meta │ ├── SampleA.meta │ └── SampleA │ ├── EditorSS1.png │ ├── EditorSS1.png.meta │ ├── EditorSS2.png │ ├── EditorSS2.png.meta │ ├── Mat_SampleA_ETC.mat │ ├── Mat_SampleA_ETC.mat.meta │ ├── Mat_SampleA_PVRTC.mat │ ├── Mat_SampleA_PVRTC.mat.meta │ ├── Mat_SampleA_RGB565.mat │ ├── Mat_SampleA_RGB565.mat.meta │ ├── SampleA.png │ ├── SampleA.png.meta │ ├── SampleA_CgACo_ETC.png │ ├── SampleA_CgACo_ETC.png.meta │ ├── SampleA_CgACo_PVRTC.png │ ├── SampleA_CgACo_PVRTC.png.meta │ ├── SampleA_CgACo_RGB565.png │ ├── SampleA_CgACo_RGB565.png.meta │ ├── SampleA_Y.png │ ├── SampleA_Y.png.meta │ ├── Screenshot.png │ └── Screenshot.png.meta ├── ProjectSettings ├── AudioManager.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 └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/YccaSubsampling.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor/YCgACoEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor/YCgACoEditor.cs -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor/YCgACoEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor/YCgACoEditor.cs.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor/YCgACoEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor/YCgACoEncoder.cs -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor/YCgACoEncoder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor/YCgACoEncoder.cs.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor/YCgACoPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor/YCgACoPostprocessor.cs -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Editor/YCgACoPostprocessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Editor/YCgACoPostprocessor.cs.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Shaders.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Shaders/RGBA_to_CgACoY.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Shaders/RGBA_to_CgACoY.shader -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Shaders/RGBA_to_CgACoY.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Shaders/RGBA_to_CgACoY.shader.meta -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Shaders/Y-CgACo_to_RGBA.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Shaders/Y-CgACo_to_RGBA.shader -------------------------------------------------------------------------------- /Assets/YccaSubsampling/Shaders/Y-CgACo_to_RGBA.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsampling/Shaders/Y-CgACo_to_RGBA.shader.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/Circle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/Circle.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/Circle/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/Circle/Circle.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/Circle/Circle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/Circle/Circle.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/Circle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/Circle/Screenshot.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/Circle/Screenshot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/Circle/Screenshot.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/EditorSS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/EditorSS1.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/EditorSS1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/EditorSS1.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/EditorSS2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/EditorSS2.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/EditorSS2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/EditorSS2.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_ETC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_ETC.mat -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_ETC.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_ETC.mat.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_PVRTC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_PVRTC.mat -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_PVRTC.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_PVRTC.mat.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_RGB565.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_RGB565.mat -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_RGB565.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Mat_SampleA_RGB565.mat.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_ETC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_ETC.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_ETC.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_ETC.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_PVRTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_PVRTC.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_PVRTC.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_PVRTC.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_RGB565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_RGB565.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_RGB565.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_CgACo_RGB565.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_Y.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/SampleA_Y.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/SampleA_Y.png.meta -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Screenshot.png -------------------------------------------------------------------------------- /Assets/YccaSubsamplingTest/SampleA/Screenshot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/Assets/YccaSubsamplingTest/SampleA/Screenshot.png.meta -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-yoda/unity-ycca-subsampling/HEAD/README.md --------------------------------------------------------------------------------