mirror of
https://github.com/PabloMK7/citra.git
synced 2025-12-18 05:08:47 +00:00
video_core/shader: Refactor JIT-Engines into JitEngine type (#7210)
This commit is contained in:
parent
db7b929e47
commit
83b329f6e1
12 changed files with 80 additions and 165 deletions
|
|
@ -37,7 +37,7 @@ static inline u64 ComputeStructHash64(const T& data) noexcept {
|
|||
* Combines the seed parameter with the provided hash, producing a new unique hash
|
||||
* Implementation from: http://boost.sourceforge.net/doc/html/boost/hash_combine.html
|
||||
*/
|
||||
inline u64 HashCombine(std::size_t seed, const u64 hash) {
|
||||
inline u64 HashCombine(const u64 seed, const u64 hash) {
|
||||
return seed ^ (hash + 0x9e3779b9 + (seed << 6) + (seed >> 2));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue