Since it appeared with GLib 2.68.0, we could not change this until we bumped the dependency which has only become possible a few days ago (since Debian testing is our baseline for dependency bumps). Cf. previous commit. As this is a drop-in replacement (just a guint parameter changed to gsize to avoid integer overflow), search-and-replace with: > sed -i 's/g_memdup\>/g_memdup2/g' `grep -rIl 'g_memdup\>' *` … followed by a few manual alignment tweaks when necessary. This gets rid of the many deprecation warnings which we had lately when building with a recent GLib version.
96 lines
2 KiB
C
96 lines
2 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "gimpcolortypes.h"
|
|
|
|
#include "gimphsv.h"
|
|
|
|
|
|
/**
|
|
* SECTION: gimphsv
|
|
* @title: GimpHSV
|
|
* @short_description: Definitions and Functions relating to HSV colors.
|
|
*
|
|
* Definitions and Functions relating to HSV colors.
|
|
**/
|
|
|
|
|
|
/*
|
|
* GIMP_TYPE_HSV
|
|
*/
|
|
|
|
static GimpHSV * gimp_hsv_copy (const GimpHSV *hsv);
|
|
|
|
|
|
G_DEFINE_BOXED_TYPE (GimpHSV, gimp_hsv, gimp_hsv_copy, g_free)
|
|
|
|
static GimpHSV *
|
|
gimp_hsv_copy (const GimpHSV *hsv)
|
|
{
|
|
return g_memdup2 (hsv, sizeof (GimpHSV));
|
|
}
|
|
|
|
|
|
/* HSV functions */
|
|
|
|
void
|
|
gimp_hsv_set (GimpHSV *hsv,
|
|
gdouble h,
|
|
gdouble s,
|
|
gdouble v)
|
|
{
|
|
g_return_if_fail (hsv != NULL);
|
|
|
|
hsv->h = h;
|
|
hsv->s = s;
|
|
hsv->v = v;
|
|
}
|
|
|
|
void
|
|
gimp_hsv_clamp (GimpHSV *hsv)
|
|
{
|
|
g_return_if_fail (hsv != NULL);
|
|
|
|
hsv->h -= (gint) hsv->h;
|
|
|
|
if (hsv->h < 0)
|
|
hsv->h += 1.0;
|
|
|
|
hsv->s = CLAMP (hsv->s, 0.0, 1.0);
|
|
hsv->v = CLAMP (hsv->v, 0.0, 1.0);
|
|
hsv->a = CLAMP (hsv->a, 0.0, 1.0);
|
|
}
|
|
|
|
void
|
|
gimp_hsva_set (GimpHSV *hsva,
|
|
gdouble h,
|
|
gdouble s,
|
|
gdouble v,
|
|
gdouble a)
|
|
{
|
|
g_return_if_fail (hsva != NULL);
|
|
|
|
hsva->h = h;
|
|
hsva->s = s;
|
|
hsva->v = v;
|
|
hsva->a = a;
|
|
}
|