From 4eeb4bbdd0197da538e7b0ff714339d8bb5dc1e3 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. --- gles/cogl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gles/cogl.c b/gles/cogl.c index 378da38a6..b1a15da98 100644 --- a/gles/cogl.c +++ b/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,