| 113 | } |
| 114 | |
| 115 | float * __operatorIndex(float2 * a, int index, void* unused) |
| 116 | { |
| 117 | if((unsigned)index >= 2) |
| 118 | nullcThrowError("Array index out of bounds"); |
| 119 | return (float*)&a->x + index; |
| 120 | } |
| 121 | |
| 122 | float * __operatorIndex(float3 * a, int index, void* unused) |
| 123 | { |
nothing calls this directly
no test coverage detected