• Home
  • Raw
  • Download

Lines Matching refs:right

14 thread bool operator==(const half3x3 left, const half3x3 right);
15 thread bool operator!=(const half3x3 left, const half3x3 right);
17 thread bool operator==(const half2x2 left, const half2x2 right);
18 thread bool operator!=(const half2x2 left, const half2x2 right);
20 thread bool operator==(const float3x3 left, const float3x3 right);
21 thread bool operator!=(const float3x3 left, const float3x3 right);
23 thread bool operator==(const float2x2 left, const float2x2 right);
24 thread bool operator!=(const float2x2 left, const float2x2 right);
25 thread bool operator==(const half3x3 left, const half3x3 right) {
26 return all(left[0] == right[0]) &&
27 all(left[1] == right[1]) &&
28 all(left[2] == right[2]);
30 thread bool operator!=(const half3x3 left, const half3x3 right) {
31 return !(left == right);
33 thread half3x3 operator/(const half3x3 left, const half3x3 right) {
34 return half3x3(left[0] / right[0], left[1] / right[1], left[2] / right[2]);
36 thread half3x3& operator/=(thread half3x3& left, thread const half3x3& right) {
37 left = left / right;
40 thread bool operator==(const half2x2 left, const half2x2 right) {
41 return all(left[0] == right[0]) &&
42 all(left[1] == right[1]);
44 thread bool operator!=(const half2x2 left, const half2x2 right) {
45 return !(left == right);
47 thread half2x2 operator/(const half2x2 left, const half2x2 right) {
48 return half2x2(left[0] / right[0], left[1] / right[1]);
50 thread half2x2& operator/=(thread half2x2& left, thread const half2x2& right) {
51 left = left / right;
54 thread bool operator==(const float3x3 left, const float3x3 right) {
55 return all(left[0] == right[0]) &&
56 all(left[1] == right[1]) &&
57 all(left[2] == right[2]);
59 thread bool operator!=(const float3x3 left, const float3x3 right) {
60 return !(left == right);
62 thread float3x3 operator/(const float3x3 left, const float3x3 right) {
63 return float3x3(left[0] / right[0], left[1] / right[1], left[2] / right[2]);
65 thread float3x3& operator/=(thread float3x3& left, thread const float3x3& right) {
66 left = left / right;
69 thread bool operator==(const float2x2 left, const float2x2 right) {
70 return all(left[0] == right[0]) &&
71 all(left[1] == right[1]);
73 thread bool operator!=(const float2x2 left, const float2x2 right) {
74 return !(left == right);
76 thread float2x2 operator/(const float2x2 left, const float2x2 right) {
77 return float2x2(left[0] / right[0], left[1] / right[1]);
79 thread float2x2& operator/=(thread float2x2& left, thread const float2x2& right) {
80 left = left / right;