mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 13:27:55 -05:00
Refactor VideoCore to use AS sepparate from Channel.
This commit is contained in:
@ -18,4 +18,11 @@ struct PairHash {
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct IdentityHash {
|
||||
[[nodiscard]] size_t operator()(T value) const noexcept {
|
||||
return static_cast<size_t>(value);
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Common
|
||||
|
Reference in New Issue
Block a user