Use CoglHandle rather than CoglHandle*

This breaks building on 1.4, and has always been wrong anyway.

https://bugzilla.gnome.org/show_bug.cgi?id=624571
This commit is contained in:
Adel Gadllah 2010-07-22 18:53:58 +02:00
parent c0d4f11510
commit b237cf9a63
2 changed files with 7 additions and 7 deletions

View File

@ -30,8 +30,8 @@
G_DEFINE_TYPE(StDrawingArea, st_drawing_area, ST_TYPE_WIDGET);
struct _StDrawingAreaPrivate {
CoglHandle *texture;
CoglHandle *material;
CoglHandle texture;
CoglHandle material;
cairo_t *context;
guint needs_repaint : 1;
guint in_repaint : 1;

View File

@ -33,13 +33,13 @@ struct _StThemeNodeTransitionPrivate {
StThemeNode *old_theme_node;
StThemeNode *new_theme_node;
CoglHandle *old_texture;
CoglHandle *new_texture;
CoglHandle old_texture;
CoglHandle new_texture;
CoglHandle *old_offscreen;
CoglHandle *new_offscreen;
CoglHandle old_offscreen;
CoglHandle new_offscreen;
CoglHandle *material;
CoglHandle material;
ClutterAlpha *alpha;
ClutterTimeline *timeline;