mirror of https://github.com/GNOME/gimp.git
libgimpcolor/gimpcolor.def Updates.
2003-07-20 Tor Lillqvist <tml@iki.fi> * libgimpcolor/gimpcolor.def * libgimpmath/gimpmath.def: Updates. * libgimp/gimp.c (gimp_config): [Win32] Use gimp_tile_width() and _height() instead of now nonexistent _gimp_tile_width and _height variables.
This commit is contained in:
parent
b0550de143
commit
ebea567bdf
|
@ -1,3 +1,12 @@
|
|||
2003-07-20 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* libgimpcolor/gimpcolor.def
|
||||
* libgimpmath/gimpmath.def: Updates.
|
||||
|
||||
* libgimp/gimp.c (gimp_config): [Win32] Use gimp_tile_width() and
|
||||
_height() instead of now nonexistent _gimp_tile_width and _height
|
||||
variables.
|
||||
|
||||
2003-07-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/text/gimptext-vectors.c: more work on the framework.
|
||||
|
|
|
@ -1525,7 +1525,7 @@ gimp_config (GPConfig *config)
|
|||
* transfering tile data
|
||||
*/
|
||||
gchar fileMapName[128];
|
||||
gint tileByteSize = _gimp_tile_width * _gimp_tile_height * 4;
|
||||
gint tileByteSize = gimp_tile_width () * gimp_tile_height () * 4;
|
||||
|
||||
/* From the id, derive the file map name */
|
||||
g_snprintf (fileMapName, sizeof (fileMapName), "GIMP%d.SHM", _shm_ID);
|
||||
|
|
|
@ -1,22 +1,29 @@
|
|||
EXPORTS
|
||||
|
||||
gimp_adaptive_supersample_area
|
||||
gimp_bilinear
|
||||
gimp_bilinear_16
|
||||
gimp_bilinear_32
|
||||
gimp_bilinear_8
|
||||
gimp_bilinear_pixels_8
|
||||
gimp_bilinear_rgb
|
||||
gimp_bilinear_rgba
|
||||
gimp_bilinear_pixels_8
|
||||
gimp_cmyk_get_uchar
|
||||
gimp_cmyk_set
|
||||
gimp_cmyk_set_uchar
|
||||
gimp_cmyka_get_uchar
|
||||
gimp_cmyka_set
|
||||
gimp_cmyka_set_uchar
|
||||
gimp_hls_to_rgb_int
|
||||
gimp_hsl_to_rgb
|
||||
gimp_hsv_clamp
|
||||
gimp_hsv_set
|
||||
gimp_hsv_to_rgb
|
||||
gimp_hsv_to_rgb4
|
||||
gimp_hsv_to_rgb_int
|
||||
gimp_hsv_to_rgb_int
|
||||
gimp_hsv_to_rgb4
|
||||
gimp_hsv_to_rgb4
|
||||
gimp_hsv_to_rgb_int
|
||||
gimp_hsv_to_rgb_int
|
||||
gimp_hsva_set
|
||||
gimp_hwb_to_rgb
|
||||
gimp_rgb_add
|
||||
|
@ -24,9 +31,9 @@ EXPORTS
|
|||
gimp_rgb_clamp
|
||||
gimp_rgb_composite
|
||||
gimp_rgb_distance
|
||||
gimp_rgb_get_uchar
|
||||
gimp_rgb_gamma
|
||||
gimp_rgb_get_uchar
|
||||
gimp_rgb_get_uchar
|
||||
gimp_rgb_intensity
|
||||
gimp_rgb_intensity_uchar
|
||||
gimp_rgb_max
|
||||
|
@ -44,10 +51,10 @@ EXPORTS
|
|||
gimp_rgb_to_hsv
|
||||
gimp_rgb_to_hsv
|
||||
gimp_rgb_to_hsv4
|
||||
gimp_rgb_to_hsv_int
|
||||
gimp_rgb_to_hsv_int
|
||||
gimp_rgb_to_hsv4
|
||||
gimp_rgb_to_hsv4
|
||||
gimp_rgb_to_hsv_int
|
||||
gimp_rgb_to_hsv_int
|
||||
gimp_rgb_to_hwb
|
||||
gimp_rgb_to_l_int
|
||||
gimp_rgba_add
|
||||
|
@ -61,4 +68,3 @@ EXPORTS
|
|||
gimp_rgba_set_uchar
|
||||
gimp_rgba_set_uchar
|
||||
gimp_rgba_subtract
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
EXPORTS
|
||||
gimp_matrix2_identity
|
||||
gimp_matrix2_mult
|
||||
gimp_matrix3_determinant
|
||||
gimp_matrix3_duplicate
|
||||
gimp_matrix3_identity
|
||||
gimp_matrix3_invert
|
||||
gimp_matrix3_is_diagonal
|
||||
|
|
Loading…
Reference in New Issue