Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void
- clutter_do_event_now (ClutterEvent *event)
- {
- if (event->any.stage &&
- !CLUTTER_ACTOR_IN_DESTRUCTION (event->any.stage))
- {
- /* queue it and dispatch the queue afterwards, so that
- * the events will be processed in right order */
- _clutter_stage_queue_event (event->any.stage, event, TRUE);
- _clutter_stage_process_queued_events (event->any.stage);
- }
- else
- {
- g_warning ("%s: Event does not have a stage: discarding.", G_STRFUNC);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement