summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/shader_ir.h4
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:
251 } 251 }
252 252
253 bool operator<(const Sampler& rhs) const { 253 bool operator<(const Sampler& rhs) const {
254 return std::tie(offset, index, type, is_array, is_shadow, is_bindless) < 254 return std::tie(index, offset, type, is_array, is_shadow, is_bindless) <
255 std::tie(rhs.offset, rhs.index, rhs.type, rhs.is_array, rhs.is_shadow, 255 std::tie(rhs.index, rhs.offset, rhs.type, rhs.is_array, rhs.is_shadow,
256 rhs.is_bindless); 256 rhs.is_bindless);
257 } 257 }
258 258