mirror of https://github.com/GNOME/gimp.git
remove function gimp_bpp_to_babl_format_linear() and add "gboolean linear"
2008-10-13 Michael Natterer <mitch@gimp.org> * app/gegl/gimp-gegl-utils.[ch]: remove function gimp_bpp_to_babl_format_linear() and add "gboolean linear" parameter to gimp_bpp_to_babl_format(). * app/gegl/gimpoperationtilesink.c (process) * app/gegl/gimpoperationtilesource.c (prepare): simply pass self->linear to above changed function instead of selecting between the two old functions. svn path=/trunk/; revision=27275
This commit is contained in:
parent
121785c0ed
commit
79463b2065
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2008-10-13 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* app/gegl/gimp-gegl-utils.[ch]: remove function
|
||||||
|
gimp_bpp_to_babl_format_linear() and add "gboolean linear"
|
||||||
|
parameter to gimp_bpp_to_babl_format().
|
||||||
|
|
||||||
|
* app/gegl/gimpoperationtilesink.c (process)
|
||||||
|
* app/gegl/gimpoperationtilesource.c (prepare): simply pass
|
||||||
|
self->linear to above changed function instead of selecting
|
||||||
|
between the two old functions.
|
||||||
|
|
||||||
2008-10-14 Sven Neumann <sven@gimp.org>
|
2008-10-14 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/signals.c (gimp_init_signal_handlers): comments.
|
* app/signals.c (gimp_init_signal_handlers): comments.
|
||||||
|
|
|
@ -31,17 +31,35 @@
|
||||||
/**
|
/**
|
||||||
* gimp_bpp_to_babl_format:
|
* gimp_bpp_to_babl_format:
|
||||||
* @bpp: bytes per pixel
|
* @bpp: bytes per pixel
|
||||||
|
* @linear: whether the pixels are linear or gamma-corrected.
|
||||||
*
|
*
|
||||||
* Return the Babl format to use for a given number of bytes per pixel.
|
* Return the Babl format to use for a given number of bytes per pixel.
|
||||||
* This function assumes that the data is 8bit gamma-corrected data.
|
* This function assumes that the data is 8bit.
|
||||||
*
|
*
|
||||||
* Return value: the Babl format to use
|
* Return value: the Babl format to use
|
||||||
**/
|
**/
|
||||||
const Babl *
|
const Babl *
|
||||||
gimp_bpp_to_babl_format (guint bpp)
|
gimp_bpp_to_babl_format (guint bpp,
|
||||||
|
gboolean linear)
|
||||||
{
|
{
|
||||||
g_return_val_if_fail (bpp > 0 && bpp <= 4, NULL);
|
g_return_val_if_fail (bpp > 0 && bpp <= 4, NULL);
|
||||||
|
|
||||||
|
if (linear)
|
||||||
|
{
|
||||||
|
switch (bpp)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
return babl_format ("Y u8");
|
||||||
|
case 2:
|
||||||
|
return babl_format ("YA u8");
|
||||||
|
case 3:
|
||||||
|
return babl_format ("RGB u8");
|
||||||
|
case 4:
|
||||||
|
return babl_format ("RGBA u8");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
switch (bpp)
|
switch (bpp)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -53,34 +71,6 @@ gimp_bpp_to_babl_format (guint bpp)
|
||||||
case 4:
|
case 4:
|
||||||
return babl_format ("R'G'B'A u8");
|
return babl_format ("R'G'B'A u8");
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* gimp_bpp_to_babl_format_linear:
|
|
||||||
* @bpp: bytes per pixel
|
|
||||||
*
|
|
||||||
* Return the Babl format to use for a given number of bytes per pixel.
|
|
||||||
* This function assumes that the data is 8bit linear.
|
|
||||||
*
|
|
||||||
* Return value: the Babl format to use
|
|
||||||
**/
|
|
||||||
const Babl *
|
|
||||||
gimp_bpp_to_babl_format_linear (guint bpp)
|
|
||||||
{
|
|
||||||
g_return_val_if_fail (bpp > 0 && bpp <= 4, NULL);
|
|
||||||
|
|
||||||
switch (bpp)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
return babl_format ("Y u8");
|
|
||||||
case 2:
|
|
||||||
return babl_format ("YA u8");
|
|
||||||
case 3:
|
|
||||||
return babl_format ("RGB u8");
|
|
||||||
case 4:
|
|
||||||
return babl_format ("RGBA u8");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
@ -23,8 +23,8 @@
|
||||||
#define __GIMP_GEGL_UTILS_H__
|
#define __GIMP_GEGL_UTILS_H__
|
||||||
|
|
||||||
|
|
||||||
const Babl * gimp_bpp_to_babl_format (guint bpp) G_GNUC_CONST;
|
const Babl * gimp_bpp_to_babl_format (guint bpp,
|
||||||
const Babl * gimp_bpp_to_babl_format_linear (guint bpp) G_GNUC_CONST;
|
gboolean linear) G_GNUC_CONST;
|
||||||
|
|
||||||
const gchar * gimp_layer_mode_to_gegl_operation (GimpLayerModeEffects mode) G_GNUC_CONST;
|
const gchar * gimp_layer_mode_to_gegl_operation (GimpLayerModeEffects mode) G_GNUC_CONST;
|
||||||
|
|
||||||
|
|
|
@ -196,18 +196,13 @@ gimp_operation_tile_sink_process (GeglOperation *operation,
|
||||||
GimpOperationTileSink *self = GIMP_OPERATION_TILE_SINK (operation);
|
GimpOperationTileSink *self = GIMP_OPERATION_TILE_SINK (operation);
|
||||||
const Babl *format;
|
const Babl *format;
|
||||||
PixelRegion destPR;
|
PixelRegion destPR;
|
||||||
guint bpp;
|
|
||||||
gpointer pr;
|
gpointer pr;
|
||||||
|
|
||||||
if (! self->tile_manager)
|
if (! self->tile_manager)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
bpp = tile_manager_bpp (self->tile_manager);
|
format = gimp_bpp_to_babl_format (tile_manager_bpp (self->tile_manager),
|
||||||
|
self->linear);
|
||||||
if (self->linear)
|
|
||||||
format = gimp_bpp_to_babl_format_linear (bpp);
|
|
||||||
else
|
|
||||||
format = gimp_bpp_to_babl_format (bpp);
|
|
||||||
|
|
||||||
pixel_region_init (&destPR, self->tile_manager,
|
pixel_region_init (&destPR, self->tile_manager,
|
||||||
result->x, result->y,
|
result->x, result->y,
|
||||||
|
|
|
@ -186,12 +186,9 @@ gimp_operation_tile_source_prepare (GeglOperation *operation)
|
||||||
if (self->tile_manager)
|
if (self->tile_manager)
|
||||||
{
|
{
|
||||||
const Babl *format;
|
const Babl *format;
|
||||||
guint bpp = tile_manager_bpp (self->tile_manager);
|
|
||||||
|
|
||||||
if (self->linear)
|
format = gimp_bpp_to_babl_format (tile_manager_bpp (self->tile_manager),
|
||||||
format = gimp_bpp_to_babl_format_linear (bpp);
|
self->linear);
|
||||||
else
|
|
||||||
format = gimp_bpp_to_babl_format (bpp);
|
|
||||||
|
|
||||||
gegl_operation_set_format (operation, "output", format);
|
gegl_operation_set_format (operation, "output", format);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue