mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Added gdk_pixmap_foreign_new_for_screen
This commit is contained in:
parent
654cfab0e5
commit
cfd72f5cd6
@ -1,3 +1,8 @@
|
||||
2006-03-30 Michael Emmel <mike.emmel@gmail.com>
|
||||
|
||||
* gdk/directfb/gdkpixmap-directfb.c implement
|
||||
(gdk_pixmap_foreign_new_for_screen)
|
||||
|
||||
2006-03-30 Emmanuele Bassi <ebassi@cvs.gnome.org>
|
||||
|
||||
Add documentation for the GtkLinkButton (#336592)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-03-30 Michael Emmel <mike.emmel@gmail.com>
|
||||
|
||||
* gdk/directfb/gdkpixmap-directfb.c implement
|
||||
(gdk_pixmap_foreign_new_for_screen)
|
||||
|
||||
2006-03-30 Emmanuele Bassi <ebassi@cvs.gnome.org>
|
||||
|
||||
Add documentation for the GtkLinkButton (#336592)
|
||||
|
@ -313,6 +313,18 @@ gdk_pixmap_foreign_new_for_display (GdkDisplay *display, GdkNativeWindow anid)
|
||||
return gdk_pixmap_foreign_new(anid);
|
||||
}
|
||||
|
||||
GdkPixmap*
|
||||
gdk_pixmap_foreign_new_for_screen (GdkScreen *screen,
|
||||
GdkNativeWindow anid,
|
||||
gint width,
|
||||
gint height,
|
||||
gint depth)
|
||||
{
|
||||
/*Use the root drawable for now since only one screen */
|
||||
return gdk_pixmap_new(NULL,width,height,depth);
|
||||
}
|
||||
|
||||
|
||||
GdkPixmap*
|
||||
gdk_pixmap_lookup (GdkNativeWindow anid)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user