|
1 | 1 | /*
|
2 | 2 | This file is part of darktable,
|
3 |
| - Copyright (C) 2018-2024 darktable developers. |
| 3 | + Copyright (C) 2018-2025 darktable developers. |
4 | 4 |
|
5 | 5 | darktable is free software: you can redistribute it and/or modify
|
6 | 6 | it under the terms of the GNU General Public License as published by
|
@@ -82,6 +82,7 @@ const dt_iop_order_entry_t legacy_order[] = {
|
82 | 82 | { { 1.0f }, "rawprepare", 0},
|
83 | 83 | { { 2.0f }, "invert", 0},
|
84 | 84 | { { 3.0f }, "temperature", 0},
|
| 85 | + { { 3.5f }, "rastermaps", 0}, |
85 | 86 | { { 4.0f }, "highlights", 0},
|
86 | 87 | { { 5.0f }, "cacorrect", 0},
|
87 | 88 | { { 6.0f }, "hotpixels", 0},
|
@@ -177,6 +178,7 @@ const dt_iop_order_entry_t v30_order[] = {
|
177 | 178 | { { 1.0 }, "rawprepare", 0},
|
178 | 179 | { { 2.0 }, "invert", 0},
|
179 | 180 | { { 3.0f }, "temperature", 0},
|
| 181 | + { { 3.5f }, "rastermaps", 0}, |
180 | 182 | { { 4.0f }, "highlights", 0},
|
181 | 183 | { { 5.0f }, "cacorrect", 0},
|
182 | 184 | { { 6.0f }, "hotpixels", 0},
|
@@ -293,6 +295,7 @@ const dt_iop_order_entry_t v50_order[] = {
|
293 | 295 | { { 1.0 }, "rawprepare", 0},
|
294 | 296 | { { 2.0 }, "invert", 0},
|
295 | 297 | { { 3.0f }, "temperature", 0},
|
| 298 | + { { 3.5f }, "rastermaps", 0}, |
296 | 299 | { { 4.0f }, "highlights", 0},
|
297 | 300 | { { 5.0f }, "cacorrect", 0},
|
298 | 301 | { { 6.0f }, "hotpixels", 0},
|
@@ -411,6 +414,7 @@ const dt_iop_order_entry_t v30_jpg_order[] = {
|
411 | 414 | { { 1.0 }, "rawprepare", 0 },
|
412 | 415 | { { 2.0 }, "invert", 0 },
|
413 | 416 | { { 3.0f }, "temperature", 0 },
|
| 417 | + { { 3.5f }, "rastermaps", 0}, |
414 | 418 | { { 4.0f }, "highlights", 0 },
|
415 | 419 | { { 5.0f }, "cacorrect", 0 },
|
416 | 420 | { { 6.0f }, "hotpixels", 0 },
|
@@ -530,6 +534,7 @@ const dt_iop_order_entry_t v50_jpg_order[] = {
|
530 | 534 | { { 1.0 }, "rawprepare", 0 },
|
531 | 535 | { { 2.0 }, "invert", 0 },
|
532 | 536 | { { 3.0f }, "temperature", 0 },
|
| 537 | + { { 3.5f }, "rastermaps", 0}, |
533 | 538 | { { 4.0f }, "highlights", 0 },
|
534 | 539 | { { 5.0f }, "cacorrect", 0 },
|
535 | 540 | { { 6.0f }, "hotpixels", 0 },
|
@@ -1173,6 +1178,7 @@ GList *dt_ioppr_get_iop_order_list(const dt_imgid_t imgid,
|
1173 | 1178 | _insert_before(iop_order_list, "nlmeans", "blurs");
|
1174 | 1179 | _insert_before(iop_order_list, "filmicrgb", "sigmoid");
|
1175 | 1180 | _insert_before(iop_order_list, "colorbalancergb", "colorequal");
|
| 1181 | + _insert_before(iop_order_list, "rastermaps", "highlights"); |
1176 | 1182 | }
|
1177 | 1183 | }
|
1178 | 1184 | else if(version >= DT_IOP_ORDER_LEGACY
|
|
0 commit comments