mirror of https://github.com/GNOME/gimp.git
*** empty log message ***
This commit is contained in:
parent
21a8854aa3
commit
65a64db72e
|
@ -1,3 +1,8 @@
|
|||
Tue Sep 14 04:02:06 CEST 1999 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* tools/pdbgen/stddefs.pdb, tools/pdbgen/pdb/tools.pdb: shear and
|
||||
flip used the wrong orientationtype.
|
||||
|
||||
Mon Sep 13 15:29:46 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/Makefile.am: -export-symbols only works with -export-dynamic,
|
||||
|
@ -19,7 +24,8 @@ Mon Sep 13 12:58:56 MEST 1999 Sven Neumann <sven@gimp.org>
|
|||
* app/brush_select.c: corrected scrolling in the Brushes Dialog.
|
||||
Fixes bug #2146.
|
||||
|
||||
* plug-ins/common/curve_bend.c: applied a path from Wolfgang Hofer that fixes wrong parameters in PDB calls.
|
||||
* plug-ins/common/curve_bend.c: applied a path from Wolfgang Hofer that
|
||||
fixes wrong parameters in PDB calls.
|
||||
|
||||
Mon Sep 13 01:50:29 BST 1999 Nick Lamb <njl195@zepler.org>
|
||||
|
||||
|
|
|
@ -699,6 +699,10 @@ HELP
|
|||
/* Cut/Copy from the specified drawable */
|
||||
float_tiles = transform_core_cut (gimage, drawable, &new_layer);
|
||||
|
||||
flip_type = flip_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
flip_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
/* flip the buffer */
|
||||
switch (flip_type)
|
||||
{
|
||||
|
@ -1293,6 +1297,10 @@ HELP
|
|||
gimp_matrix_identity (matrix);
|
||||
gimp_matrix_translate (matrix, -cx, -cy);
|
||||
/* Shear matrix */
|
||||
shear_type = shear_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
shear_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
if (shear_type == ORIENTATION_HORIZONTAL)
|
||||
gimp_matrix_xshear (matrix, magnitude / float_tiles->height);
|
||||
else if (shear_type == ORIENTATION_VERTICAL)
|
||||
|
|
|
@ -699,6 +699,10 @@ HELP
|
|||
/* Cut/Copy from the specified drawable */
|
||||
float_tiles = transform_core_cut (gimage, drawable, &new_layer);
|
||||
|
||||
flip_type = flip_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
flip_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
/* flip the buffer */
|
||||
switch (flip_type)
|
||||
{
|
||||
|
@ -1293,6 +1297,10 @@ HELP
|
|||
gimp_matrix_identity (matrix);
|
||||
gimp_matrix_translate (matrix, -cx, -cy);
|
||||
/* Shear matrix */
|
||||
shear_type = shear_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
shear_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
if (shear_type == ORIENTATION_HORIZONTAL)
|
||||
gimp_matrix_xshear (matrix, magnitude / float_tiles->height);
|
||||
else if (shear_type == ORIENTATION_VERTICAL)
|
||||
|
|
|
@ -699,6 +699,10 @@ HELP
|
|||
/* Cut/Copy from the specified drawable */
|
||||
float_tiles = transform_core_cut (gimage, drawable, &new_layer);
|
||||
|
||||
flip_type = flip_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
flip_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
/* flip the buffer */
|
||||
switch (flip_type)
|
||||
{
|
||||
|
@ -1293,6 +1297,10 @@ HELP
|
|||
gimp_matrix_identity (matrix);
|
||||
gimp_matrix_translate (matrix, -cx, -cy);
|
||||
/* Shear matrix */
|
||||
shear_type = shear_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
shear_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
if (shear_type == ORIENTATION_HORIZONTAL)
|
||||
gimp_matrix_xshear (matrix, magnitude / float_tiles->height);
|
||||
else if (shear_type == ORIENTATION_VERTICAL)
|
||||
|
|
|
@ -699,6 +699,10 @@ HELP
|
|||
/* Cut/Copy from the specified drawable */
|
||||
float_tiles = transform_core_cut (gimage, drawable, &new_layer);
|
||||
|
||||
flip_type = flip_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
flip_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
/* flip the buffer */
|
||||
switch (flip_type)
|
||||
{
|
||||
|
@ -1293,6 +1297,10 @@ HELP
|
|||
gimp_matrix_identity (matrix);
|
||||
gimp_matrix_translate (matrix, -cx, -cy);
|
||||
/* Shear matrix */
|
||||
shear_type = shear_type == HORIZONTAL ? ORIENTATION_HORIZONTAL :
|
||||
shear_type == VERTICAL ? ORIENTATION_VERTICAL :
|
||||
ORIENTATION_UNKNOWN;
|
||||
|
||||
if (shear_type == ORIENTATION_HORIZONTAL)
|
||||
gimp_matrix_xshear (matrix, magnitude / float_tiles->height);
|
||||
else if (shear_type == ORIENTATION_VERTICAL)
|
||||
|
|
|
@ -36,7 +36,7 @@ sub std_antialias_arg () {{
|
|||
}}
|
||||
|
||||
sub std_orientation_enum () {
|
||||
'enum OrientationType (no ORIENTATION_UNKNOWN)'
|
||||
'enum OrientationType (no UNKNOWN)'
|
||||
}
|
||||
|
||||
1;
|
||||
|
|
Loading…
Reference in New Issue