├── .gitattributes ├── LICENSE ├── README.md └── src ├── Hash.compute └── Test.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | *.compute linguist-language=HLSL 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0nes164/SimpleComputeShaderHashTable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0nes164/SimpleComputeShaderHashTable/HEAD/README.md -------------------------------------------------------------------------------- /src/Hash.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0nes164/SimpleComputeShaderHashTable/HEAD/src/Hash.compute -------------------------------------------------------------------------------- /src/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0nes164/SimpleComputeShaderHashTable/HEAD/src/Test.cs --------------------------------------------------------------------------------