| # | Line 14 | Line 14 | extern "C" { | |
|---|---|---|
| 14 | ||
| 15 | /* General plane-ordered component matrix */ | |
| 16 | typedef struct { | |
| 17 | < | int nrows, ncols, ncomp; |
| 18 | < | short dtype; |
| 19 | < | short swapin; |
| 17 | > | int nrows, ncols; |
| 18 | > | short ncomp; |
| 19 | > | uby8 dtype; |
| 20 | > | uby8 swapin; |
| 21 | char *info; | |
| 22 | < | double mtx[1]; /* extends struct */ |
| 22 | > | double mtx[3]; /* extends struct */ |
| 23 | } RMATRIX; | |
| 24 | ||
| 25 | #define rmx_lval(rm,r,c,i) (rm)->mtx[(i)+(rm)->ncomp*((c)+(size_t)(rm)->ncols*(r))] | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |