Merge 9d79933730d7fdb5b582adc5c92484344b9f76a3 into 3e8f91d1a116060d3fedfe856f3721db970de030

This commit is contained in:
cslayers 2025-03-04 08:42:41 +08:00 committed by GitHub
commit d5b12c014c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -512,14 +512,14 @@ namespace nv
friend bool operator != (const matrix4 &lhs, const matrix4 &rhs)
{
bool r = true;
for (int i = 0; i < 16; i++)
{
r &= lhs._array[i] != rhs._array[i];
if (lhs._array[i] != rhs._array[i])
return true;
}
return r;
return false;
}
union