From 6bb998f25ffa012ed86cf68b0e5824e393873024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Fri, 1 Feb 2008 12:07:23 +0000 Subject: [PATCH] * clutter/cogl/gles/cogl.c: (cogl_rectangle_internal): increase size of GLfixed[] array to make contents fit. --- ChangeLog | 5 +++++ clutter/cogl/gles/cogl.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 59a838073..4a04302c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-01 Øyvind Kolås + + * clutter/cogl/gles/cogl.c: (cogl_rectangle_internal): increase size + of GLfixed[] array to make contents fit. + 2008-02-01 Emmanuele Bassi * clutter/clutter-actor.h: Clean up a bit the flag-related macros. diff --git a/clutter/cogl/gles/cogl.c b/clutter/cogl/gles/cogl.c index 378da38a6..b1a15da98 100644 --- a/clutter/cogl/gles/cogl.c +++ b/clutter/cogl/gles/cogl.c @@ -268,7 +268,7 @@ cogl_rectangle_internal (ClutterFixed x, ClutterFixed width, ClutterFixed height) { - GLfixed rect_verts[4] = { + GLfixed rect_verts[8] = { x, y, x + width, y, x, y + height,