From 0a218a64e2730e55953deedefbaa6f62ebbf5c4a Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Tue, 24 Feb 2009 11:33:58 +0000 Subject: [PATCH] [cogl-matrix] Adds padding to CoglMatrix This adds enough padding to allow us to potentially add a cache of the inverse matrix in the future and private flags to annotate matrices. --- clutter/cogl/cogl-matrix.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clutter/cogl/cogl-matrix.h b/clutter/cogl/cogl-matrix.h index 95ec92f..2c8003b 100644 --- a/clutter/cogl/cogl-matrix.h +++ b/clutter/cogl/cogl-matrix.h @@ -65,6 +65,10 @@ typedef struct _CoglMatrix { /* Note: we may want to extend this later with private flags * and a cache of the inverse transform matrix. */ + float _padding0[16]; + gulong _padding1; + gulong _padding2; + gulong _padding3; } CoglMatrix; /** -- 2.7.4