cogl-clip-stack: Store window rect entries as ints not floats

The window rectangles are passed in as integers so there is no point
in converting them to floats when storing a stack entry for them.
This commit is contained in:
Neil Roberts 2010-04-14 15:42:57 +01:00
parent 71fdc54dde
commit 2f63146474

View File

@ -129,10 +129,10 @@ struct _CoglClipStackEntryWindowRect
CoglClipStackEntry _parent_data; CoglClipStackEntry _parent_data;
/* The window space rectangle for this clip */ /* The window space rectangle for this clip */
float x0; int x0;
float y0; int y0;
float x1; int x1;
float y1; int y1;
}; };
struct _CoglClipStackEntryPath struct _CoglClipStackEntryPath