| 262 | // clang-format on |
| 263 | |
| 264 | void dumpMatrix(const char *note, mat4x4 MVP) { |
| 265 | int i; |
| 266 | |
| 267 | printf("%s: \n", note); |
| 268 | for (i = 0; i < 4; i++) { |
| 269 | printf("%f, %f, %f, %f\n", MVP[i][0], MVP[i][1], MVP[i][2], MVP[i][3]); |
| 270 | } |
| 271 | printf("\n"); |
| 272 | fflush(stdout); |
| 273 | } |
| 274 | |
| 275 | void dumpVec4(const char *note, vec4 vector) { |
| 276 | printf("%s: \n", note); |
nothing calls this directly
no outgoing calls
no test coverage detected