diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-10-26 16:56:13 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-26 16:56:13 -0300 |
commit | 26f3e18c5cb882d48af702aa33519f4a2c74fa75 (patch) | |
tree | f17b70de1e1bca10e67a4f1076691a580f717f56 /src/common/hash.h | |
parent | a0d79085c436623252f06fe735900fb9140d5285 (diff) | |
parent | be856a38d6b0c7c90c861baf3204ac48a108f3d2 (diff) |
Merge pull request #2976 from FernandoS27/cache-fast-brx-rebased
Implement Fast BRX, fix TXQ and addapt the Shader Cache for it
Diffstat (limited to 'src/common/hash.h')
-rw-r--r-- | src/common/hash.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common/hash.h b/src/common/hash.h index 40194d1ee..ebd4125e2 100644 --- a/src/common/hash.h +++ b/src/common/hash.h @@ -6,6 +6,8 @@ #include <cstddef> #include <cstring> +#include <utility> +#include <boost/functional/hash.hpp> #include "common/cityhash.h" #include "common/common_types.h" @@ -68,4 +70,13 @@ struct HashableStruct { } }; +struct PairHash { + template <class T1, class T2> + std::size_t operator()(const std::pair<T1, T2>& pair) const noexcept { + std::size_t seed = std::hash<T1>()(pair.first); + boost::hash_combine(seed, std::hash<T2>()(pair.second)); + return seed; + } +}; + } // namespace Common |