diff --git a/include/PICA/pica_hash.hpp b/include/PICA/pica_hash.hpp index fa34e153..32d892b7 100644 --- a/include/PICA/pica_hash.hpp +++ b/include/PICA/pica_hash.hpp @@ -4,6 +4,10 @@ // Defines to pick which hash algorithm to use for the PICA (For hashing shaders, etc) // Please only define one of them +// Available algorithms: +// xxh3: 64-bit non-cryptographic hash using SIMD, default. +// Google CityHash64: 64-bit non-cryptographic hash, generated using regular 64-bit arithmetic + //#define PANDA3DS_PICA_CITYHASH #define PANDA3DS_PICA_XXHASH3 @@ -13,4 +17,4 @@ namespace PICAHash { #endif HashType computeHash(const char* buf, std::size_t len); -} // namespace PICAHash \ No newline at end of file +} // namespace PICAHash \ No newline at end of file