Lines Matching refs:right
15 thread bool operator==(const float2x3 left, const float2x3 right);
16 thread bool operator!=(const float2x3 left, const float2x3 right);
18 thread bool operator==(const float2x4 left, const float2x4 right);
19 thread bool operator!=(const float2x4 left, const float2x4 right);
21 thread bool operator==(const float3x3 left, const float3x3 right);
22 thread bool operator!=(const float3x3 left, const float3x3 right);
24 thread bool operator==(const float4x2 left, const float4x2 right);
25 thread bool operator!=(const float4x2 left, const float4x2 right);
27 thread bool operator==(const float4x3 left, const float4x3 right);
28 thread bool operator!=(const float4x3 left, const float4x3 right);
33 thread bool operator==(const float2x3 left, const float2x3 right) {
34 return all(left[0] == right[0]) &&
35 all(left[1] == right[1]);
37 thread bool operator!=(const float2x3 left, const float2x3 right) {
38 return !(left == right);
43 thread bool operator==(const float2x4 left, const float2x4 right) {
44 return all(left[0] == right[0]) &&
45 all(left[1] == right[1]);
47 thread bool operator!=(const float2x4 left, const float2x4 right) {
48 return !(left == right);
53 thread bool operator==(const float3x3 left, const float3x3 right) {
54 return all(left[0] == right[0]) &&
55 all(left[1] == right[1]) &&
56 all(left[2] == right[2]);
58 thread bool operator!=(const float3x3 left, const float3x3 right) {
59 return !(left == right);
64 thread bool operator==(const float4x2 left, const float4x2 right) {
65 return all(left[0] == right[0]) &&
66 all(left[1] == right[1]) &&
67 all(left[2] == right[2]) &&
68 all(left[3] == right[3]);
70 thread bool operator!=(const float4x2 left, const float4x2 right) {
71 return !(left == right);
76 thread bool operator==(const float4x3 left, const float4x3 right) {
77 return all(left[0] == right[0]) &&
78 all(left[1] == right[1]) &&
79 all(left[2] == right[2]) &&
80 all(left[3] == right[3]);
82 thread bool operator!=(const float4x3 left, const float4x3 right) {
83 return !(left == right);