From a7161b51e0fda06341238f316823c2606525f3b7 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Tue, 29 Jan 2019 04:35:12 +0100 Subject: [PATCH] filter-sdf-effects: Rename Shadow (SDF) Filter (Part 1) The nature of this Signed Distance Field based Filter is not to only draw shadows, but to also draw an outline or even glow around a source. Therefore the name "Inner/Outer Shadow (SDF)" does not fit well with the intent of the actual Filter. --- CMakeLists.txt | 4 ++-- source/{filter-shadow-sdf.cpp => filter-sdf-effects.cpp} | 0 source/{filter-shadow-sdf.hpp => filter-sdf-effects.hpp} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename source/{filter-shadow-sdf.cpp => filter-sdf-effects.cpp} (100%) rename source/{filter-shadow-sdf.hpp => filter-sdf-effects.hpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index f9ab34ab..973e79cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -257,8 +257,8 @@ SET(PROJECT_PRIVATE "${PROJECT_SOURCE_DIR}/source/filter-displacement.cpp" "${PROJECT_SOURCE_DIR}/source/filter-blur.hpp" "${PROJECT_SOURCE_DIR}/source/filter-blur.cpp" - "${PROJECT_SOURCE_DIR}/source/filter-shadow-sdf.hpp" - "${PROJECT_SOURCE_DIR}/source/filter-shadow-sdf.cpp" + "${PROJECT_SOURCE_DIR}/source/filter-sdf-effects.hpp" + "${PROJECT_SOURCE_DIR}/source/filter-sdf-effects.cpp" "${PROJECT_SOURCE_DIR}/source/filter-shape.hpp" "${PROJECT_SOURCE_DIR}/source/filter-shape.cpp" "${PROJECT_SOURCE_DIR}/source/filter-transform.hpp" diff --git a/source/filter-shadow-sdf.cpp b/source/filter-sdf-effects.cpp similarity index 100% rename from source/filter-shadow-sdf.cpp rename to source/filter-sdf-effects.cpp diff --git a/source/filter-shadow-sdf.hpp b/source/filter-sdf-effects.hpp similarity index 100% rename from source/filter-shadow-sdf.hpp rename to source/filter-sdf-effects.hpp