Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_projection_updates_filter.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2014 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
8
9
10#include <QtGlobal>
11#include <QRect>
12
16
17bool KisDropAllProjectionUpdatesFilter::filter(KisImage *image, KisNode *node, const QVector<QRect> &rects, KisProjectionUpdateFlags flags)
18{
19 Q_UNUSED(image);
20 Q_UNUSED(node);
21 Q_UNUSED(rects);
22 Q_UNUSED(flags);
23 return true;
24}
25
26bool KisDropAllProjectionUpdatesFilter::filterRefreshGraph(KisImage *image, KisNode *node, const QVector<QRect> &rects, const QRect &cropRect, KisProjectionUpdateFlags flags)
27{
28 Q_UNUSED(image);
29 Q_UNUSED(node);
30 Q_UNUSED(rects);
31 Q_UNUSED(cropRect);
32 Q_UNUSED(flags);
33 return true;
34}
bool filterRefreshGraph(KisImage *image, KisNode *node, const QVector< QRect > &rects, const QRect &cropRect, KisProjectionUpdateFlags flags) override
bool filter(KisImage *image, KisNode *node, const QVector< QRect > &rects, KisProjectionUpdateFlags flags) override