Skip to content
Draft
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/kernels/programs.conf
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ capture.cl 38
agx.cl 39
colorharmonizer.cl 40
overlay.cl 41
spektrafilm.cl 42
700 changes: 700 additions & 0 deletions data/kernels/spektrafilm.cl

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ FILE(GLOB SOURCE_FILES
"common/ratings.c"
"common/resource_limits.c"
"common/selection.c"
"common/spektra_core.c"
"common/spektra_sim.c"
"common/splines.cpp"
"common/styles.c"
"common/system_signal_handling.c"
Expand Down
5 changes: 5 additions & 0 deletions src/common/iop_order.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ const dt_iop_order_entry_t legacy_order[] = {
{ {45.5f }, "agx", 0},
{ {46.0f }, "filmic", 0},
{ {46.5f }, "filmicrgb", 0},
{ { 46.7f }, "spektrafilm", 0 },
{ {47.0f }, "colisa", 0},
{ {48.0f }, "zonesystem", 0},
{ {49.0f }, "tonecurve", 0},
Expand Down Expand Up @@ -258,6 +259,7 @@ const dt_iop_order_entry_t v30_order[] = {
{ {45.3f }, "sigmoid", 0},
{ {45.5f }, "agx", 0},
{ {46.0f }, "filmicrgb", 0}, // same, upgraded
{ { 46.7f }, "spektrafilm", 0 },
{ {36.0f }, "lut3d", 0}, // apply a creative style or film emulation, possibly non-linear
{ {47.0f }, "colisa", 0}, // edit contrast while damaging colour
{ {48.0f }, "tonecurve", 0}, // same
Expand Down Expand Up @@ -377,6 +379,7 @@ const dt_iop_order_entry_t v50_order[] = {
{ {45.3f }, "sigmoid", 0},
{ {45.5f }, "agx", 0},
{ {46.0f }, "filmicrgb", 0}, // same, upgraded
{ { 46.7f }, "spektrafilm", 0 },
{ {36.0f }, "lut3d", 0}, // apply a creative style or film emulation, possibly non-linear
{ {47.0f }, "colisa", 0}, // edit contrast while damaging colour
{ {48.0f }, "tonecurve", 0}, // same
Expand Down Expand Up @@ -497,6 +500,7 @@ const dt_iop_order_entry_t v30_jpg_order[] = {
{ {45.5f }, "agx", 0},
{ { 45.3f }, "sigmoid", 0},
{ { 46.0f }, "filmicrgb", 0 }, // same, upgraded
{ { 46.7f }, "spektrafilm", 0 },
{ { 36.0f }, "lut3d", 0 }, // apply a creative style or film emulation, possibly non-linear
{ { 47.0f }, "colisa", 0 }, // edit contrast while damaging colour
{ { 48.0f }, "tonecurve", 0 }, // same
Expand Down Expand Up @@ -619,6 +623,7 @@ const dt_iop_order_entry_t v50_jpg_order[] = {
{ { 45.3f }, "sigmoid", 0},
{ {45.5f }, "agx", 0},
{ { 46.0f }, "filmicrgb", 0 }, // same, upgraded
{ { 46.7f }, "spektrafilm", 0 },
{ { 36.0f }, "lut3d", 0 }, // apply a creative style or film emulation, possibly non-linear
{ { 47.0f }, "colisa", 0 }, // edit contrast while damaging colour
{ { 48.0f }, "tonecurve", 0 }, // same
Expand Down
Loading
Loading