Skip to content

Commit

Permalink
graph: rename basic_filter to simple_filters
Browse files Browse the repository at this point in the history
  • Loading branch information
sekrit-twc committed Jul 22, 2022
1 parent c7c238c commit 10e0a03
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ libzimg_internal_la_SOURCES = \
src/zimg/depth/dither.h \
src/zimg/depth/quantize.h \
src/zimg/depth/quantize.cpp \
src/zimg/graph/basic_filter.cpp \
src/zimg/graph/basic_filter.h \
src/zimg/graph/filtergraph.cpp \
src/zimg/graph/filtergraph.h \
src/zimg/graph/graphbuilder.cpp \
src/zimg/graph/graphbuilder.h \
src/zimg/graph/graphengine_except.cpp \
src/zimg/graph/graphengine_except.h \
src/zimg/graph/simple_filters.cpp \
src/zimg/graph/simple_filters.h \
src/zimg/resize/filter.cpp \
src/zimg/resize/filter.h \
src/zimg/resize/resize.cpp \
Expand Down
4 changes: 2 additions & 2 deletions _msvc/zimg/zimg.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
<ClInclude Include="..\..\src\zimg\depth\x86\depth_convert_x86.h" />
<ClInclude Include="..\..\src\zimg\depth\x86\dither_x86.h" />
<ClInclude Include="..\..\src\zimg\depth\x86\f16c_x86.h" />
<ClInclude Include="..\..\src\zimg\graph\basic_filter.h" />
<ClInclude Include="..\..\src\zimg\graph\simple_filters.h" />
<ClInclude Include="..\..\src\zimg\graph\filtergraph.h" />
<ClInclude Include="..\..\src\zimg\graph\graphbuilder.h" />
<ClInclude Include="..\..\src\zimg\graph\graphengine_except.h" />
Expand Down Expand Up @@ -461,7 +461,7 @@
<EnableEnhancedInstructionSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
</ClCompile>
<ClCompile Include="..\..\src\zimg\graph\basic_filter.cpp" />
<ClCompile Include="..\..\src\zimg\graph\simple_filters.cpp" />
<ClCompile Include="..\..\src\zimg\graph\filtergraph.cpp" />
<ClCompile Include="..\..\src\zimg\graph\graphbuilder.cpp" />
<ClCompile Include="..\..\src\zimg\graph\graphengine_except.cpp" />
Expand Down
4 changes: 2 additions & 2 deletions _msvc/zimg/zimg.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
<ClInclude Include="..\..\src\zimg\graph\graphbuilder.h">
<Filter>Header Files\graph</Filter>
</ClInclude>
<ClInclude Include="..\..\src\zimg\graph\basic_filter.h">
<ClInclude Include="..\..\src\zimg\graph\simple_filters.h">
<Filter>Header Files\graph</Filter>
</ClInclude>
<ClInclude Include="..\..\src\zimg\graph\filtergraph.h">
Expand Down Expand Up @@ -482,7 +482,7 @@
<ClCompile Include="..\..\src\zimg\graph\graphbuilder.cpp">
<Filter>Source Files\graph</Filter>
</ClCompile>
<ClCompile Include="..\..\src\zimg\graph\basic_filter.cpp">
<ClCompile Include="..\..\src\zimg\graph\simple_filters.cpp">
<Filter>Source Files\graph</Filter>
</ClCompile>
<ClCompile Include="..\..\src\zimg\graph\filtergraph.cpp">
Expand Down
2 changes: 1 addition & 1 deletion src/zimg/graph/graphbuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#include "resize/filter.h"
#include "resize/resize.h"
#include "unresize/unresize.h"
#include "basic_filter.h"
#include "filtergraph.h"
#include "graphbuilder.h"
#include "graphengine_except.h"
#include "simple_filters.h"


#ifndef ZIMG_UNSAFE_IMAGE_SIZE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <algorithm>
#include <cstdint>
#include "common/pixel.h"
#include "basic_filter.h"
#include "simple_filters.h"

namespace zimg {
namespace graph {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#ifndef ZIMG_GRAPH_BASIC_FILTER_H_
#define ZIMG_GRAPH_BASIC_FILTER_H_
#ifndef ZIMG_GRAPH_SIMPLE_FILTERS_H_
#define ZIMG_GRAPH_SIMPLE_FILTERS_H_

#include <cstdint>
#include "graphengine/filter.h"
Expand Down Expand Up @@ -108,4 +108,4 @@ class UnpremultiplyFilter : public graphengine::Filter {
} // namespace graph
} // namespace zimg

#endif // ZIMG_GRAPH_BASIC_FILTER_H_
#endif // ZIMG_GRAPH_SIMPLE_FILTERS_H_

0 comments on commit 10e0a03

Please sign in to comment.