Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/image/GaussianFilter.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup freestyle | * \ingroup freestyle | ||||
| * \brief Class to perform gaussian filtering operations on an image | * \brief Class to perform gaussian filtering operations on an image | ||||
| */ | */ | ||||
| #include <cstdlib> // for abs | #include <cstdlib> // for abs | ||||
| #include <string.h> // for memcpy | #include <string.h> // for memcpy | ||||
| #include "../system/FreestyleConfig.h" | |||||
| #include "BLI_math.h" | #include "BLI_math.h" | ||||
| #ifdef WITH_CXX_GUARDEDALLOC | #ifdef WITH_CXX_GUARDEDALLOC | ||||
| # include "MEM_guardedalloc.h" | # include "MEM_guardedalloc.h" | ||||
| #endif | #endif | ||||
| namespace Freestyle { | namespace Freestyle { | ||||
| ▲ Show 20 Lines • Show All 116 Lines • Show Last 20 Lines | |||||