]> Pileus Git - ~andy/gtk/blobdiff - gdk/gdkpixbuf.h
Replace references to sealed GdkDevice private variables with accessor calls in quartz.
[~andy/gtk] / gdk / gdkpixbuf.h
index 497c5bbba8def6f9bb8000fa8a4016bf056b6519..61a1392d09d9fbc8d4662e1027f8141a1f6c977a 100644 (file)
 
 G_BEGIN_DECLS
 
-/* Rendering to a drawable */
-
-void gdk_pixbuf_render_threshold_alpha   (GdkPixbuf           *pixbuf,
-                                         GdkBitmap           *bitmap,
-                                         int                  src_x,
-                                         int                  src_y,
-                                         int                  dest_x,
-                                         int                  dest_y,
-                                         int                  width,
-                                         int                  height,
-                                         int                  alpha_threshold);
-void gdk_pixbuf_render_pixmap_and_mask_for_colormap (GdkPixbuf    *pixbuf,
-                                                    GdkColormap  *colormap,
-                                                    GdkPixmap   **pixmap_return,
-                                                    GdkBitmap   **mask_return,
-                                                    int           alpha_threshold);
-#ifndef GDK_MULTIHEAD_SAFE
-void gdk_pixbuf_render_pixmap_and_mask              (GdkPixbuf    *pixbuf,
-                                                    GdkPixmap   **pixmap_return,
-                                                    GdkBitmap   **mask_return,
-                                                    int           alpha_threshold);
-#endif
-
-
 /* Fetching a region from a drawable */
-GdkPixbuf *gdk_pixbuf_get_from_drawable (GdkPixbuf   *dest,
-                                        GdkDrawable *src,
-                                        GdkColormap *cmap,
+GdkPixbuf *gdk_pixbuf_get_from_window   (GdkWindow   *window,
                                         int          src_x,
                                         int          src_y,
-                                        int          dest_x,
-                                        int          dest_y,
                                         int          width,
                                         int          height);
 
-GdkPixbuf *gdk_pixbuf_get_from_surface  (GdkPixbuf       *dest,
-                                         cairo_surface_t *surface,
+GdkPixbuf *gdk_pixbuf_get_from_surface  (cairo_surface_t *surface,
                                         int              src_x,
                                         int              src_y,
-                                        int              dest_x,
-                                        int              dest_y,
                                         int              width,
                                         int              height);