diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-04-26 06:11:24 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-04-26 06:11:24 +0200 |
commit | b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9 (patch) | |
tree | c252d7ff173840a4cbbd2efa5d2eb8b51284d9a3 /src/video_core/shader | |
parent | shader_ir/texture: Fix sampler const buffer key shift (diff) | |
download | yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.tar yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.tar.gz yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.tar.bz2 yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.tar.lz yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.tar.xz yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.tar.zst yuzu-b77b4b76bb41eb4824a3af0ccd118f29e4dd47a9.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader_ir.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index 81278fb33..026181cae 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h @@ -251,8 +251,9 @@ public: } bool operator<(const Sampler& rhs) const { - return std::tie(offset, index, type, is_array, is_shadow) < - std::tie(rhs.offset, rhs.index, rhs.type, rhs.is_array, rhs.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, + rhs.is_bindless); } private: |