Explorar o código

shader_ir: Move Sampler index entry in operand< to sort declarations

ReinUsesLisp %!s(int64=7) %!d(string=hai) anos
pai
achega
2156e52014
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/video_core/shader/shader_ir.h

+ 2 - 2
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);
     }