Code style fixes

This commit is contained in:
Dale Glass 2020-01-17 00:41:16 +01:00
parent 367c5f39df
commit bb51a000fb

View file

@ -143,7 +143,7 @@ public:
}
bool operator!=(const DepthTest& right) const {
return !(right == *this);
return !(*this == right);
}
operator QString() const {
@ -214,7 +214,7 @@ public:
}
bool operator!=(const StencilActivation& right) const {
return !(right == *this);
return !(*this == right);
}
};
@ -267,7 +267,7 @@ public:
}
bool operator!=(const BlendFunction& right) const {
return !(right == *this);
return !(*this == right);
}
};
@ -295,7 +295,7 @@ public:
}
bool operator!=(const Flags& right) const {
return !(right == *this);
return !(*this == right);
}
};