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

« back to all changes in this revision

Viewing changes to app/base/hue-saturation.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070502163303-6wchheivjxgjtlna
Tags: upstream-2.3.16
ImportĀ upstreamĀ versionĀ 2.3.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
25
25
  gdouble hue[7];
26
26
  gdouble lightness[7];
27
27
  gdouble saturation[7];
 
28
  gdouble overlap;
28
29
 
29
30
  gint    hue_transfer[6][256];
30
31
  gint    lightness_transfer[6][256];
36
37
void   hue_saturation_partition_reset     (HueSaturation *hs,
37
38
                                           GimpHueRange   partition);
38
39
void   hue_saturation_calculate_transfers (HueSaturation *hs);
39
 
void   hue_saturation                     (PixelRegion   *srcPR,
40
 
                                           PixelRegion   *destPR,
41
 
                                           HueSaturation *hs);
 
40
void   hue_saturation                     (HueSaturation *hs,
 
41
                                           PixelRegion   *srcPR,
 
42
                                           PixelRegion   *destPR);
42
43
 
43
44
 
44
45
#endif  /*  __HUE_SATURATION_H__  */