RID: Change comparison operators to use RID_Data id instead of address
This should helps making sorting more deterministic in physics and rendering.
The same change was done for 4.0 in 4f163972bb
.
This commit is contained in:
parent
88e2c513e7
commit
797321fec4
1 changed files with 3 additions and 3 deletions
|
@ -68,13 +68,13 @@ public:
|
|||
return _data == p_rid._data;
|
||||
}
|
||||
_FORCE_INLINE_ bool operator<(const RID &p_rid) const {
|
||||
return _data < p_rid._data;
|
||||
return get_id() < p_rid.get_id();
|
||||
}
|
||||
_FORCE_INLINE_ bool operator<=(const RID &p_rid) const {
|
||||
return _data <= p_rid._data;
|
||||
return get_id() <= p_rid.get_id();
|
||||
}
|
||||
_FORCE_INLINE_ bool operator>(const RID &p_rid) const {
|
||||
return _data > p_rid._data;
|
||||
return get_id() > p_rid.get_id();
|
||||
}
|
||||
_FORCE_INLINE_ bool operator!=(const RID &p_rid) const {
|
||||
return _data != p_rid._data;
|
||||
|
|
Loading…
Reference in a new issue