Adds full frame implementation to these nodes operations. When enabling "extend bounds" node option, tiled implementation result is slightly different because it's using `TranslateOperation` with bilinear sampling for centering. Full frame always uses nearest to don't lose image quality. It has the disadvantage of causing image jiggling on backdrop when switching size values as it's not pixel perfect. This is fixed by rounding to even. No functional changes. Part of T88150. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D12167
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
/*
|
|
* 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 2
|
|
* 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, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright 2021, Blender Foundation.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "COM_BlurBaseOperation.h"
|
|
|
|
namespace blender::compositor {
|
|
|
|
class GaussianBlurBaseOperation : public BlurBaseOperation {
|
|
protected:
|
|
float *m_gausstab;
|
|
#ifdef BLI_HAVE_SSE2
|
|
__m128 *m_gausstab_sse;
|
|
#endif
|
|
int m_filtersize;
|
|
float rad_;
|
|
eDimension dimension_;
|
|
|
|
public:
|
|
GaussianBlurBaseOperation(eDimension dim);
|
|
|
|
virtual void init_data() override;
|
|
virtual void initExecution() override;
|
|
virtual void deinitExecution() override;
|
|
|
|
void get_area_of_interest(const int input_idx,
|
|
const rcti &output_area,
|
|
rcti &r_input_area) override;
|
|
virtual void update_memory_buffer_partial(MemoryBuffer *output,
|
|
const rcti &area,
|
|
Span<MemoryBuffer *> inputs) override;
|
|
};
|
|
|
|
} // namespace blender::compositor
|