* 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 f0145e7f83
commit 6bb998f25f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-02-01 Øyvind Kolås <pippin@o-hand.com>
* clutter/cogl/gles/cogl.c: (cogl_rectangle_internal): increase size
of GLfixed[] array to make contents fit.
2008-02-01 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.h: Clean up a bit the flag-related macros.

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,