From 9878fdf5c67572dfc789ce2e25079b7349843260 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. --- cogl-matrix.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cogl-matrix.h b/cogl-matrix.h index 95ec92ffd..2c8003b50 100644 --- a/cogl-matrix.h +++ b/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; /**