| 547 | |
| 548 | |
| 549 | void Parse1DMatrix ( const char **buf_p, int x, float *m) { |
| 550 | const char *token; |
| 551 | int i; |
| 552 | |
| 553 | COM_MatchToken( buf_p, "(" ); |
| 554 | |
| 555 | for (i = 0 ; i < x ; i++) { |
| 556 | token = COM_Parse(buf_p); |
| 557 | m[i] = atof(token); |
| 558 | } |
| 559 | |
| 560 | COM_MatchToken( buf_p, ")" ); |
| 561 | } |
| 562 | |
| 563 | void Parse2DMatrix ( const char **buf_p, int y, int x, float *m) { |
| 564 | int i; |
no test coverage detected