Fix indentation in CoglMatrix

The members of CoglMatrix were indented by 4 characters instead of 2.
This commit is contained in:
Neil Roberts 2010-04-12 12:06:03 +01:00
parent 067a520f26
commit 232c960b67

View File

@ -72,38 +72,38 @@ typedef struct _CoglMatrix CoglMatrix;
*/ */
struct _CoglMatrix struct _CoglMatrix
{ {
/*< private >*/ /*< private >*/
/* column 0 */ /* column 0 */
float xx; float xx;
float yx; float yx;
float zx; float zx;
float wx; float wx;
/* column 1 */ /* column 1 */
float xy; float xy;
float yy; float yy;
float zy; float zy;
float wy; float wy;
/* column 2 */ /* column 2 */
float xz; float xz;
float yz; float yz;
float zz; float zz;
float wz; float wz;
/* column 3 */ /* column 3 */
float xw; float xw;
float yw; float yw;
float zw; float zw;
float ww; float ww;
/* Note: we may want to extend this later with private flags /* Note: we may want to extend this later with private flags
* and a cache of the inverse transform matrix. */ * and a cache of the inverse transform matrix. */
float inv[16]; float inv[16];
unsigned long type; unsigned long type;
unsigned long flags; unsigned long flags;
unsigned long _padding3; unsigned long _padding3;
}; };
/** /**