* clutter/cogl/gles/cogl.c: (cogl_rectangle_internal): increase size

of GLfixed[] array to make contents fit.
This commit is contained in:
Øyvind Kolås 2008-02-01 12:07:23 +00:00
parent 801d55621e
commit 4eeb4bbdd0

View File

@ -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,