[clutter] win32: use typesafe cogl_win32_renderer_handle_event



commit aacdbb4a5580f2ca77330be4b7c42bf9e48ef81e
Author: Robert Bragg <robert linux intel com>
Date:   Tue Jun 28 14:01:22 2011 +0100

    win32: use typesafe cogl_win32_renderer_handle_event
    
    The generic cogl_renderer_handle_native_event API was removed from the
    Cogl public API in favour of typesafe functions, so this updates the
    win32 backend in line with that change.
    
    Signed-off-by: Emmanuele Bassi <ebassi linux intel com>

 clutter/win32/clutter-event-win32.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/clutter/win32/clutter-event-win32.c b/clutter/win32/clutter-event-win32.c
index 517ef14..287495e 100644
--- a/clutter/win32/clutter-event-win32.c
+++ b/clutter/win32/clutter-event-win32.c
@@ -370,8 +370,8 @@ clutter_win32_handle_event (const MSG *msg)
 
   /* Give Cogl a chance to handle the message first */
   if (backend->cogl_renderer != NULL &&
-      cogl_renderer_handle_native_event (backend->cogl_renderer,
-                                         (void *) msg) == COGL_FILTER_REMOVE)
+      cogl_win32_renderer_handle_event (backend->cogl_renderer,
+                                        (void *) msg) == COGL_FILTER_REMOVE)
     return TRUE;
 
   manager = clutter_device_manager_get_default ();



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]