mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
15 lines
383 B
C
15 lines
383 B
C
#ifndef _GDK_PIXBUF_DRAWABLE_H_
|
|
#define _GDK_PIXBUF_DRAWABLE_H_
|
|
|
|
#include <gdk/gdk.h>
|
|
#include <gdk-pixbuf.h>
|
|
|
|
GdkPixBuf *gdk_pixbuf_rgb_from_drawable (GdkWindow *window,
|
|
gint x, gint y,
|
|
gint width, gint height);
|
|
GdkPixBuf *gdk_pixbuf_rgba_from_drawable (GdkWindow *window,
|
|
gint x, gint y,
|
|
gint width, gint height);
|
|
|
|
#endif /* _GDK_PIXBUF_DRAWABLE_H_ */
|