| 573 | } |
| 574 | |
| 575 | void Parse3DMatrix ( const char **buf_p, int z, int y, int x, float *m) { |
| 576 | int i; |
| 577 | |
| 578 | COM_MatchToken( buf_p, "(" ); |
| 579 | |
| 580 | for (i = 0 ; i < z ; i++) { |
| 581 | Parse2DMatrix (buf_p, y, x, m + i * x*y); |
| 582 | } |
| 583 | |
| 584 | COM_MatchToken( buf_p, ")" ); |
| 585 | } |
| 586 | |
| 587 | /* |
| 588 | =================== |
nothing calls this directly
no test coverage detected