
GimpFilter's is_last_node field only reflects the item's position within the parent stack. When a layer is contained in a pass- through group, it can be the last layer of the group, while not being the last layer in the graph as a whole (paticularly, if there are visible layers below the group). In fact, when we have nested pass-through groups, whether or not a layer is the last node depends on which group we're considering as the root (since we exclude the backdrop from the group's projection, resulting in different graphs for different groups). Instead of rolling our own graph traversal, just move the relevant logic to GimpOperationLayerMode, and let GEGL do the work for us. At processing time, we can tell if we're the last node by checking if we have any input. For this to work, GimpOperationLayerMode's process() function needs to have control over what's going on. Replace the derived op classes, which override process(), with a call to the layer mode's function (as per gimp_layer_mode_get_function()) in GimpOperationLayerMode's process() function. (Well, actually, this commit keeps the ops around, and just hacks around them in gimp_layer_mode_get_operation(), because laziness :P) Keep using the layer's is_last_node property to do the invalidation.
72 lines
3.9 KiB
C
72 lines
3.9 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimp-layer-modes.h
|
|
* Copyright (C) 2017 Michael Natterer <mitch@gimp.org>
|
|
* Øyvind Kolås <pippin@gimp.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GIMP_LAYER_MODES_H__
|
|
#define __GIMP_LAYER_MODES_H__
|
|
|
|
|
|
void gimp_layer_modes_init (void);
|
|
|
|
gboolean gimp_layer_mode_is_legacy (GimpLayerMode mode);
|
|
|
|
gboolean gimp_layer_mode_is_blend_space_mutable (GimpLayerMode mode);
|
|
gboolean gimp_layer_mode_is_composite_space_mutable (GimpLayerMode mode);
|
|
gboolean gimp_layer_mode_is_composite_mode_mutable (GimpLayerMode mode);
|
|
|
|
gboolean gimp_layer_mode_is_subtractive (GimpLayerMode mode);
|
|
|
|
GimpLayerColorSpace gimp_layer_mode_get_blend_space (GimpLayerMode mode);
|
|
GimpLayerColorSpace gimp_layer_mode_get_composite_space (GimpLayerMode mode);
|
|
GimpLayerCompositeMode gimp_layer_mode_get_composite_mode (GimpLayerMode mode);
|
|
GimpLayerCompositeMode gimp_layer_mode_get_paint_composite_mode (GimpLayerMode mode);
|
|
|
|
const gchar * gimp_layer_mode_get_operation (GimpLayerMode mode);
|
|
|
|
GimpLayerModeFunc gimp_layer_mode_get_function (GimpLayerMode mode);
|
|
|
|
GimpLayerModeContext gimp_layer_mode_get_context (GimpLayerMode mode);
|
|
|
|
GimpLayerMode * gimp_layer_mode_get_context_array (GimpLayerMode mode,
|
|
GimpLayerModeContext context,
|
|
gint *n_modes);
|
|
|
|
GimpLayerModeGroup gimp_layer_mode_get_group (GimpLayerMode mode);
|
|
|
|
const GimpLayerMode * gimp_layer_mode_get_group_array (GimpLayerModeGroup group,
|
|
gint *n_modes);
|
|
|
|
gboolean gimp_layer_mode_get_for_group (GimpLayerMode old_mode,
|
|
GimpLayerModeGroup new_group,
|
|
GimpLayerMode *new_mode);
|
|
|
|
const Babl * gimp_layer_mode_get_format (GimpLayerMode mode,
|
|
GimpLayerColorSpace composite_space,
|
|
GimpLayerColorSpace blend_space,
|
|
const Babl *preferred_format);
|
|
|
|
GimpLayerCompositeRegion gimp_layer_mode_get_affected_region (GimpLayerMode mode);
|
|
|
|
GimpLayerCompositeRegion gimp_layer_mode_get_included_region (GimpLayerMode mode,
|
|
GimpLayerCompositeMode composite_mode);
|
|
|
|
|
|
#endif /* __GIMP_LAYER_MODES_H__ */
|