mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 20:42:50 +00:00
shader_ir: Add missing entry to Sampler operand< comparison
This commit is contained in:
parent
0b91087a1e
commit
b77b4b76bb
|
@ -251,8 +251,9 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator<(const Sampler& rhs) const {
|
bool operator<(const Sampler& rhs) const {
|
||||||
return std::tie(offset, index, type, is_array, is_shadow) <
|
return std::tie(offset, index, type, is_array, is_shadow, is_bindless) <
|
||||||
std::tie(rhs.offset, rhs.index, rhs.type, rhs.is_array, rhs.is_shadow);
|
std::tie(rhs.offset, rhs.index, rhs.type, rhs.is_array, rhs.is_shadow,
|
||||||
|
rhs.is_bindless);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in a new issue