diff options
author | Hermet Park <hermetpark@gmail.com> | 2019-12-24 15:14:51 +0900 |
---|---|---|
committer | Hermet Park <hermetpark@gmail.com> | 2019-12-24 15:14:51 +0900 |
commit | 7874ae718f29b4b8ce7f4920ecc418f43af6abf8 (patch) | |
tree | 3d4599f5ddd51475337c3a7328f238e3dd8950c6 /src | |
parent | 03324357edec0fbf53f13a56a1efccdd84bfe0c6 (diff) |
Setup before starting fps measurement
It's not good to include the setup in fps measurement,
Also, animator tick occur immediately when test item is selected.
We need to setup before it in order to avoid invalid objects access.
Diffstat (limited to 'src')
98 files changed, 98 insertions, 98 deletions
diff --git a/src/bin/about.c b/src/bin/about.c index 3555578..e61311e 100644 --- a/src/bin/about.c +++ b/src/bin/about.c | |||
@@ -67,6 +67,6 @@ _key(const char *key) | |||
67 | void | 67 | void |
68 | about_start(void) | 68 | about_start(void) |
69 | { | 69 | { |
70 | ui_func_set(_key, _loop); | ||
71 | _setup(); | 70 | _setup(); |
71 | ui_func_set(_key, _loop); | ||
72 | } | 72 | } |
diff --git a/src/bin/font_effect_blur_alpha.c b/src/bin/font_effect_blur_alpha.c index 48d8714..e2f6743 100644 --- a/src/bin/font_effect_blur_alpha.c +++ b/src/bin/font_effect_blur_alpha.c | |||
@@ -92,8 +92,8 @@ void FNAME(void); | |||
92 | # ifndef UI | 92 | # ifndef UI |
93 | void FNAME(void) | 93 | void FNAME(void) |
94 | { | 94 | { |
95 | ui_func_set(_key, _loop); | ||
96 | _setup(); | 95 | _setup(); |
96 | ui_func_set(_key, _loop); | ||
97 | } | 97 | } |
98 | # endif | 98 | # endif |
99 | #endif | 99 | #endif |
diff --git a/src/bin/font_effect_blur_color.c b/src/bin/font_effect_blur_color.c index 4d49044..6669a7d 100644 --- a/src/bin/font_effect_blur_color.c +++ b/src/bin/font_effect_blur_color.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_border.c b/src/bin/image_blend_border.c index 4acad32..09331b9 100644 --- a/src/bin/image_blend_border.c +++ b/src/bin/image_blend_border.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_border_recolor.c b/src/bin/image_blend_border_recolor.c index 5d46f2b..5f6545f 100644 --- a/src/bin/image_blend_border_recolor.c +++ b/src/bin/image_blend_border_recolor.c | |||
@@ -95,8 +95,8 @@ void FNAME(void); | |||
95 | # ifndef UI | 95 | # ifndef UI |
96 | void FNAME(void) | 96 | void FNAME(void) |
97 | { | 97 | { |
98 | ui_func_set(_key, _loop); | ||
99 | _setup(); | 98 | _setup(); |
99 | ui_func_set(_key, _loop); | ||
100 | } | 100 | } |
101 | # endif | 101 | # endif |
102 | #endif | 102 | #endif |
diff --git a/src/bin/image_blend_fade_pow2_unscaled.c b/src/bin/image_blend_fade_pow2_unscaled.c index b4bf458..fc71d95 100644 --- a/src/bin/image_blend_fade_pow2_unscaled.c +++ b/src/bin/image_blend_fade_pow2_unscaled.c | |||
@@ -96,8 +96,8 @@ void FNAME(void); | |||
96 | # ifndef UI | 96 | # ifndef UI |
97 | void FNAME(void) | 97 | void FNAME(void) |
98 | { | 98 | { |
99 | ui_func_set(_key, _loop); | ||
100 | _setup(); | 99 | _setup(); |
100 | ui_func_set(_key, _loop); | ||
101 | } | 101 | } |
102 | # endif | 102 | # endif |
103 | #endif | 103 | #endif |
diff --git a/src/bin/image_blend_fade_unscaled.c b/src/bin/image_blend_fade_unscaled.c index d4de1d3..506a9ce 100644 --- a/src/bin/image_blend_fade_unscaled.c +++ b/src/bin/image_blend_fade_unscaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_many_smooth_same_scaled.c b/src/bin/image_blend_many_smooth_same_scaled.c index 5805dfa..401f8d3 100644 --- a/src/bin/image_blend_many_smooth_same_scaled.c +++ b/src/bin/image_blend_many_smooth_same_scaled.c | |||
@@ -96,8 +96,8 @@ void FNAME(void); | |||
96 | # ifndef UI | 96 | # ifndef UI |
97 | void FNAME(void) | 97 | void FNAME(void) |
98 | { | 98 | { |
99 | ui_func_set(_key, _loop); | ||
100 | _setup(); | 99 | _setup(); |
100 | ui_func_set(_key, _loop); | ||
101 | } | 101 | } |
102 | # endif | 102 | # endif |
103 | #endif | 103 | #endif |
diff --git a/src/bin/image_blend_nearest_same_scaled.c b/src/bin/image_blend_nearest_same_scaled.c index 2f31642..2b8e69a 100644 --- a/src/bin/image_blend_nearest_same_scaled.c +++ b/src/bin/image_blend_nearest_same_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_nearest_scaled.c b/src/bin/image_blend_nearest_scaled.c index 699afb3..2f9668c 100644 --- a/src/bin/image_blend_nearest_scaled.c +++ b/src/bin/image_blend_nearest_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_nearest_solid_same_scaled.c b/src/bin/image_blend_nearest_solid_same_scaled.c index eb8a305..5328cf1 100644 --- a/src/bin/image_blend_nearest_solid_same_scaled.c +++ b/src/bin/image_blend_nearest_solid_same_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_nearest_solid_scaled.c b/src/bin/image_blend_nearest_solid_scaled.c index 8221fb3..9347049 100644 --- a/src/bin/image_blend_nearest_solid_scaled.c +++ b/src/bin/image_blend_nearest_solid_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_occlude1.c b/src/bin/image_blend_occlude1.c index 4df92e3..f189d8f 100644 --- a/src/bin/image_blend_occlude1.c +++ b/src/bin/image_blend_occlude1.c | |||
@@ -107,8 +107,8 @@ void FNAME(void); | |||
107 | # ifndef UI | 107 | # ifndef UI |
108 | void FNAME(void) | 108 | void FNAME(void) |
109 | { | 109 | { |
110 | ui_func_set(_key, _loop); | ||
111 | _setup(); | 110 | _setup(); |
111 | ui_func_set(_key, _loop); | ||
112 | } | 112 | } |
113 | # endif | 113 | # endif |
114 | #endif | 114 | #endif |
diff --git a/src/bin/image_blend_occlude1_few.c b/src/bin/image_blend_occlude1_few.c index bea13c3..522a295 100644 --- a/src/bin/image_blend_occlude1_few.c +++ b/src/bin/image_blend_occlude1_few.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude1_many.c b/src/bin/image_blend_occlude1_many.c index f3e4ca5..7cb95db 100644 --- a/src/bin/image_blend_occlude1_many.c +++ b/src/bin/image_blend_occlude1_many.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude1_very_many.c b/src/bin/image_blend_occlude1_very_many.c index f95d18f..381972c 100644 --- a/src/bin/image_blend_occlude1_very_many.c +++ b/src/bin/image_blend_occlude1_very_many.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude2.c b/src/bin/image_blend_occlude2.c index 36820ad..ad9fdcd 100644 --- a/src/bin/image_blend_occlude2.c +++ b/src/bin/image_blend_occlude2.c | |||
@@ -107,8 +107,8 @@ void FNAME(void); | |||
107 | # ifndef UI | 107 | # ifndef UI |
108 | void FNAME(void) | 108 | void FNAME(void) |
109 | { | 109 | { |
110 | ui_func_set(_key, _loop); | ||
111 | _setup(); | 110 | _setup(); |
111 | ui_func_set(_key, _loop); | ||
112 | } | 112 | } |
113 | # endif | 113 | # endif |
114 | #endif | 114 | #endif |
diff --git a/src/bin/image_blend_occlude2_few.c b/src/bin/image_blend_occlude2_few.c index 0901441..7a22e38 100644 --- a/src/bin/image_blend_occlude2_few.c +++ b/src/bin/image_blend_occlude2_few.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude2_many.c b/src/bin/image_blend_occlude2_many.c index cfe443e..38c440e 100644 --- a/src/bin/image_blend_occlude2_many.c +++ b/src/bin/image_blend_occlude2_many.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude2_very_many.c b/src/bin/image_blend_occlude2_very_many.c index 0992f88..daa5756 100644 --- a/src/bin/image_blend_occlude2_very_many.c +++ b/src/bin/image_blend_occlude2_very_many.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude3.c b/src/bin/image_blend_occlude3.c index 9f56f49..0d51e19 100644 --- a/src/bin/image_blend_occlude3.c +++ b/src/bin/image_blend_occlude3.c | |||
@@ -107,8 +107,8 @@ void FNAME(void); | |||
107 | # ifndef UI | 107 | # ifndef UI |
108 | void FNAME(void) | 108 | void FNAME(void) |
109 | { | 109 | { |
110 | ui_func_set(_key, _loop); | ||
111 | _setup(); | 110 | _setup(); |
111 | ui_func_set(_key, _loop); | ||
112 | } | 112 | } |
113 | # endif | 113 | # endif |
114 | #endif | 114 | #endif |
diff --git a/src/bin/image_blend_occlude3_few.c b/src/bin/image_blend_occlude3_few.c index d99657e..ce7c8b0 100644 --- a/src/bin/image_blend_occlude3_few.c +++ b/src/bin/image_blend_occlude3_few.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude3_many.c b/src/bin/image_blend_occlude3_many.c index d8e04c3..2eaf099 100644 --- a/src/bin/image_blend_occlude3_many.c +++ b/src/bin/image_blend_occlude3_many.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_occlude3_very_many.c b/src/bin/image_blend_occlude3_very_many.c index 5df9829..7ca1016 100644 --- a/src/bin/image_blend_occlude3_very_many.c +++ b/src/bin/image_blend_occlude3_very_many.c | |||
@@ -110,8 +110,8 @@ void FNAME(void); | |||
110 | # ifndef UI | 110 | # ifndef UI |
111 | void FNAME(void) | 111 | void FNAME(void) |
112 | { | 112 | { |
113 | ui_func_set(_key, _loop); | ||
114 | _setup(); | 113 | _setup(); |
114 | ui_func_set(_key, _loop); | ||
115 | } | 115 | } |
116 | # endif | 116 | # endif |
117 | #endif | 117 | #endif |
diff --git a/src/bin/image_blend_smooth_same_scaled.c b/src/bin/image_blend_smooth_same_scaled.c index 5f6db38..2c85610 100644 --- a/src/bin/image_blend_smooth_same_scaled.c +++ b/src/bin/image_blend_smooth_same_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_smooth_scaled.c b/src/bin/image_blend_smooth_scaled.c index 34f920b..1e3ded1 100644 --- a/src/bin/image_blend_smooth_scaled.c +++ b/src/bin/image_blend_smooth_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_smooth_solid_same_scaled.c b/src/bin/image_blend_smooth_solid_same_scaled.c index 0d88e70..d179f5a 100644 --- a/src/bin/image_blend_smooth_solid_same_scaled.c +++ b/src/bin/image_blend_smooth_solid_same_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_smooth_solid_scaled.c b/src/bin/image_blend_smooth_solid_scaled.c index 033bebd..0789c9b 100644 --- a/src/bin/image_blend_smooth_solid_scaled.c +++ b/src/bin/image_blend_smooth_solid_scaled.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_solid_9patch.c b/src/bin/image_blend_solid_9patch.c index 81c9de4..cb8ac20 100644 --- a/src/bin/image_blend_solid_9patch.c +++ b/src/bin/image_blend_solid_9patch.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_solid_border.c b/src/bin/image_blend_solid_border.c index b4d972d..dd2389c 100644 --- a/src/bin/image_blend_solid_border.c +++ b/src/bin/image_blend_solid_border.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/image_blend_solid_fade_pow2_unscaled.c b/src/bin/image_blend_solid_fade_pow2_unscaled.c index 969e281..121e456 100644 --- a/src/bin/image_blend_solid_fade_pow2_unscaled.c +++ b/src/bin/image_blend_solid_fade_pow2_unscaled.c | |||
@@ -96,8 +96,8 @@ void FNAME(void); | |||
96 | # ifndef UI | 96 | # ifndef UI |
97 | void FNAME(void) | 97 | void FNAME(void) |
98 | { | 98 | { |
99 | ui_func_set(_key, _loop); | ||
100 | _setup(); | 99 | _setup(); |
100 | ui_func_set(_key, _loop); | ||
101 | } | 101 | } |
102 | # endif | 102 | # endif |
103 | #endif | 103 | #endif |
diff --git a/src/bin/image_blend_solid_fade_unscaled.c b/src/bin/image_blend_solid_fade_unscaled.c index 54f3335..c7c99b8 100644 --- a/src/bin/image_blend_solid_fade_unscaled.c +++ b/src/bin/image_blend_solid_fade_unscaled.c | |||
@@ -95,8 +95,8 @@ void FNAME(void); | |||
95 | # ifndef UI | 95 | # ifndef UI |
96 | void FNAME(void) | 96 | void FNAME(void) |
97 | { | 97 | { |
98 | ui_func_set(_key, _loop); | ||
99 | _setup(); | 98 | _setup(); |
99 | ui_func_set(_key, _loop); | ||
100 | } | 100 | } |
101 | # endif | 101 | # endif |
102 | #endif | 102 | #endif |
diff --git a/src/bin/image_blend_solid_middle_border.c b/src/bin/image_blend_solid_middle_border.c index 329fc13..5cac27f 100644 --- a/src/bin/image_blend_solid_middle_border.c +++ b/src/bin/image_blend_solid_middle_border.c | |||
@@ -95,8 +95,8 @@ void FNAME(void); | |||
95 | # ifndef UI | 95 | # ifndef UI |
96 | void FNAME(void) | 96 | void FNAME(void) |
97 | { | 97 | { |
98 | ui_func_set(_key, _loop); | ||
99 | _setup(); | 98 | _setup(); |
99 | ui_func_set(_key, _loop); | ||
100 | } | 100 | } |
101 | # endif | 101 | # endif |
102 | #endif | 102 | #endif |
diff --git a/src/bin/image_blend_solid_middle_unscaled.c b/src/bin/image_blend_solid_middle_unscaled.c index 67b50d3..e6fe9f1 100644 --- a/src/bin/image_blend_solid_middle_unscaled.c +++ b/src/bin/image_blend_solid_middle_unscaled.c | |||
@@ -93,8 +93,8 @@ void FNAME(void); | |||
93 | # ifndef UI | 93 | # ifndef UI |
94 | void FNAME(void) | 94 | void FNAME(void) |
95 | { | 95 | { |
96 | ui_func_set(_key, _loop); | ||
97 | _setup(); | 96 | _setup(); |
97 | ui_func_set(_key, _loop); | ||
98 | } | 98 | } |
99 | # endif | 99 | # endif |
100 | #endif | 100 | #endif |
diff --git a/src/bin/image_blend_solid_stretch.c b/src/bin/image_blend_solid_stretch.c index 2d7c0d4..c935763 100644 --- a/src/bin/image_blend_solid_stretch.c +++ b/src/bin/image_blend_solid_stretch.c | |||
@@ -100,8 +100,8 @@ void FNAME(void); | |||
100 | # ifndef UI | 100 | # ifndef UI |
101 | void FNAME(void) | 101 | void FNAME(void) |
102 | { | 102 | { |
103 | ui_func_set(_key, _loop); | ||
104 | _setup(); | 103 | _setup(); |
104 | ui_func_set(_key, _loop); | ||
105 | } | 105 | } |
106 | # endif | 106 | # endif |
107 | #endif | 107 | #endif |
diff --git a/src/bin/image_blend_solid_unscaled.c b/src/bin/image_blend_solid_unscaled.c index 57109cb..14a6188 100644 --- a/src/bin/image_blend_solid_unscaled.c +++ b/src/bin/image_blend_solid_unscaled.c | |||
@@ -91,8 +91,8 @@ void FNAME(void); | |||
91 | # ifndef UI | 91 | # ifndef UI |
92 | void FNAME(void) | 92 | void FNAME(void) |
93 | { | 93 | { |
94 | ui_func_set(_key, _loop); | ||
95 | _setup(); | 94 | _setup(); |
95 | ui_func_set(_key, _loop); | ||
96 | } | 96 | } |
97 | # endif | 97 | # endif |
98 | #endif | 98 | #endif |
diff --git a/src/bin/image_blend_unscaled.c b/src/bin/image_blend_unscaled.c index 8b043da..1acb114 100644 --- a/src/bin/image_blend_unscaled.c +++ b/src/bin/image_blend_unscaled.c | |||
@@ -91,8 +91,8 @@ void FNAME(void); | |||
91 | # ifndef UI | 91 | # ifndef UI |
92 | void FNAME(void) | 92 | void FNAME(void) |
93 | { | 93 | { |
94 | ui_func_set(_key, _loop); | ||
95 | _setup(); | 94 | _setup(); |
95 | ui_func_set(_key, _loop); | ||
96 | } | 96 | } |
97 | # endif | 97 | # endif |
98 | #endif | 98 | #endif |
diff --git a/src/bin/image_crossfade.c b/src/bin/image_crossfade.c index f80d46c..e68e8b5 100644 --- a/src/bin/image_crossfade.c +++ b/src/bin/image_crossfade.c | |||
@@ -90,8 +90,8 @@ void FNAME(void); | |||
90 | # ifndef UI | 90 | # ifndef UI |
91 | void FNAME(void) | 91 | void FNAME(void) |
92 | { | 92 | { |
93 | ui_func_set(_key, _loop); | ||
94 | _setup(); | 93 | _setup(); |
94 | ui_func_set(_key, _loop); | ||
95 | } | 95 | } |
96 | # endif | 96 | # endif |
97 | #endif | 97 | #endif |
diff --git a/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c b/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c index 417b694..3170c33 100644 --- a/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c +++ b/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c | |||
@@ -121,8 +121,8 @@ void FNAME(void); | |||
121 | # ifndef UI | 121 | # ifndef UI |
122 | void FNAME(void) | 122 | void FNAME(void) |
123 | { | 123 | { |
124 | ui_func_set(_key, _loop); | ||
125 | _setup(); | 124 | _setup(); |
125 | ui_func_set(_key, _loop); | ||
126 | } | 126 | } |
127 | # endif | 127 | # endif |
128 | #endif | 128 | #endif |
diff --git a/src/bin/image_data_ycbcr601pl_wide_stride.c b/src/bin/image_data_ycbcr601pl_wide_stride.c index 40398ac..2a8933f 100644 --- a/src/bin/image_data_ycbcr601pl_wide_stride.c +++ b/src/bin/image_data_ycbcr601pl_wide_stride.c | |||
@@ -141,8 +141,8 @@ void FNAME(void); | |||
141 | # ifndef UI | 141 | # ifndef UI |
142 | void FNAME(void) | 142 | void FNAME(void) |
143 | { | 143 | { |
144 | ui_func_set(_key, _loop); | ||
145 | _setup(); | 144 | _setup(); |
145 | ui_func_set(_key, _loop); | ||
146 | } | 146 | } |
147 | # endif | 147 | # endif |
148 | #endif | 148 | #endif |
diff --git a/src/bin/image_mask.c b/src/bin/image_mask.c index 8e5abaf..32c9a39 100644 --- a/src/bin/image_mask.c +++ b/src/bin/image_mask.c | |||
@@ -101,8 +101,8 @@ void FNAME(void); | |||
101 | # ifndef UI | 101 | # ifndef UI |
102 | void FNAME(void) | 102 | void FNAME(void) |
103 | { | 103 | { |
104 | ui_func_set(_key, _loop); | ||
105 | _setup(); | 104 | _setup(); |
105 | ui_func_set(_key, _loop); | ||
106 | } | 106 | } |
107 | # endif | 107 | # endif |
108 | #endif | 108 | #endif |
diff --git a/src/bin/image_mask_10.c b/src/bin/image_mask_10.c index c467691..12a6934 100644 --- a/src/bin/image_mask_10.c +++ b/src/bin/image_mask_10.c | |||
@@ -107,8 +107,8 @@ void FNAME(void); | |||
107 | # ifndef UI | 107 | # ifndef UI |
108 | void FNAME(void) | 108 | void FNAME(void) |
109 | { | 109 | { |
110 | ui_func_set(_key, _loop); | ||
111 | _setup(); | 110 | _setup(); |
111 | ui_func_set(_key, _loop); | ||
112 | } | 112 | } |
113 | # endif | 113 | # endif |
114 | #endif | 114 | #endif |
diff --git a/src/bin/image_mask_11.c b/src/bin/image_mask_11.c index 38479e2..6ee1021 100644 --- a/src/bin/image_mask_11.c +++ b/src/bin/image_mask_11.c | |||
@@ -113,8 +113,8 @@ void FNAME(void); | |||
113 | # ifndef UI | 113 | # ifndef UI |
114 | void FNAME(void) | 114 | void FNAME(void) |
115 | { | 115 | { |
116 | ui_func_set(_key, _loop); | ||
117 | _setup(); | 116 | _setup(); |
117 | ui_func_set(_key, _loop); | ||
118 | } | 118 | } |
119 | # endif | 119 | # endif |
120 | #endif | 120 | #endif |
diff --git a/src/bin/image_mask_12.c b/src/bin/image_mask_12.c index 2ab5ade..b05f89e 100644 --- a/src/bin/image_mask_12.c +++ b/src/bin/image_mask_12.c | |||
@@ -109,8 +109,8 @@ void FNAME(void); | |||
109 | # ifndef UI | 109 | # ifndef UI |
110 | void FNAME(void) | 110 | void FNAME(void) |
111 | { | 111 | { |
112 | ui_func_set(_key, _loop); | ||
113 | _setup(); | 112 | _setup(); |
113 | ui_func_set(_key, _loop); | ||
114 | } | 114 | } |
115 | # endif | 115 | # endif |
116 | #endif | 116 | #endif |
diff --git a/src/bin/image_mask_13.c b/src/bin/image_mask_13.c index bf59c76..da1fa54 100644 --- a/src/bin/image_mask_13.c +++ b/src/bin/image_mask_13.c | |||
@@ -109,8 +109,8 @@ void FNAME(void); | |||
109 | # ifndef UI | 109 | # ifndef UI |
110 | void FNAME(void) | 110 | void FNAME(void) |
111 | { | 111 | { |
112 | ui_func_set(_key, _loop); | ||
113 | _setup(); | 112 | _setup(); |
113 | ui_func_set(_key, _loop); | ||
114 | } | 114 | } |
115 | # endif | 115 | # endif |
116 | #endif | 116 | #endif |
diff --git a/src/bin/image_mask_2.c b/src/bin/image_mask_2.c index 70c4715..3c70ac7 100644 --- a/src/bin/image_mask_2.c +++ b/src/bin/image_mask_2.c | |||
@@ -101,8 +101,8 @@ void FNAME(void); | |||
101 | # ifndef UI | 101 | # ifndef UI |
102 | void FNAME(void) | 102 | void FNAME(void) |
103 | { | 103 | { |
104 | ui_func_set(_key, _loop); | ||
105 | _setup(); | 104 | _setup(); |
105 | ui_func_set(_key, _loop); | ||
106 | } | 106 | } |
107 | # endif | 107 | # endif |
108 | #endif | 108 | #endif |
diff --git a/src/bin/image_mask_3.c b/src/bin/image_mask_3.c index 101fe0c..2f4f6f9 100644 --- a/src/bin/image_mask_3.c +++ b/src/bin/image_mask_3.c | |||
@@ -101,8 +101,8 @@ void FNAME(void); | |||
101 | # ifndef UI | 101 | # ifndef UI |
102 | void FNAME(void) | 102 | void FNAME(void) |
103 | { | 103 | { |
104 | ui_func_set(_key, _loop); | ||
105 | _setup(); | 104 | _setup(); |
105 | ui_func_set(_key, _loop); | ||
106 | } | 106 | } |
107 | # endif | 107 | # endif |
108 | #endif | 108 | #endif |
diff --git a/src/bin/image_mask_4.c b/src/bin/image_mask_4.c index 230ba81..41ec6dd 100644 --- a/src/bin/image_mask_4.c +++ b/src/bin/image_mask_4.c | |||
@@ -103,8 +103,8 @@ void FNAME(void); | |||
103 | # ifndef UI | 103 | # ifndef UI |
104 | void FNAME(void) | 104 | void FNAME(void) |
105 | { | 105 | { |
106 | ui_func_set(_key, _loop); | ||
107 | _setup(); | 106 | _setup(); |
107 | ui_func_set(_key, _loop); | ||
108 | } | 108 | } |
109 | # endif | 109 | # endif |
110 | #endif | 110 | #endif |
diff --git a/src/bin/image_mask_5.c b/src/bin/image_mask_5.c index e19b55f..d5d2a8a 100644 --- a/src/bin/image_mask_5.c +++ b/src/bin/image_mask_5.c | |||
@@ -103,8 +103,8 @@ void FNAME(void); | |||
103 | # ifndef UI | 103 | # ifndef UI |
104 | void FNAME(void) | 104 | void FNAME(void) |
105 | { | 105 | { |
106 | ui_func_set(_key, _loop); | ||
107 | _setup(); | 106 | _setup(); |
107 | ui_func_set(_key, _loop); | ||
108 | } | 108 | } |
109 | # endif | 109 | # endif |
110 | #endif | 110 | #endif |
diff --git a/src/bin/image_mask_6.c b/src/bin/image_mask_6.c index 7d1fc3e..2d14cd3 100644 --- a/src/bin/image_mask_6.c +++ b/src/bin/image_mask_6.c | |||
@@ -103,8 +103,8 @@ void FNAME(void); | |||
103 | # ifndef UI | 103 | # ifndef UI |
104 | void FNAME(void) | 104 | void FNAME(void) |
105 | { | 105 | { |
106 | ui_func_set(_key, _loop); | ||
107 | _setup(); | 106 | _setup(); |
107 | ui_func_set(_key, _loop); | ||
108 | } | 108 | } |
109 | # endif | 109 | # endif |
110 | #endif | 110 | #endif |
diff --git a/src/bin/image_mask_7.c b/src/bin/image_mask_7.c index de885af..d3bfad0 100644 --- a/src/bin/image_mask_7.c +++ b/src/bin/image_mask_7.c | |||
@@ -108,8 +108,8 @@ void FNAME(void); | |||
108 | # ifndef UI | 108 | # ifndef UI |
109 | void FNAME(void) | 109 | void FNAME(void) |
110 | { | 110 | { |
111 | ui_func_set(_key, _loop); | ||
112 | _setup(); | 111 | _setup(); |
112 | ui_func_set(_key, _loop); | ||
113 | } | 113 | } |
114 | # endif | 114 | # endif |
115 | #endif | 115 | #endif |
diff --git a/src/bin/image_mask_8.c b/src/bin/image_mask_8.c index 1401240..2ce2509 100644 --- a/src/bin/image_mask_8.c +++ b/src/bin/image_mask_8.c | |||
@@ -103,8 +103,8 @@ void FNAME(void); | |||
103 | # ifndef UI | 103 | # ifndef UI |
104 | void FNAME(void) | 104 | void FNAME(void) |
105 | { | 105 | { |
106 | ui_func_set(_key, _loop); | ||
107 | _setup(); | 106 | _setup(); |
107 | ui_func_set(_key, _loop); | ||
108 | } | 108 | } |
109 | # endif | 109 | # endif |
110 | #endif | 110 | #endif |
diff --git a/src/bin/image_mask_9.c b/src/bin/image_mask_9.c index 046c1b0..0c5ea25 100644 --- a/src/bin/image_mask_9.c +++ b/src/bin/image_mask_9.c | |||
@@ -114,8 +114,8 @@ void FNAME(void); | |||
114 | # ifndef UI | 114 | # ifndef UI |
115 | void FNAME(void) | 115 | void FNAME(void) |
116 | { | 116 | { |
117 | ui_func_set(_key, _loop); | ||
118 | _setup(); | 117 | _setup(); |
118 | ui_func_set(_key, _loop); | ||
119 | } | 119 | } |
120 | # endif | 120 | # endif |
121 | #endif | 121 | #endif |
diff --git a/src/bin/image_mask_clipped.c b/src/bin/image_mask_clipped.c index 0491a84..825ac10 100644 --- a/src/bin/image_mask_clipped.c +++ b/src/bin/image_mask_clipped.c | |||
@@ -124,8 +124,8 @@ void FNAME(void); | |||
124 | # ifndef UI | 124 | # ifndef UI |
125 | void FNAME(void) | 125 | void FNAME(void) |
126 | { | 126 | { |
127 | ui_func_set(_key, _loop); | ||
128 | _setup(); | 127 | _setup(); |
128 | ui_func_set(_key, _loop); | ||
129 | } | 129 | } |
130 | # endif | 130 | # endif |
131 | #endif | 131 | #endif |
diff --git a/src/bin/image_quality_scale.c b/src/bin/image_quality_scale.c index 7606d2e..5dc7a85 100644 --- a/src/bin/image_quality_scale.c +++ b/src/bin/image_quality_scale.c | |||
@@ -94,8 +94,8 @@ void FNAME(void); | |||
94 | # ifndef UI | 94 | # ifndef UI |
95 | void FNAME(void) | 95 | void FNAME(void) |
96 | { | 96 | { |
97 | ui_func_set(_key, _loop); | ||
98 | _setup(); | 97 | _setup(); |
98 | ui_func_set(_key, _loop); | ||
99 | } | 99 | } |
100 | # endif | 100 | # endif |
101 | #endif | 101 | #endif |
diff --git a/src/bin/line_blend.c b/src/bin/line_blend.c index 9ea9c72..c792448 100644 --- a/src/bin/line_blend.c +++ b/src/bin/line_blend.c | |||
@@ -129,8 +129,8 @@ void FNAME(void); | |||
129 | # ifndef UI | 129 | # ifndef UI |
130 | void FNAME(void) | 130 | void FNAME(void) |
131 | { | 131 | { |
132 | ui_func_set(_key, _loop); | ||
133 | _setup(); | 132 | _setup(); |
133 | ui_func_set(_key, _loop); | ||
134 | } | 134 | } |
135 | # endif | 135 | # endif |
136 | #endif | 136 | #endif |
diff --git a/src/bin/poly_blend.c b/src/bin/poly_blend.c index 789efd4..33e7aa2 100644 --- a/src/bin/poly_blend.c +++ b/src/bin/poly_blend.c | |||
@@ -143,8 +143,8 @@ void FNAME(void); | |||
143 | # ifndef UI | 143 | # ifndef UI |
144 | void FNAME(void) | 144 | void FNAME(void) |
145 | { | 145 | { |
146 | ui_func_set(_key, _loop); | ||
147 | _setup(); | 146 | _setup(); |
147 | ui_func_set(_key, _loop); | ||
148 | } | 148 | } |
149 | # endif | 149 | # endif |
150 | #endif | 150 | #endif |
diff --git a/src/bin/proxy_image.c b/src/bin/proxy_image.c index 049dd4e..c0e4ae7 100644 --- a/src/bin/proxy_image.c +++ b/src/bin/proxy_image.c | |||
@@ -100,8 +100,8 @@ void FNAME(void); | |||
100 | # ifndef UI | 100 | # ifndef UI |
101 | void FNAME(void) | 101 | void FNAME(void) |
102 | { | 102 | { |
103 | ui_func_set(_key, _loop); | ||
104 | _setup(); | 103 | _setup(); |
104 | ui_func_set(_key, _loop); | ||
105 | } | 105 | } |
106 | # endif | 106 | # endif |
107 | #endif | 107 | #endif |
diff --git a/src/bin/proxy_image_clipped.c b/src/bin/proxy_image_clipped.c index ecb63f8..3918cd0 100644 --- a/src/bin/proxy_image_clipped.c +++ b/src/bin/proxy_image_clipped.c | |||
@@ -114,8 +114,8 @@ void FNAME(void); | |||
114 | # ifndef UI | 114 | # ifndef UI |
115 | void FNAME(void) | 115 | void FNAME(void) |
116 | { | 116 | { |
117 | ui_func_set(_key, _loop); | ||
118 | _setup(); | 117 | _setup(); |
118 | ui_func_set(_key, _loop); | ||
119 | } | 119 | } |
120 | # endif | 120 | # endif |
121 | #endif | 121 | #endif |
diff --git a/src/bin/proxy_image_offscreen.c b/src/bin/proxy_image_offscreen.c index f7d0ac3..20e230e 100644 --- a/src/bin/proxy_image_offscreen.c +++ b/src/bin/proxy_image_offscreen.c | |||
@@ -103,8 +103,8 @@ void FNAME(void); | |||
103 | # ifndef UI | 103 | # ifndef UI |
104 | void FNAME(void) | 104 | void FNAME(void) |
105 | { | 105 | { |
106 | ui_func_set(_key, _loop); | ||
107 | _setup(); | 106 | _setup(); |
107 | ui_func_set(_key, _loop); | ||
108 | } | 108 | } |
109 | # endif | 109 | # endif |
110 | #endif | 110 | #endif |
diff --git a/src/bin/proxy_text_fixed.c b/src/bin/proxy_text_fixed.c index ee83d08..4d03c28 100644 --- a/src/bin/proxy_text_fixed.c +++ b/src/bin/proxy_text_fixed.c | |||
@@ -116,8 +116,8 @@ void FNAME(void); | |||
116 | # ifndef UI | 116 | # ifndef UI |
117 | void FNAME(void) | 117 | void FNAME(void) |
118 | { | 118 | { |
119 | ui_func_set(_key, _loop); | ||
120 | _setup(); | 119 | _setup(); |
120 | ui_func_set(_key, _loop); | ||
121 | } | 121 | } |
122 | # endif | 122 | # endif |
123 | #endif | 123 | #endif |
diff --git a/src/bin/proxy_text_random.c b/src/bin/proxy_text_random.c index b2a0795..eb0d3a2 100644 --- a/src/bin/proxy_text_random.c +++ b/src/bin/proxy_text_random.c | |||
@@ -133,8 +133,8 @@ void FNAME(void); | |||
133 | # ifndef UI | 133 | # ifndef UI |
134 | void FNAME(void) | 134 | void FNAME(void) |
135 | { | 135 | { |
136 | ui_func_set(_key, _loop); | ||
137 | _setup(); | 136 | _setup(); |
137 | ui_func_set(_key, _loop); | ||
138 | } | 138 | } |
139 | # endif | 139 | # endif |
140 | #endif | 140 | #endif |
diff --git a/src/bin/proxy_textblock.c b/src/bin/proxy_textblock.c index c9a3e60..691756c 100644 --- a/src/bin/proxy_textblock.c +++ b/src/bin/proxy_textblock.c | |||
@@ -156,8 +156,8 @@ void FNAME(void); | |||
156 | # ifndef UI | 156 | # ifndef UI |
157 | void FNAME(void) | 157 | void FNAME(void) |
158 | { | 158 | { |
159 | ui_func_set(_key, _loop); | ||
160 | _setup(); | 159 | _setup(); |
160 | ui_func_set(_key, _loop); | ||
161 | } | 161 | } |
162 | # endif | 162 | # endif |
163 | #endif | 163 | #endif |
diff --git a/src/bin/rect_blend.c b/src/bin/rect_blend.c index d108e72..58d0611 100644 --- a/src/bin/rect_blend.c +++ b/src/bin/rect_blend.c | |||
@@ -99,8 +99,8 @@ void FNAME(void); | |||
99 | # ifndef UI | 99 | # ifndef UI |
100 | void FNAME(void) | 100 | void FNAME(void) |
101 | { | 101 | { |
102 | ui_func_set(_key, _loop); | ||
103 | _setup(); | 102 | _setup(); |
103 | ui_func_set(_key, _loop); | ||
104 | } | 104 | } |
105 | # endif | 105 | # endif |
106 | #endif | 106 | #endif |
diff --git a/src/bin/rect_blend_few.c b/src/bin/rect_blend_few.c index 84d8b0d..ba1c9b4 100644 --- a/src/bin/rect_blend_few.c +++ b/src/bin/rect_blend_few.c | |||
@@ -102,8 +102,8 @@ void FNAME(void); | |||
102 | # ifndef UI | 102 | # ifndef UI |
103 | void FNAME(void) | 103 | void FNAME(void) |
104 | { | 104 | { |
105 | ui_func_set(_key, _loop); | ||
106 | _setup(); | 105 | _setup(); |
106 | ui_func_set(_key, _loop); | ||
107 | } | 107 | } |
108 | # endif | 108 | # endif |
109 | #endif | 109 | #endif |
diff --git a/src/bin/rect_blend_pow2.c b/src/bin/rect_blend_pow2.c index 9aef9f9..b8f5ecc 100644 --- a/src/bin/rect_blend_pow2.c +++ b/src/bin/rect_blend_pow2.c | |||
@@ -100,8 +100,8 @@ void FNAME(void); | |||
100 | # ifndef UI | 100 | # ifndef UI |
101 | void FNAME(void) | 101 | void FNAME(void) |
102 | { | 102 | { |
103 | ui_func_set(_key, _loop); | ||
104 | _setup(); | 103 | _setup(); |
104 | ui_func_set(_key, _loop); | ||
105 | } | 105 | } |
106 | # endif | 106 | # endif |
107 | #endif | 107 | #endif |
diff --git a/src/bin/rect_blend_pow2_few.c b/src/bin/rect_blend_pow2_few.c index 736436e..c4b8480 100644 --- a/src/bin/rect_blend_pow2_few.c +++ b/src/bin/rect_blend_pow2_few.c | |||
@@ -103,8 +103,8 @@ void FNAME(void); | |||
103 | # ifndef UI | 103 | # ifndef UI |
104 | void FNAME(void) | 104 | void FNAME(void) |
105 | { | 105 | { |
106 | ui_func_set(_key, _loop); | ||
107 | _setup(); | 106 | _setup(); |
107 | ui_func_set(_key, _loop); | ||
108 | } | 108 | } |
109 | # endif | 109 | # endif |
110 | #endif | 110 | #endif |
diff --git a/src/bin/rect_solid.c b/src/bin/rect_solid.c index 2953d81..2117680 100644 --- a/src/bin/rect_solid.c +++ b/src/bin/rect_solid.c | |||
@@ -99,8 +99,8 @@ void FNAME(void); | |||
99 | # ifndef UI | 99 | # ifndef UI |
100 | void FNAME(void) | 100 | void FNAME(void) |
101 | { | 101 | { |
102 | ui_func_set(_key, _loop); | ||
103 | _setup(); | 102 | _setup(); |
103 | ui_func_set(_key, _loop); | ||
104 | } | 104 | } |
105 | # endif | 105 | # endif |
106 | #endif | 106 | #endif |
diff --git a/src/bin/rect_solid_few.c b/src/bin/rect_solid_few.c index f3860b7..c64ea2f 100644 --- a/src/bin/rect_solid_few.c +++ b/src/bin/rect_solid_few.c | |||
@@ -102,8 +102,8 @@ void FNAME(void); | |||
102 | # ifndef UI | 102 | # ifndef UI |
103 | void FNAME(void) | 103 | void FNAME(void) |
104 | { | 104 | { |
105 | ui_func_set(_key, _loop); | ||
106 | _setup(); | 105 | _setup(); |
106 | ui_func_set(_key, _loop); | ||
107 | } | 107 | } |
108 | # endif | 108 | # endif |
109 | #endif | 109 | #endif |
diff --git a/src/bin/snapshot_widgets_file_icons.c b/src/bin/snapshot_widgets_file_icons.c index f9b9833..6f78c2a 100644 --- a/src/bin/snapshot_widgets_file_icons.c +++ b/src/bin/snapshot_widgets_file_icons.c | |||
@@ -195,8 +195,8 @@ void FNAME(void); | |||
195 | # ifndef UI | 195 | # ifndef UI |
196 | void FNAME(void) | 196 | void FNAME(void) |
197 | { | 197 | { |
198 | ui_func_set(_key, _loop); | ||
199 | _setup(); | 198 | _setup(); |
199 | ui_func_set(_key, _loop); | ||
200 | } | 200 | } |
201 | # endif | 201 | # endif |
202 | #endif | 202 | #endif |
diff --git a/src/bin/text_basic.c b/src/bin/text_basic.c index 2c8838b..d5391e3 100644 --- a/src/bin/text_basic.c +++ b/src/bin/text_basic.c | |||
@@ -93,8 +93,8 @@ void FNAME(void); | |||
93 | # ifndef UI | 93 | # ifndef UI |
94 | void FNAME(void) | 94 | void FNAME(void) |
95 | { | 95 | { |
96 | ui_func_set(_key, _loop); | ||
97 | _setup(); | 96 | _setup(); |
97 | ui_func_set(_key, _loop); | ||
98 | } | 98 | } |
99 | # endif | 99 | # endif |
100 | #endif | 100 | #endif |
diff --git a/src/bin/text_change.c b/src/bin/text_change.c index c5eca96..d822abb 100644 --- a/src/bin/text_change.c +++ b/src/bin/text_change.c | |||
@@ -116,8 +116,8 @@ void FNAME(void); | |||
116 | # ifndef UI | 116 | # ifndef UI |
117 | void FNAME(void) | 117 | void FNAME(void) |
118 | { | 118 | { |
119 | ui_func_set(_key, _loop); | ||
120 | _setup(); | 119 | _setup(); |
120 | ui_func_set(_key, _loop); | ||
121 | } | 121 | } |
122 | # endif | 122 | # endif |
123 | #endif | 123 | #endif |
diff --git a/src/bin/text_styles.c b/src/bin/text_styles.c index beb6a52..f3f0d0f 100644 --- a/src/bin/text_styles.c +++ b/src/bin/text_styles.c | |||
@@ -102,8 +102,8 @@ void FNAME(void); | |||
102 | # ifndef UI | 102 | # ifndef UI |
103 | void FNAME(void) | 103 | void FNAME(void) |
104 | { | 104 | { |
105 | ui_func_set(_key, _loop); | ||
106 | _setup(); | 105 | _setup(); |
106 | ui_func_set(_key, _loop); | ||
107 | } | 107 | } |
108 | # endif | 108 | # endif |
109 | #endif | 109 | #endif |
diff --git a/src/bin/text_styles_different_strings.c b/src/bin/text_styles_different_strings.c index 189769d..e5cf355 100644 --- a/src/bin/text_styles_different_strings.c +++ b/src/bin/text_styles_different_strings.c | |||
@@ -114,8 +114,8 @@ void FNAME(void); | |||
114 | # ifndef UI | 114 | # ifndef UI |
115 | void FNAME(void) | 115 | void FNAME(void) |
116 | { | 116 | { |
117 | ui_func_set(_key, _loop); | ||
118 | _setup(); | 117 | _setup(); |
118 | ui_func_set(_key, _loop); | ||
119 | } | 119 | } |
120 | # endif | 120 | # endif |
121 | #endif | 121 | #endif |
diff --git a/src/bin/textblock_auto_align.c b/src/bin/textblock_auto_align.c index b3b5b49..418409e 100644 --- a/src/bin/textblock_auto_align.c +++ b/src/bin/textblock_auto_align.c | |||
@@ -112,8 +112,8 @@ void FNAME(void); | |||
112 | # ifndef UI | 112 | # ifndef UI |
113 | void FNAME(void) | 113 | void FNAME(void) |
114 | { | 114 | { |
115 | ui_func_set(_key, _loop); | ||
116 | _setup(); | 115 | _setup(); |
116 | ui_func_set(_key, _loop); | ||
117 | } | 117 | } |
118 | # endif | 118 | # endif |
119 | #endif | 119 | #endif |
diff --git a/src/bin/textblock_basic.c b/src/bin/textblock_basic.c index 8426f22..82f20b5 100644 --- a/src/bin/textblock_basic.c +++ b/src/bin/textblock_basic.c | |||
@@ -175,8 +175,8 @@ void FNAME(void); | |||
175 | # ifndef UI | 175 | # ifndef UI |
176 | void FNAME(void) | 176 | void FNAME(void) |
177 | { | 177 | { |
178 | ui_func_set(_key, _loop); | ||
179 | _setup(); | 178 | _setup(); |
179 | ui_func_set(_key, _loop); | ||
180 | } | 180 | } |
181 | # endif | 181 | # endif |
182 | #endif | 182 | #endif |
diff --git a/src/bin/textblock_intl.c b/src/bin/textblock_intl.c index 73443d8..daac0b5 100644 --- a/src/bin/textblock_intl.c +++ b/src/bin/textblock_intl.c | |||
@@ -145,8 +145,8 @@ void FNAME(void); | |||
145 | # ifndef UI | 145 | # ifndef UI |
146 | void FNAME(void) | 146 | void FNAME(void) |
147 | { | 147 | { |
148 | ui_func_set(_key, _loop); | ||
149 | _setup(); | 148 | _setup(); |
149 | ui_func_set(_key, _loop); | ||
150 | } | 150 | } |
151 | # endif | 151 | # endif |
152 | #endif | 152 | #endif |
diff --git a/src/bin/textblock_text_append.c b/src/bin/textblock_text_append.c index 3a4ede8..a865ad6 100644 --- a/src/bin/textblock_text_append.c +++ b/src/bin/textblock_text_append.c | |||
@@ -164,8 +164,8 @@ void FNAME(void); | |||
164 | # ifndef UI | 164 | # ifndef UI |
165 | void FNAME(void) | 165 | void FNAME(void) |
166 | { | 166 | { |
167 | ui_func_set(_key, _loop); | ||
168 | _setup(); | 167 | _setup(); |
168 | ui_func_set(_key, _loop); | ||
169 | } | 169 | } |
170 | # endif | 170 | # endif |
171 | #endif | 171 | #endif |
diff --git a/src/bin/textblock_text_fill_format.c b/src/bin/textblock_text_fill_format.c index 278a4d4..7c941fb 100644 --- a/src/bin/textblock_text_fill_format.c +++ b/src/bin/textblock_text_fill_format.c | |||
@@ -106,8 +106,8 @@ void FNAME(void); | |||
106 | # ifndef UI | 106 | # ifndef UI |
107 | void FNAME(void) | 107 | void FNAME(void) |
108 | { | 108 | { |
109 | ui_func_set(_key, _loop); | ||
110 | _setup(); | 109 | _setup(); |
110 | ui_func_set(_key, _loop); | ||
111 | } | 111 | } |
112 | # endif | 112 | # endif |
113 | #endif | 113 | #endif |
diff --git a/src/bin/vg_basic_circle.c b/src/bin/vg_basic_circle.c index 88d72f5..5772289 100644 --- a/src/bin/vg_basic_circle.c +++ b/src/bin/vg_basic_circle.c | |||
@@ -104,8 +104,8 @@ void FNAME(void); | |||
104 | # ifndef UI | 104 | # ifndef UI |
105 | void FNAME(void) | 105 | void FNAME(void) |
106 | { | 106 | { |
107 | ui_func_set(_key, _loop); | ||
108 | _setup(); | 107 | _setup(); |
108 | ui_func_set(_key, _loop); | ||
109 | } | 109 | } |
110 | # endif | 110 | # endif |
111 | #endif | 111 | #endif |
diff --git a/src/bin/vg_basic_gradient.c b/src/bin/vg_basic_gradient.c index bdea66f..d7cacc1 100644 --- a/src/bin/vg_basic_gradient.c +++ b/src/bin/vg_basic_gradient.c | |||
@@ -117,8 +117,8 @@ void FNAME(void); | |||
117 | # ifndef UI | 117 | # ifndef UI |
118 | void FNAME(void) | 118 | void FNAME(void) |
119 | { | 119 | { |
120 | ui_func_set(_key, _loop); | ||
121 | _setup(); | 120 | _setup(); |
121 | ui_func_set(_key, _loop); | ||
122 | } | 122 | } |
123 | # endif | 123 | # endif |
124 | #endif | 124 | #endif |
diff --git a/src/bin/vg_basic_rect.c b/src/bin/vg_basic_rect.c index 0c5e087..510318a 100644 --- a/src/bin/vg_basic_rect.c +++ b/src/bin/vg_basic_rect.c | |||
@@ -104,8 +104,8 @@ void FNAME(void); | |||
104 | # ifndef UI | 104 | # ifndef UI |
105 | void FNAME(void) | 105 | void FNAME(void) |
106 | { | 106 | { |
107 | ui_func_set(_key, _loop); | ||
108 | _setup(); | 107 | _setup(); |
108 | ui_func_set(_key, _loop); | ||
109 | } | 109 | } |
110 | # endif | 110 | # endif |
111 | #endif | 111 | #endif |
diff --git a/src/bin/vg_scaled.c b/src/bin/vg_scaled.c index c2e184a..8937df4 100644 --- a/src/bin/vg_scaled.c +++ b/src/bin/vg_scaled.c | |||
@@ -134,8 +134,8 @@ void FNAME(void); | |||
134 | # ifndef UI | 134 | # ifndef UI |
135 | void FNAME(void) | 135 | void FNAME(void) |
136 | { | 136 | { |
137 | ui_func_set(_key, _loop); | ||
138 | _setup(); | 137 | _setup(); |
138 | ui_func_set(_key, _loop); | ||
139 | } | 139 | } |
140 | # endif | 140 | # endif |
141 | #endif | 141 | #endif |
diff --git a/src/bin/widgets_file_icons.c b/src/bin/widgets_file_icons.c index 75bd58e..21ec39b 100644 --- a/src/bin/widgets_file_icons.c +++ b/src/bin/widgets_file_icons.c | |||
@@ -133,8 +133,8 @@ void FNAME(void); | |||
133 | # ifndef UI | 133 | # ifndef UI |
134 | void FNAME(void) | 134 | void FNAME(void) |
135 | { | 135 | { |
136 | ui_func_set(_key, _loop); | ||
137 | _setup(); | 136 | _setup(); |
137 | ui_func_set(_key, _loop); | ||
138 | } | 138 | } |
139 | # endif | 139 | # endif |
140 | #endif | 140 | #endif |
diff --git a/src/bin/widgets_file_icons_2.c b/src/bin/widgets_file_icons_2.c index 5db6cd9..ba45e7e 100644 --- a/src/bin/widgets_file_icons_2.c +++ b/src/bin/widgets_file_icons_2.c | |||
@@ -131,8 +131,8 @@ void FNAME(void); | |||
131 | # ifndef UI | 131 | # ifndef UI |
132 | void FNAME(void) | 132 | void FNAME(void) |
133 | { | 133 | { |
134 | ui_func_set(_key, _loop); | ||
135 | _setup(); | 134 | _setup(); |
135 | ui_func_set(_key, _loop); | ||
136 | } | 136 | } |
137 | # endif | 137 | # endif |
138 | #endif | 138 | #endif |
diff --git a/src/bin/widgets_file_icons_2_grouped.c b/src/bin/widgets_file_icons_2_grouped.c index 3d89de0..61e9b7f 100644 --- a/src/bin/widgets_file_icons_2_grouped.c +++ b/src/bin/widgets_file_icons_2_grouped.c | |||
@@ -140,8 +140,8 @@ void FNAME(void); | |||
140 | # ifndef UI | 140 | # ifndef UI |
141 | void FNAME(void) | 141 | void FNAME(void) |
142 | { | 142 | { |
143 | ui_func_set(_key, _loop); | ||
144 | _setup(); | 143 | _setup(); |
144 | ui_func_set(_key, _loop); | ||
145 | } | 145 | } |
146 | # endif | 146 | # endif |
147 | #endif | 147 | #endif |
diff --git a/src/bin/widgets_file_icons_2_same.c b/src/bin/widgets_file_icons_2_same.c index ca709f6..b61377a 100644 --- a/src/bin/widgets_file_icons_2_same.c +++ b/src/bin/widgets_file_icons_2_same.c | |||
@@ -116,8 +116,8 @@ void FNAME(void); | |||
116 | # ifndef UI | 116 | # ifndef UI |
117 | void FNAME(void) | 117 | void FNAME(void) |
118 | { | 118 | { |
119 | ui_func_set(_key, _loop); | ||
120 | _setup(); | 119 | _setup(); |
120 | ui_func_set(_key, _loop); | ||
121 | } | 121 | } |
122 | # endif | 122 | # endif |
123 | #endif | 123 | #endif |
diff --git a/src/bin/widgets_file_icons_2_same_grouped.c b/src/bin/widgets_file_icons_2_same_grouped.c index 5a58671..447bbd8 100644 --- a/src/bin/widgets_file_icons_2_same_grouped.c +++ b/src/bin/widgets_file_icons_2_same_grouped.c | |||
@@ -120,8 +120,8 @@ void FNAME(void); | |||
120 | # ifndef UI | 120 | # ifndef UI |
121 | void FNAME(void) | 121 | void FNAME(void) |
122 | { | 122 | { |
123 | ui_func_set(_key, _loop); | ||
124 | _setup(); | 123 | _setup(); |
124 | ui_func_set(_key, _loop); | ||
125 | } | 125 | } |
126 | # endif | 126 | # endif |
127 | #endif | 127 | #endif |
diff --git a/src/bin/widgets_file_icons_3.c b/src/bin/widgets_file_icons_3.c index cf18ed4..ed19400 100644 --- a/src/bin/widgets_file_icons_3.c +++ b/src/bin/widgets_file_icons_3.c | |||
@@ -131,8 +131,8 @@ void FNAME(void); | |||
131 | # ifndef UI | 131 | # ifndef UI |
132 | void FNAME(void) | 132 | void FNAME(void) |
133 | { | 133 | { |
134 | ui_func_set(_key, _loop); | ||
135 | _setup(); | 134 | _setup(); |
135 | ui_func_set(_key, _loop); | ||
136 | } | 136 | } |
137 | # endif | 137 | # endif |
138 | #endif | 138 | #endif |
diff --git a/src/bin/widgets_file_icons_4.c b/src/bin/widgets_file_icons_4.c index 5242599..7050bbd 100644 --- a/src/bin/widgets_file_icons_4.c +++ b/src/bin/widgets_file_icons_4.c | |||
@@ -131,8 +131,8 @@ void FNAME(void); | |||
131 | # ifndef UI | 131 | # ifndef UI |
132 | void FNAME(void) | 132 | void FNAME(void) |
133 | { | 133 | { |
134 | ui_func_set(_key, _loop); | ||
135 | _setup(); | 134 | _setup(); |
135 | ui_func_set(_key, _loop); | ||
136 | } | 136 | } |
137 | # endif | 137 | # endif |
138 | #endif | 138 | #endif |
diff --git a/src/bin/widgets_list_1.c b/src/bin/widgets_list_1.c index 7c7dd70..a2f0fa4 100644 --- a/src/bin/widgets_list_1.c +++ b/src/bin/widgets_list_1.c | |||
@@ -142,8 +142,8 @@ void FNAME(void); | |||
142 | # ifndef UI | 142 | # ifndef UI |
143 | void FNAME(void) | 143 | void FNAME(void) |
144 | { | 144 | { |
145 | ui_func_set(_key, _loop); | ||
146 | _setup(); | 145 | _setup(); |
146 | ui_func_set(_key, _loop); | ||
147 | } | 147 | } |
148 | # endif | 148 | # endif |
149 | #endif | 149 | #endif |
diff --git a/src/bin/widgets_list_1_grouped.c b/src/bin/widgets_list_1_grouped.c index d0512ce..f1d1d15 100644 --- a/src/bin/widgets_list_1_grouped.c +++ b/src/bin/widgets_list_1_grouped.c | |||
@@ -150,8 +150,8 @@ void FNAME(void); | |||
150 | # ifndef UI | 150 | # ifndef UI |
151 | void FNAME(void) | 151 | void FNAME(void) |
152 | { | 152 | { |
153 | ui_func_set(_key, _loop); | ||
154 | _setup(); | 153 | _setup(); |
154 | ui_func_set(_key, _loop); | ||
155 | } | 155 | } |
156 | # endif | 156 | # endif |
157 | #endif | 157 | #endif |
diff --git a/src/bin/widgets_list_2.c b/src/bin/widgets_list_2.c index b8962a3..877b0b0 100644 --- a/src/bin/widgets_list_2.c +++ b/src/bin/widgets_list_2.c | |||
@@ -142,8 +142,8 @@ void FNAME(void); | |||
142 | # ifndef UI | 142 | # ifndef UI |
143 | void FNAME(void) | 143 | void FNAME(void) |
144 | { | 144 | { |
145 | ui_func_set(_key, _loop); | ||
146 | _setup(); | 145 | _setup(); |
146 | ui_func_set(_key, _loop); | ||
147 | } | 147 | } |
148 | # endif | 148 | # endif |
149 | #endif | 149 | #endif |
diff --git a/src/bin/widgets_list_2_grouped.c b/src/bin/widgets_list_2_grouped.c index 86dd275..0f849c4 100644 --- a/src/bin/widgets_list_2_grouped.c +++ b/src/bin/widgets_list_2_grouped.c | |||
@@ -150,8 +150,8 @@ void FNAME(void); | |||
150 | # ifndef UI | 150 | # ifndef UI |
151 | void FNAME(void) | 151 | void FNAME(void) |
152 | { | 152 | { |
153 | ui_func_set(_key, _loop); | ||
154 | _setup(); | 153 | _setup(); |
154 | ui_func_set(_key, _loop); | ||
155 | } | 155 | } |
156 | # endif | 156 | # endif |
157 | #endif | 157 | #endif |
diff --git a/src/bin/widgets_list_3.c b/src/bin/widgets_list_3.c index 523faaf..c391f1a 100644 --- a/src/bin/widgets_list_3.c +++ b/src/bin/widgets_list_3.c | |||
@@ -172,8 +172,8 @@ void FNAME(void); | |||
172 | # ifndef UI | 172 | # ifndef UI |
173 | void FNAME(void) | 173 | void FNAME(void) |
174 | { | 174 | { |
175 | ui_func_set(_key, _loop); | ||
176 | _setup(); | 175 | _setup(); |
176 | ui_func_set(_key, _loop); | ||
177 | } | 177 | } |
178 | # endif | 178 | # endif |
179 | #endif | 179 | #endif |
diff --git a/src/bin/widgets_list_3_grouped.c b/src/bin/widgets_list_3_grouped.c index 2a06e4b..d60ee7a 100644 --- a/src/bin/widgets_list_3_grouped.c +++ b/src/bin/widgets_list_3_grouped.c | |||
@@ -189,8 +189,8 @@ void FNAME(void); | |||
189 | # ifndef UI | 189 | # ifndef UI |
190 | void FNAME(void) | 190 | void FNAME(void) |
191 | { | 191 | { |
192 | ui_func_set(_key, _loop); | ||
193 | _setup(); | 192 | _setup(); |
193 | ui_func_set(_key, _loop); | ||
194 | } | 194 | } |
195 | # endif | 195 | # endif |
196 | #endif | 196 | #endif |
diff --git a/src/bin/widgets_list_4.c b/src/bin/widgets_list_4.c index 96c1e11..a79d5fa 100644 --- a/src/bin/widgets_list_4.c +++ b/src/bin/widgets_list_4.c | |||
@@ -169,8 +169,8 @@ void FNAME(void); | |||
169 | # ifndef UI | 169 | # ifndef UI |
170 | void FNAME(void) | 170 | void FNAME(void) |
171 | { | 171 | { |
172 | ui_func_set(_key, _loop); | ||
173 | _setup(); | 172 | _setup(); |
173 | ui_func_set(_key, _loop); | ||
174 | } | 174 | } |
175 | # endif | 175 | # endif |
176 | #endif | 176 | #endif |
diff --git a/src/bin/widgets_list_4_grouped.c b/src/bin/widgets_list_4_grouped.c index bb8febe..b9ddcb2 100644 --- a/src/bin/widgets_list_4_grouped.c +++ b/src/bin/widgets_list_4_grouped.c | |||
@@ -188,8 +188,8 @@ void FNAME(void); | |||
188 | # ifndef UI | 188 | # ifndef UI |
189 | void FNAME(void) | 189 | void FNAME(void) |
190 | { | 190 | { |
191 | ui_func_set(_key, _loop); | ||
192 | _setup(); | 191 | _setup(); |
192 | ui_func_set(_key, _loop); | ||
193 | } | 193 | } |
194 | # endif | 194 | # endif |
195 | #endif | 195 | #endif |