Skip to content

Commit 4180b24

Browse files
committed
Add pixels0rt filter
Features: * 4-directional sorting * direct and reverse order * transparency threshold for masking
1 parent 015a850 commit 4180b24

File tree

3 files changed

+430
-0
lines changed

3 files changed

+430
-0
lines changed

src/filter/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ add_subdirectory (nosync0r)
7575
add_subdirectory (ntsc)
7676
add_subdirectory (perspective)
7777
add_subdirectory (pixeliz0r)
78+
add_subdirectory (pixels0rt)
7879
add_subdirectory (pixs0r)
7980
add_subdirectory (posterize)
8081
add_subdirectory (premultiply)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
set (SOURCES pixels0rt.c)
2+
set (TARGET pixels0rt)
3+
4+
if (MSVC)
5+
set (SOURCES ${SOURCES} ${FREI0R_DEF})
6+
endif (MSVC)
7+
8+
add_library (${TARGET} MODULE ${SOURCES})
9+
set_target_properties (${TARGET} PROPERTIES PREFIX "")
10+
11+
install (TARGETS ${TARGET} LIBRARY DESTINATION ${LIBDIR})

0 commit comments

Comments
 (0)