Added ifdef to compile with 0.9.24 removes creating a child GdkWindow
since it uses functionality only in directfb cvs
This commit is contained in:
@ -85,8 +85,12 @@ GdkVisual * gdk_directfb_visual_by_format (DFBSurfacePixelFormat pixel_format
|
||||
|
||||
IDirectFBWindow *gdk_directfb_window_lookup(GdkWindow *window);
|
||||
IDirectFBSurface *gdk_directfb_surface_lookup(GdkWindow *window);
|
||||
|
||||
#if (DIRECTFB_MICRO_VERSION > 24)
|
||||
GdkWindow *gdk_directfb_create_child_window(GdkWindow *parent,
|
||||
IDirectFBSurface *subsurface);
|
||||
#endif
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
||||
@ -2485,8 +2485,9 @@ gdk_window_get_frame_extents (GdkWindow *window,
|
||||
|
||||
/**
|
||||
* Given a directfb window and a subsurface of that window
|
||||
* create a gdkwindow chaild wrapper
|
||||
* create a gdkwindow child wrapper
|
||||
*/
|
||||
#if (DIRECTFB_MICRO_VERSION > 24)
|
||||
GdkWindow *gdk_directfb_create_child_window(GdkWindow *parent,
|
||||
IDirectFBSurface *subsurface)
|
||||
{
|
||||
@ -2532,6 +2533,7 @@ GdkWindow *gdk_directfb_create_child_window(GdkWindow *parent,
|
||||
return window;
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The wrapping is not perfect since directfb does not give full access
|
||||
|
||||
Reference in New Issue
Block a user