~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimp/gimppixelrgn.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
 
44
44
void      gimp_pixel_rgn_init       (GimpPixelRgn  *pr,
45
 
                                     GimpDrawable  *drawable,
46
 
                                     gint           x,
47
 
                                     gint           y,
48
 
                                     gint           width,
49
 
                                     gint           height,
50
 
                                     gint           dirty,
51
 
                                     gint           shadow);
 
45
                                     GimpDrawable  *drawable,
 
46
                                     gint           x,
 
47
                                     gint           y,
 
48
                                     gint           width,
 
49
                                     gint           height,
 
50
                                     gint           dirty,
 
51
                                     gint           shadow);
52
52
void      gimp_pixel_rgn_resize     (GimpPixelRgn  *pr,
53
 
                                     gint           x,
54
 
                                     gint           y,
55
 
                                     gint           width,
56
 
                                     gint           height);
 
53
                                     gint           x,
 
54
                                     gint           y,
 
55
                                     gint           width,
 
56
                                     gint           height);
57
57
void      gimp_pixel_rgn_get_pixel  (GimpPixelRgn  *pr,
58
 
                                     guchar        *buf,
59
 
                                     gint           x,
60
 
                                     gint           y);
 
58
                                     guchar        *buf,
 
59
                                     gint           x,
 
60
                                     gint           y);
61
61
void      gimp_pixel_rgn_get_row    (GimpPixelRgn  *pr,
62
 
                                     guchar        *buf,
63
 
                                     gint           x,
64
 
                                     gint           y,
65
 
                                     gint           width);
 
62
                                     guchar        *buf,
 
63
                                     gint           x,
 
64
                                     gint           y,
 
65
                                     gint           width);
66
66
void      gimp_pixel_rgn_get_col    (GimpPixelRgn  *pr,
67
 
                                     guchar        *buf,
68
 
                                     gint           x,
69
 
                                     gint           y,
70
 
                                     gint           height);
 
67
                                     guchar        *buf,
 
68
                                     gint           x,
 
69
                                     gint           y,
 
70
                                     gint           height);
71
71
void      gimp_pixel_rgn_get_rect   (GimpPixelRgn  *pr,
72
 
                                     guchar        *buf,
73
 
                                     gint           x,
74
 
                                     gint           y,
75
 
                                     gint           width,
76
 
                                     gint           height);
 
72
                                     guchar        *buf,
 
73
                                     gint           x,
 
74
                                     gint           y,
 
75
                                     gint           width,
 
76
                                     gint           height);
77
77
void      gimp_pixel_rgn_set_pixel  (GimpPixelRgn  *pr,
78
 
                                     const guchar  *buf,
79
 
                                     gint           x,
80
 
                                     gint           y);
 
78
                                     const guchar  *buf,
 
79
                                     gint           x,
 
80
                                     gint           y);
81
81
void      gimp_pixel_rgn_set_row    (GimpPixelRgn  *pr,
82
 
                                     const guchar  *buf,
83
 
                                     gint           x,
84
 
                                     gint           y,
85
 
                                     gint           width);
 
82
                                     const guchar  *buf,
 
83
                                     gint           x,
 
84
                                     gint           y,
 
85
                                     gint           width);
86
86
void      gimp_pixel_rgn_set_col    (GimpPixelRgn  *pr,
87
 
                                     const guchar  *buf,
88
 
                                     gint           x,
89
 
                                     gint           y,
90
 
                                     gint           height);
 
87
                                     const guchar  *buf,
 
88
                                     gint           x,
 
89
                                     gint           y,
 
90
                                     gint           height);
91
91
void      gimp_pixel_rgn_set_rect   (GimpPixelRgn  *pr,
92
 
                                     const guchar  *buf,
93
 
                                     gint           x,
94
 
                                     gint           y,
95
 
                                     gint           width,
96
 
                                     gint           height);
 
92
                                     const guchar  *buf,
 
93
                                     gint           x,
 
94
                                     gint           y,
 
95
                                     gint           width,
 
96
                                     gint           height);
97
97
gpointer  gimp_pixel_rgns_register  (gint           nrgns,
98
 
                                     ...);
 
98
                                     ...);
99
99
gpointer  gimp_pixel_rgns_register2 (gint           nrgns,
100
 
                                     GimpPixelRgn **prs);
 
100
                                     GimpPixelRgn **prs);
101
101
gpointer  gimp_pixel_rgns_process   (gpointer       pri_ptr);
102
102
 
103
103