Fix indentation in CoglMatrix
authorNeil Roberts <neil@linux.intel.com>
Mon, 12 Apr 2010 11:06:03 +0000 (12:06 +0100)
committerNeil Roberts <neil@linux.intel.com>
Mon, 12 Apr 2010 14:38:58 +0000 (15:38 +0100)
The members of CoglMatrix were indented by 4 characters instead of 2.

clutter/cogl/cogl/cogl-matrix.h

index 14a0a1c..f335940 100644 (file)
@@ -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;
 };
 
 /**