Skip to content

Commit 62c07c7

Browse files
namikirijaromil
authored andcommitted
feat(pixels0rt): Add pixels0rt filter
Features: * 4-directional sorting * direct and reverse order * transparency threshold for masking
1 parent bed0326 commit 62c07c7

3 files changed

Lines changed: 430 additions & 0 deletions

File tree

src/filter/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ add_subdirectory (nosync0r)
7777
add_subdirectory (ntsc)
7878
add_subdirectory (perspective)
7979
add_subdirectory (pixeliz0r)
80+
add_subdirectory (pixels0rt)
8081
add_subdirectory (pixs0r)
8182
add_subdirectory (posterize)
8283
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)