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:
parent
c0d4f11510
commit
b237cf9a63
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user