From 769c8e593448a9f0c68a5efec09fc04234045c12 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 11 Jul 2013 10:06:20 +0100 Subject: [PATCH] Add interface function definitions for: - pixmap_visual_get - pixmap_colormap_get - pixmap_depth_get Signed-off-by: Chris Michael --- src/lib/ecore_evas/ecore_evas_x11.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lib/ecore_evas/ecore_evas_x11.h b/src/lib/ecore_evas/ecore_evas_x11.h index e1b1afa117..b349b7f2ac 100644 --- a/src/lib/ecore_evas/ecore_evas_x11.h +++ b/src/lib/ecore_evas/ecore_evas_x11.h @@ -27,6 +27,10 @@ struct _Ecore_Evas_Interface_Software_X11 { void (*resize_set)(Ecore_Evas *ee, Eina_Bool on); Eina_Bool (*resize_get)(const Ecore_Evas *ee); void (*extra_event_window_add)(Ecore_Evas *ee, Ecore_X_Window win); + + void *(*pixmap_visual_get)(const Ecore_Evas *ee); + unsigned long (*pixmap_colormap_get)(const Ecore_Evas *ee); + int (*pixmap_depth_get)(const Ecore_Evas *ee); }; struct _Ecore_Evas_Interface_Gl_X11 { @@ -38,6 +42,10 @@ struct _Ecore_Evas_Interface_Gl_X11 { Eina_Bool (*resize_get)(const Ecore_Evas *ee); void (*extra_event_window_add)(Ecore_Evas *ee, Ecore_X_Window win); void (*pre_post_swap_callback_set)(const Ecore_Evas *ee, void *data, void (*pre_cb) (void *data, Evas *e), void (*post_cb) (void *data, Evas *e)); + + void *(*pixmap_visual_get)(const Ecore_Evas *ee); + unsigned long (*pixmap_colormap_get)(const Ecore_Evas *ee); + int (*pixmap_depth_get)(const Ecore_Evas *ee); }; #endif