mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 17:28:00 -05:00
shader_ir: Initial implementation
This commit is contained in:
@ -397,6 +397,10 @@ struct IpaMode {
|
||||
bool operator!=(const IpaMode& a) const {
|
||||
return !operator==(a);
|
||||
}
|
||||
bool operator<(const IpaMode& a) const {
|
||||
return std::tie(interpolation_mode, sampling_mode) <
|
||||
std::tie(a.interpolation_mode, a.sampling_mode);
|
||||
}
|
||||
};
|
||||
|
||||
enum class SystemVariable : u64 {
|
||||
|
Reference in New Issue
Block a user