2008-05-07 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/sdl/clutter-backend-sdl.c:
	(clutter_backend_sdl_dispose): Destroy the timer that we created...
	(clutter_backend_sdl_init): ... here.

	* clutter/sdl/clutter-backend-sdl.h: Add a GTimer for time-based
	operations, like the event time.

	* clutter/sdl/clutter-event-sdl.c:
	(get_backend_time): Get the elapsed milliseconds for the SDL
	backend.

	(_clutter_events_init): Start the timer provided by the backend...
	(_clutter_events_uninit): ... and the stop it.

	(key_event_translate), (event_translate): Use the backend time
	to fill out the time field of the event structures. This fixes
	the motion notification throttling on the SDL backend.
This commit is contained in:
Emmanuele Bassi
2008-05-07 15:03:59 +00:00
parent 0782e7d635
commit fabed98362
4 changed files with 63 additions and 8 deletions

View File

@ -49,6 +49,9 @@ struct _ClutterBackendSDL
/* event source */
GSource *event_source;
/* our own timer for events */
GTimer *timer;
/*< private >*/
};