From 94465cfe3996d9d039cd3e55de10bc1ceab93a1a Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Mon, 12 Apr 2010 12:06:03 +0100 Subject: [PATCH] Fix indentation in CoglMatrix The members of CoglMatrix were indented by 4 characters instead of 2. --- clutter/cogl/cogl/cogl-matrix.h | 54 ++++++++++++++++----------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/clutter/cogl/cogl/cogl-matrix.h b/clutter/cogl/cogl/cogl-matrix.h index 14a0a1c2c..f335940ae 100644 --- a/clutter/cogl/cogl/cogl-matrix.h +++ b/clutter/cogl/cogl/cogl-matrix.h @@ -72,38 +72,38 @@ typedef struct _CoglMatrix CoglMatrix; */ struct _CoglMatrix { - /*< private >*/ + /*< private >*/ - /* column 0 */ - float xx; - float yx; - float zx; - float wx; + /* column 0 */ + float xx; + float yx; + float zx; + float wx; - /* column 1 */ - float xy; - float yy; - float zy; - float wy; + /* column 1 */ + float xy; + float yy; + float zy; + float wy; - /* column 2 */ - float xz; - float yz; - float zz; - float wz; + /* column 2 */ + float xz; + float yz; + float zz; + float wz; - /* column 3 */ - float xw; - float yw; - float zw; - float ww; + /* column 3 */ + float xw; + float yw; + float zw; + float ww; - /* Note: we may want to extend this later with private flags - * and a cache of the inverse transform matrix. */ - float inv[16]; - unsigned long type; - unsigned long flags; - unsigned long _padding3; + /* Note: we may want to extend this later with private flags + * and a cache of the inverse transform matrix. */ + float inv[16]; + unsigned long type; + unsigned long flags; + unsigned long _padding3; }; /**