Sonoptic experiments day 4

This commit is contained in:
2020-10-09 01:26:07 +02:00
parent ceb806d19c
commit 18399a40d2
109 changed files with 100 additions and 27 deletions

View File

@@ -21,7 +21,7 @@ typedef struct {
} Fx;
enum fxid { Fx_cos01=5, Fx_cos010, Fx_pow2, Fx_sqrt, Fx_gray0, Fx_halfsz0,
Fx_rot90, Fx_cmixa, Fx_desat, Fx_ctr2x2,
Fx_rot90, Fx_cmixa, Fx_desat, Fx_ctr2x2, Fx_norm,
Fx_xper };
Fx fx_list[] = {
@@ -36,6 +36,7 @@ Fx fx_list[] = {
{ "xper", Fx_xper, 0, 1 },
{ "desat", Fx_desat, 0, 1 },
{ "ctr2x2", Fx_ctr2x2, 0, 1 },
{ "norm", Fx_norm, 0, 1 },
{ NULL, 0, 0 }
};