• Home
  • Raw
  • Download

Lines Matching refs:right

14 thread bool operator==(const half2x2 left, const half2x2 right);
15 thread bool operator!=(const half2x2 left, const half2x2 right);
17 thread bool operator==(const half3x3 left, const half3x3 right);
18 thread bool operator!=(const half3x3 left, const half3x3 right);
20 thread bool operator==(const half4x4 left, const half4x4 right);
21 thread bool operator!=(const half4x4 left, const half4x4 right);
23 thread bool operator==(const float2x2 left, const float2x2 right);
24 thread bool operator!=(const float2x2 left, const float2x2 right);
26 thread bool operator==(const float3x3 left, const float3x3 right);
27 thread bool operator!=(const float3x3 left, const float3x3 right);
29 thread bool operator==(const float4x4 left, const float4x4 right);
30 thread bool operator!=(const float4x4 left, const float4x4 right);
31 thread bool operator==(const half2x2 left, const half2x2 right) {
32 return all(left[0] == right[0]) &&
33 all(left[1] == right[1]);
35 thread bool operator!=(const half2x2 left, const half2x2 right) {
36 return !(left == right);
38 thread half2x2& operator*=(thread half2x2& left, thread const half2x2& right) {
39 left = left * right;
42 thread bool operator==(const half3x3 left, const half3x3 right) {
43 return all(left[0] == right[0]) &&
44 all(left[1] == right[1]) &&
45 all(left[2] == right[2]);
47 thread bool operator!=(const half3x3 left, const half3x3 right) {
48 return !(left == right);
50 thread bool operator==(const half4x4 left, const half4x4 right) {
51 return all(left[0] == right[0]) &&
52 all(left[1] == right[1]) &&
53 all(left[2] == right[2]) &&
54 all(left[3] == right[3]);
56 thread bool operator!=(const half4x4 left, const half4x4 right) {
57 return !(left == right);
59 thread bool operator==(const float2x2 left, const float2x2 right) {
60 return all(left[0] == right[0]) &&
61 all(left[1] == right[1]);
63 thread bool operator!=(const float2x2 left, const float2x2 right) {
64 return !(left == right);
66 thread float2x2& operator*=(thread float2x2& left, thread const float2x2& right) {
67 left = left * right;
70 thread bool operator==(const float3x3 left, const float3x3 right) {
71 return all(left[0] == right[0]) &&
72 all(left[1] == right[1]) &&
73 all(left[2] == right[2]);
75 thread bool operator!=(const float3x3 left, const float3x3 right) {
76 return !(left == right);
78 thread bool operator==(const float4x4 left, const float4x4 right) {
79 return all(left[0] == right[0]) &&
80 all(left[1] == right[1]) &&
81 all(left[2] == right[2]) &&
82 all(left[3] == right[3]);
84 thread bool operator!=(const float4x4 left, const float4x4 right) {
85 return !(left == right);