mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Add comments explaining the hashing algorithms
This commit is contained in:
parent
f0f7327b90
commit
b34d009520
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
} // namespace PICAHash
|
Loading…
Add table
Reference in a new issue