mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-11 02:32:12 +01:00
Merge 9d79933730d7fdb5b582adc5c92484344b9f76a3 into 3e8f91d1a116060d3fedfe856f3721db970de030
This commit is contained in:
commit
d5b12c014c
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user