gimp/libgimp
Øyvind Kolås ee97c1f4ff app: correct usage of babl formats
GIMP was doing evil hacks lying to GEGL about it's pixels being in a linear
color space when they are not. This causes incorrect rendering, makes gaussian
blur misbehave etc.

The legacy projection modes should be implemented using the same 2.2 gamma
formats that are correct to specify for sRGB data. (for proper color
management in higher bitdepths; icc backend babl formats should be used.)

For the old image modes correct babl formats are:

R'G'B'A u8  -  8 bit RGB with 2.2 gamma (sRGB) with linear alpha component
R'G'B' u8   -  8 bit RGB with 2.2 gamma (sRGB)
Y'A u8      -  8 bit Grayscale with 2.2 gamma with linear alpha component
Y' u8       -  8 bit Grayscale with 2.2 gamma

Y u8        -  8 bit linear data, used for masks/channels
A u8        -  8 bit linear alpha

-----------------------------------------------

RGBA float  -     32bit floating point linear light RGB
RaGaBaA float  -  32bit floating point linear light RGB, premultiplied alpha
                  to be used for processing that needs to scale by the alpha,
                  (blurs, resampling etc)
R'G'B'A float  -  32bit floating point sRGB with gamma, to be used where
                  the result depends on being closer to perceptual when
                  processing, can be used a cheaper alternative to CIE Lab
                  based modes.

-----------------------------------------------

The legacy layer modes should use the formats with gamma 2.2 only for loading
and rendering legacy XCF files correctly, in the brave new world compositing
should most likely be done in linear light with "RGBA float" and even better
"RaGaBaA float" like GEGL does for porter duff and other compositing modes.

The ability to chose the legacy layer modes should probably be hidden from the
user unless an old .xcf has been opened.
2012-05-02 17:50:38 +02:00
..
.gitignore libgimp: add gimpenums.c.tail again, pdbgen-generated files are in git 2010-07-14 20:20:58 +02:00
COPYING Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
Makefile.am libgimp: add a GeglBuffer backend for plug-ins 2012-05-02 17:46:08 +02:00
gimp.c libgimp: Change comment to point at correct alternate function 2011-12-07 10:31:24 +05:30
gimp.def libgimp: make GimpTileBackendPlugin properly private, and some cleanup 2012-05-02 17:46:08 +02:00
gimp.h libgimp: add a GeglBuffer backend for plug-ins 2012-05-02 17:46:08 +02:00
gimp_pdb.c libgimp: deprecate and rename the global pararasite functions 2011-03-08 14:31:04 +01:00
gimp_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimp_pdb_headers.h pdb: add gimp-dynamics-refresh and gimp-dynamics-get-list 2011-10-31 22:22:19 +01:00
gimpaspectpreview.c libgimp*: implement GObject::constructed() instead of ::constructor() 2011-01-12 22:03:33 +01:00
gimpaspectpreview.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrush_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpbrush_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrushes.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpbrushes.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrushes_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpbrushes_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrushmenu.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimpbrushmenu.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrushselect.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpbrushselect.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrushselect_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpbrushselect_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbrushselectbutton.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimpbrushselectbutton.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpbuffer_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpbuffer_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpchannel.c pdb: update docs to mention the new insert procs instead of the add ones 2010-09-06 00:03:29 +02:00
gimpchannel.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpchannel_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpchannel_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpcolor_pdb.c app: remove the legacy levels cruft 2012-05-02 17:46:12 +02:00
gimpcolor_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpcompat.h Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpcontext_pdb.c Bug 658477 - add PDB support for more paint and ink options 2012-03-01 12:58:26 +01:00
gimpcontext_pdb.h Bug 658477 - add PDB support for more paint and ink options 2012-03-01 12:58:26 +01:00
gimpconvert_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpconvert_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpdisplay_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpdisplay_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpdrawable.c libgimp: make GimpTileBackendPlugin properly private, and some cleanup 2012-05-02 17:46:08 +02:00
gimpdrawable.h libgimp: make GimpTileBackendPlugin properly private, and some cleanup 2012-05-02 17:46:08 +02:00
gimpdrawable_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpdrawable_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpdrawablepreview.c libgimp*: implement GObject::constructed() instead of ::constructor() 2011-01-12 22:03:33 +01:00
gimpdrawablepreview.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpdrawabletransform_pdb.c pdb: deprecate the entire drawable transform API 2010-09-16 00:50:28 +02:00
gimpdrawabletransform_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpdynamics_pdb.c libgimp: missed to commit a generated comment change 2011-11-03 22:47:12 +01:00
gimpdynamics_pdb.h pdb: add gimp-dynamics-refresh and gimp-dynamics-get-list 2011-10-31 22:22:19 +01:00
gimpedit_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpedit_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpenums.c.tail Bug 658477 - add PDB support for more paint and ink options 2012-03-01 12:58:26 +01:00
gimpenums.h Bug 658477 - add PDB support for more paint and ink options 2012-03-01 12:58:26 +01:00
gimpexport.c Doc fixes in both source comments and gtk-doc files 2011-11-25 21:39:55 +01:00
gimpexport.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfileops_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpfileops_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfloatingsel_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpfloatingsel_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfontmenu.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimpfontmenu.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfonts_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpfonts_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfontselect.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpfontselect.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfontselect_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpfontselect_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpfontselectbutton.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimpfontselectbutton.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgimprc.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpgimprc.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgimprc_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpgimprc_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradient_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpgradient_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradientmenu.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimpgradientmenu.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradients.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpgradients.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradients_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpgradients_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradientselect.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpgradientselect.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradientselect_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpgradientselect_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgradientselectbutton.c libgimp: port GimpGradientSelectButton drawing to cairo 2010-07-30 16:20:45 +02:00
gimpgradientselectbutton.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpgrid_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpgrid_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpguides_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpguides_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimphelp_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimphelp_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpimage.c libgimp: deprecate and rename the image parasite functions 2011-03-08 13:19:21 +01:00
gimpimage.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpimage_pdb.c Bug 656716 - Have a procedure to get a layer from its name 2011-09-24 16:35:59 +02:00
gimpimage_pdb.h Bug 656716 - Have a procedure to get a layer from its name 2011-09-24 16:35:59 +02:00
gimpimagecombobox.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimpimagecombobox.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpimageselect_pdb.c Fixed a typo (prodecure -> procedure) 2011-04-07 22:43:37 -04:00
gimpimageselect_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpitem_pdb.c libgimp: rename the newly added item parasite functions 2011-03-01 22:19:48 +01:00
gimpitem_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpitemcombobox.c libgimp: use gimp_item_get_name() instead of deprecated API 2010-07-09 11:22:18 +02:00
gimpitemcombobox.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpitemtransform_pdb.c Fixed a typo (prodecure -> procedure) 2011-04-07 22:43:37 -04:00
gimpitemtransform_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimplayer.c libgimpwidgets/color: move the cairo color utility functions to libgimpcolor 2011-04-28 15:50:39 +02:00
gimplayer.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimplayer_pdb.c pdb: deprecate gimp_layer_scale_full() and gimp_image_scale_full() 2010-09-16 20:33:56 +02:00
gimplayer_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpmenu.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimpmenu.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpmessage_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpmessage_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppainttools_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppainttools_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppalette.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimppalette.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppalette_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppalette_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppalettemenu.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimppalettemenu.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppalettes.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimppalettes.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppalettes_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppalettes_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppaletteselect.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimppaletteselect.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppaletteselect_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppaletteselect_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppaletteselectbutton.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimppaletteselectbutton.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppaths_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppaths_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppattern_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppattern_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppatternmenu.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimppatternmenu.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppatterns.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimppatterns.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppatterns_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppatterns_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppatternselect.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimppatternselect.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppatternselect_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimppatternselect_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppatternselectbutton.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimppatternselectbutton.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppixbuf.c Make libgimp depend on GdkPixbuf 2011-04-20 20:04:35 +02:00
gimppixbuf.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppixelfetcher.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimppixelfetcher.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimppixelrgn.c Doc fixes in both source comments and gtk-doc files 2011-11-25 21:39:55 +01:00
gimppixelrgn.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpplugin.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpplugin.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpplugin_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpplugin_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpprocbrowserdialog.c Don't use gtk_container_add() for adding to GtkBoxes 2010-10-30 14:57:56 +02:00
gimpprocbrowserdialog.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpproceduraldb.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpproceduraldb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpproceduraldb_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpproceduraldb_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpprocview.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimpprocview.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpprogress.c Doc fixes in both source comments and gtk-doc files 2011-11-25 21:39:55 +01:00
gimpprogress.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpprogress_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpprogress_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpprogressbar.c Globally switch to saying "window_id" instead of just "window" 2011-02-06 12:07:55 +01:00
gimpprogressbar.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpregioniterator.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimpregioniterator.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpselectbutton.c libgimp*: don't derive from GtkHBox and GtkVBox in libgimp either 2011-07-27 19:53:34 +02:00
gimpselectbutton.h libgimp*: don't derive from GtkHBox and GtkVBox in libgimp either 2011-07-27 19:53:34 +02:00
gimpselection.c Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpselection.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpselection_pdb.c pdb: remove gimp-item-to-selection again 2010-10-30 22:19:22 +02:00
gimpselection_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpselectiontools_pdb.c app: rename gimp_image_select_fuzzy() to gimp_image_select_contiguous_color() 2011-02-13 17:13:28 +01:00
gimpselectiontools_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimptextlayer_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimptextlayer_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimptexttool_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimptexttool_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimptile.c libgimp: move docs from template files to inline comments 2010-07-07 11:48:10 +02:00
gimptile.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimptilebackendplugin.c app: correct usage of babl formats 2012-05-02 17:50:38 +02:00
gimptilebackendplugin.h libgimp: make GimpTileBackendPlugin properly private, and some cleanup 2012-05-02 17:46:08 +02:00
gimptransformtools_pdb.c pdb: don't recommend deprecated replacement procedures for deprecated procedures 2011-03-25 22:03:14 +01:00
gimptransformtools_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimptypes.h libgimp: make GimpTileBackendPlugin properly private, and some cleanup 2012-05-02 17:46:08 +02:00
gimpui.c Depend on GTK+ >= 2.24.3, cairo >= 1.20.1, gdk-pixbuf >= 2.22.1 2011-04-06 19:58:24 +02:00
gimpui.def libgimp: move pixbuf functions from gimpui.def to gimp.def 2011-04-20 23:54:32 +02:00
gimpui.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpuimarshal.list libgimp/gimpuitypes.h abstract class for resource selection buttons. 2006-06-26 01:47:22 +00:00
gimpuitypes.h Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpundo_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpundo_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpunit_pdb.c pdb: generate nicer gtk-doc comments (no doc contents changed) 2010-09-15 22:07:36 +02:00
gimpunit_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpunitcache.c libgimp: #include "libgimpbase/gimpbase.h" instead of individual files 2011-04-28 13:09:30 +02:00
gimpunitcache.h Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
gimpvectors.c Doc fixes in both source comments and gtk-doc files 2011-11-25 21:39:55 +01:00
gimpvectors.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpvectors_pdb.c libgimp: fix the docs of gimp_vectors_to_selection() 2011-02-13 18:31:14 +01:00
gimpvectors_pdb.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
gimpzoompreview.c libgimp: use gtk_box_new() 2011-09-30 10:53:32 +02:00
gimpzoompreview.h libgimp: add guards that #error out if individual files are included 2011-04-28 19:59:52 +02:00
libgimp-intl.h Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00
stdplugins-intl.h Change licence to GPLv3 (and to LGPLv3 for libgimp). 2009-01-17 22:28:01 +00:00