| 561 | } |
| 562 | |
| 563 | void Parse2DMatrix ( const char **buf_p, int y, int x, float *m) { |
| 564 | int i; |
| 565 | |
| 566 | COM_MatchToken( buf_p, "(" ); |
| 567 | |
| 568 | for (i = 0 ; i < y ; i++) { |
| 569 | Parse1DMatrix (buf_p, x, m + i * x); |
| 570 | } |
| 571 | |
| 572 | COM_MatchToken( buf_p, ")" ); |
| 573 | } |
| 574 | |
| 575 | void Parse3DMatrix ( const char **buf_p, int z, int y, int x, float *m) { |
| 576 | int i; |
no test coverage detected