| 1175 | // == Uint4 ======================================================================================= |
| 1176 | |
| 1177 | Uint4::Uint4() : x(0), y(0), z(0), w(0) |
| 1178 | { |
| 1179 | } |
| 1180 | |
| 1181 | Uint4::Uint4(uint32 x_, uint32 y_, uint32 z_, uint32 w_) : x(x_), y(y_), z(z_), w(w_) |
| 1182 | { |
nothing calls this directly
no outgoing calls
no test coverage detected