From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20091 invoked by alias); 28 Aug 2003 00:44:36 -0000 Mailing-List: contact guile-gtk-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: guile-gtk-owner@sources.redhat.com Received: (qmail 20057 invoked from network); 28 Aug 2003 00:44:35 -0000 Received: from unknown (HELO snoopy.pacific.net.au) (61.8.0.36) by sources.redhat.com with SMTP; 28 Aug 2003 00:44:35 -0000 Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.4) with ESMTP id h7S0iY0J024641 for ; Thu, 28 Aug 2003 10:44:34 +1000 Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h7S0iXkv010944 for ; Thu, 28 Aug 2003 10:44:33 +1000 (EST) Received: from localhost (ppp99.dyn228.pacific.net.au [203.143.228.99]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h7S0iVvj003081 for ; Thu, 28 Aug 2003 10:44:32 +1000 (EST) Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19sAth-0001Ar-00; Thu, 28 Aug 2003 10:44:21 +1000 To: guile-gtk@sources.redhat.com Subject: gdk-pixbuf and gdk_rgb_init References: <878yq1116p.fsf@zip.com.au> From: Kevin Ryde Mail-Copies-To: never Date: Thu, 28 Aug 2003 00:44:00 -0000 In-Reply-To: <878yq1116p.fsf@zip.com.au> (Kevin Ryde's message of "Mon, 11 Aug 2003 10:35:10 +1000") Message-ID: <87ptiqlifw.fsf@zip.com.au> User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2003-q3/txt/msg00059.txt.bz2 --=-=-= Content-length: 188 * gdk-pixbuf/gdk-pixbuf.defs (gdk_pixbuf_render_threshold_alpha, gdk_pixbuf_render_to_drawable, gdk_pixbuf_render_to_drawable_alpha): Add initcode gdk_rgb_init(). --=-=-= Content-Disposition: attachment; filename=gdk-pixbuf.defs.reg-init.diff Content-length: 1033 --- gdk-pixbuf.defs.~1.4.~ 1970-01-01 10:00:01.000000000 +1000 +++ gdk-pixbuf.defs 2003-08-20 08:28:36.000000000 +1000 @@ -151,7 +151,8 @@ (int dest_y) (int width) (int height) - (int alpha_threshold))) + (int alpha_threshold)) + (initcode "gdk_rgb_init();")) (define-func gdk_pixbuf_render_to_drawable none @@ -166,7 +167,8 @@ (int height) (GdkRgbDither dither) (int x_dither) - (int y_dither))) + (int y_dither)) + (initcode "gdk_rgb_init();")) (define-func gdk_pixbuf_render_to_drawable_alpha none @@ -182,14 +184,16 @@ (int alpha_threshold) (GdkRgbDither dither) (int x_dither) - (int y_dither))) + (int y_dither)) + (initcode "gdk_rgb_init();")) ;;(define-func gdk_pixbuf_render_pixmap_and_mask ;; none ;; ((GdkPixbuf pixbuf) ;; ((cvec GdkPixmap) pixmap_return) ;; ((cvec GdkBitmap) mask_return) - ;; (int alpha_threshold))) + ;; (int alpha_threshold)) +;; (initcode "gdk_rgb_init();")) (define-func gdk_pixbuf_get_from_drawable GdkPixbuf --=-=-=--