--- ray/src/util/rmatrix.h 2018/10/31 22:19:57 2.9 +++ ray/src/util/rmatrix.h 2019/09/03 23:43:07 2.11 @@ -1,4 +1,4 @@ -/* RCSid $Id: rmatrix.h,v 2.9 2018/10/31 22:19:57 greg Exp $ */ +/* RCSid $Id: rmatrix.h,v 2.11 2019/09/03 23:43:07 greg Exp $ */ /* * Header file for general matrix routines. */ @@ -14,8 +14,10 @@ extern "C" { /* General plane-ordered component matrix */ typedef struct { - int nrows, ncols, ncomp; - int dtype; + int nrows, ncols; + short ncomp; + uby8 dtype; + uby8 swapin; char *info; double mtx[1]; /* extends struct */ } RMATRIX;