diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-04-26 06:13:05 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-04-26 06:13:05 +0200 |
commit | 2156e520149d17ae22e9e52f864231a093e5da34 (patch) | |
tree | b160ad62a2343b876b389d70c31e018f5800d0a1 /src/video_core/shader/shader_ir.h | |
parent | shader_ir: Add missing entry to Sampler operand< comparison (diff) | |
download | yuzu-2156e520149d17ae22e9e52f864231a093e5da34.tar yuzu-2156e520149d17ae22e9e52f864231a093e5da34.tar.gz yuzu-2156e520149d17ae22e9e52f864231a093e5da34.tar.bz2 yuzu-2156e520149d17ae22e9e52f864231a093e5da34.tar.lz yuzu-2156e520149d17ae22e9e52f864231a093e5da34.tar.xz yuzu-2156e520149d17ae22e9e52f864231a093e5da34.tar.zst yuzu-2156e520149d17ae22e9e52f864231a093e5da34.zip |
Diffstat (limited to 'src/video_core/shader/shader_ir.h')
-rw-r--r-- | src/video_core/shader/shader_ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index 026181cae..65f1e1de9 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h @@ -251,8 +251,8 @@ public: } bool operator<(const Sampler& rhs) const { - 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, + return std::tie(index, offset, type, is_array, is_shadow, is_bindless) < + std::tie(rhs.index, rhs.offset, rhs.type, rhs.is_array, rhs.is_shadow, rhs.is_bindless); } |