diff options
author | Hermet Park <hermetpark@gmail.com> | 2019-12-30 13:25:44 +0900 |
---|---|---|
committer | Hermet Park <hermetpark@gmail.com> | 2019-12-30 13:25:44 +0900 |
commit | cac6ca6a9a91b463e4ec13eff755c703947a952b (patch) | |
tree | 90e3f2f1d87bd2972f35a1927500978c3fe3ffce /src/bin | |
parent | b72d775b10ec1c77514d3657e69431d43fe4b817 (diff) |
Revert "Setup before starting fps measurement"
This reverts commit 7874ae718f29b4b8ce7f4920ecc418f43af6abf8.
Diffstat (limited to 'src/bin')
98 files changed, 98 insertions, 98 deletions
diff --git a/src/bin/about.c b/src/bin/about.c index e61311e..3555578 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 | _setup(); | ||
71 | ui_func_set(_key, _loop); | 70 | ui_func_set(_key, _loop); |
71 | _setup(); | ||
72 | } | 72 | } |
diff --git a/src/bin/font_effect_blur_alpha.c b/src/bin/font_effect_blur_alpha.c index e2f6743..48d8714 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 | _setup(); | ||
96 | ui_func_set(_key, _loop); | 95 | ui_func_set(_key, _loop); |
96 | _setup(); | ||
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 6669a7d..4d49044 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 09331b9..4acad32 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 5f6545f..5d46f2b 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 | _setup(); | ||
99 | ui_func_set(_key, _loop); | 98 | ui_func_set(_key, _loop); |
99 | _setup(); | ||
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 fc71d95..b4bf458 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 | _setup(); | ||
100 | ui_func_set(_key, _loop); | 99 | ui_func_set(_key, _loop); |
100 | _setup(); | ||
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 506a9ce..d4de1d3 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 401f8d3..5805dfa 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 | _setup(); | ||
100 | ui_func_set(_key, _loop); | 99 | ui_func_set(_key, _loop); |
100 | _setup(); | ||
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 2b8e69a..2f31642 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 2f9668c..699afb3 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 5328cf1..eb8a305 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 9347049..8221fb3 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 f189d8f..4df92e3 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 | _setup(); | ||
111 | ui_func_set(_key, _loop); | 110 | ui_func_set(_key, _loop); |
111 | _setup(); | ||
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 450301d..cb9b867 100644 --- a/src/bin/image_blend_occlude1_few.c +++ b/src/bin/image_blend_occlude1_few.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 | _setup(); | ||
116 | ui_func_set(_key, _loop); | 115 | ui_func_set(_key, _loop); |
116 | _setup(); | ||
117 | } | 117 | } |
118 | # endif | 118 | # endif |
119 | #endif | 119 | #endif |
diff --git a/src/bin/image_blend_occlude1_many.c b/src/bin/image_blend_occlude1_many.c index 7cb95db..f3e4ca5 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 | _setup(); | ||
114 | ui_func_set(_key, _loop); | 113 | ui_func_set(_key, _loop); |
114 | _setup(); | ||
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 381972c..f95d18f 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 | _setup(); | ||
114 | ui_func_set(_key, _loop); | 113 | ui_func_set(_key, _loop); |
114 | _setup(); | ||
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 ad9fdcd..36820ad 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 | _setup(); | ||
111 | ui_func_set(_key, _loop); | 110 | ui_func_set(_key, _loop); |
111 | _setup(); | ||
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 6429550..dc366e7 100644 --- a/src/bin/image_blend_occlude2_few.c +++ b/src/bin/image_blend_occlude2_few.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 | _setup(); | ||
116 | ui_func_set(_key, _loop); | 115 | ui_func_set(_key, _loop); |
116 | _setup(); | ||
117 | } | 117 | } |
118 | # endif | 118 | # endif |
119 | #endif | 119 | #endif |
diff --git a/src/bin/image_blend_occlude2_many.c b/src/bin/image_blend_occlude2_many.c index 38c440e..cfe443e 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 | _setup(); | ||
114 | ui_func_set(_key, _loop); | 113 | ui_func_set(_key, _loop); |
114 | _setup(); | ||
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 daa5756..0992f88 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 | _setup(); | ||
114 | ui_func_set(_key, _loop); | 113 | ui_func_set(_key, _loop); |
114 | _setup(); | ||
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 0d51e19..9f56f49 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 | _setup(); | ||
111 | ui_func_set(_key, _loop); | 110 | ui_func_set(_key, _loop); |
111 | _setup(); | ||
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 12551c4..1922358 100644 --- a/src/bin/image_blend_occlude3_few.c +++ b/src/bin/image_blend_occlude3_few.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 | _setup(); | ||
116 | ui_func_set(_key, _loop); | 115 | ui_func_set(_key, _loop); |
116 | _setup(); | ||
117 | } | 117 | } |
118 | # endif | 118 | # endif |
119 | #endif | 119 | #endif |
diff --git a/src/bin/image_blend_occlude3_many.c b/src/bin/image_blend_occlude3_many.c index 2eaf099..d8e04c3 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 | _setup(); | ||
114 | ui_func_set(_key, _loop); | 113 | ui_func_set(_key, _loop); |
114 | _setup(); | ||
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 7ca1016..5df9829 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 | _setup(); | ||
114 | ui_func_set(_key, _loop); | 113 | ui_func_set(_key, _loop); |
114 | _setup(); | ||
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 2c85610..5f6db38 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 1e3ded1..34f920b 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 d179f5a..0d88e70 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 0789c9b..033bebd 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 cb8ac20..81c9de4 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 dd2389c..b4d972d 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 121e456..969e281 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 | _setup(); | ||
100 | ui_func_set(_key, _loop); | 99 | ui_func_set(_key, _loop); |
100 | _setup(); | ||
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 c7c99b8..54f3335 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 | _setup(); | ||
99 | ui_func_set(_key, _loop); | 98 | ui_func_set(_key, _loop); |
99 | _setup(); | ||
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 5cac27f..329fc13 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 | _setup(); | ||
99 | ui_func_set(_key, _loop); | 98 | ui_func_set(_key, _loop); |
99 | _setup(); | ||
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 e6fe9f1..67b50d3 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 | _setup(); | ||
97 | ui_func_set(_key, _loop); | 96 | ui_func_set(_key, _loop); |
97 | _setup(); | ||
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 c935763..2d7c0d4 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 | _setup(); | ||
104 | ui_func_set(_key, _loop); | 103 | ui_func_set(_key, _loop); |
104 | _setup(); | ||
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 14a6188..57109cb 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 | _setup(); | ||
95 | ui_func_set(_key, _loop); | 94 | ui_func_set(_key, _loop); |
95 | _setup(); | ||
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 1acb114..8b043da 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 | _setup(); | ||
95 | ui_func_set(_key, _loop); | 94 | ui_func_set(_key, _loop); |
95 | _setup(); | ||
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 e68e8b5..f80d46c 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 | _setup(); | ||
94 | ui_func_set(_key, _loop); | 93 | ui_func_set(_key, _loop); |
94 | _setup(); | ||
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 3170c33..417b694 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 | _setup(); | ||
125 | ui_func_set(_key, _loop); | 124 | ui_func_set(_key, _loop); |
125 | _setup(); | ||
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 2a8933f..40398ac 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 | _setup(); | ||
145 | ui_func_set(_key, _loop); | 144 | ui_func_set(_key, _loop); |
145 | _setup(); | ||
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 32c9a39..8e5abaf 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 | _setup(); | ||
105 | ui_func_set(_key, _loop); | 104 | ui_func_set(_key, _loop); |
105 | _setup(); | ||
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 12a6934..c467691 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 | _setup(); | ||
111 | ui_func_set(_key, _loop); | 110 | ui_func_set(_key, _loop); |
111 | _setup(); | ||
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 6ee1021..38479e2 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 | _setup(); | ||
117 | ui_func_set(_key, _loop); | 116 | ui_func_set(_key, _loop); |
117 | _setup(); | ||
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 b05f89e..2ab5ade 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 | _setup(); | ||
113 | ui_func_set(_key, _loop); | 112 | ui_func_set(_key, _loop); |
113 | _setup(); | ||
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 da1fa54..bf59c76 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 | _setup(); | ||
113 | ui_func_set(_key, _loop); | 112 | ui_func_set(_key, _loop); |
113 | _setup(); | ||
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 3c70ac7..70c4715 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 | _setup(); | ||
105 | ui_func_set(_key, _loop); | 104 | ui_func_set(_key, _loop); |
105 | _setup(); | ||
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 2f4f6f9..101fe0c 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 | _setup(); | ||
105 | ui_func_set(_key, _loop); | 104 | ui_func_set(_key, _loop); |
105 | _setup(); | ||
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 41ec6dd..230ba81 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 | _setup(); | ||
107 | ui_func_set(_key, _loop); | 106 | ui_func_set(_key, _loop); |
107 | _setup(); | ||
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 d5d2a8a..e19b55f 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 | _setup(); | ||
107 | ui_func_set(_key, _loop); | 106 | ui_func_set(_key, _loop); |
107 | _setup(); | ||
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 2d14cd3..7d1fc3e 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 | _setup(); | ||
107 | ui_func_set(_key, _loop); | 106 | ui_func_set(_key, _loop); |
107 | _setup(); | ||
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 d3bfad0..de885af 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 | _setup(); | ||
112 | ui_func_set(_key, _loop); | 111 | ui_func_set(_key, _loop); |
112 | _setup(); | ||
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 2ce2509..1401240 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 | _setup(); | ||
107 | ui_func_set(_key, _loop); | 106 | ui_func_set(_key, _loop); |
107 | _setup(); | ||
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 0c5ea25..046c1b0 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 | _setup(); | ||
118 | ui_func_set(_key, _loop); | 117 | ui_func_set(_key, _loop); |
118 | _setup(); | ||
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 825ac10..0491a84 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 | _setup(); | ||
128 | ui_func_set(_key, _loop); | 127 | ui_func_set(_key, _loop); |
128 | _setup(); | ||
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 5dc7a85..7606d2e 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 | _setup(); | ||
98 | ui_func_set(_key, _loop); | 97 | ui_func_set(_key, _loop); |
98 | _setup(); | ||
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 c792448..9ea9c72 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 | _setup(); | ||
133 | ui_func_set(_key, _loop); | 132 | ui_func_set(_key, _loop); |
133 | _setup(); | ||
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 33e7aa2..789efd4 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 | _setup(); | ||
147 | ui_func_set(_key, _loop); | 146 | ui_func_set(_key, _loop); |
147 | _setup(); | ||
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 c0e4ae7..049dd4e 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 | _setup(); | ||
104 | ui_func_set(_key, _loop); | 103 | ui_func_set(_key, _loop); |
104 | _setup(); | ||
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 3918cd0..ecb63f8 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 | _setup(); | ||
118 | ui_func_set(_key, _loop); | 117 | ui_func_set(_key, _loop); |
118 | _setup(); | ||
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 20e230e..f7d0ac3 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 | _setup(); | ||
107 | ui_func_set(_key, _loop); | 106 | ui_func_set(_key, _loop); |
107 | _setup(); | ||
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 4d03c28..ee83d08 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 | _setup(); | ||
120 | ui_func_set(_key, _loop); | 119 | ui_func_set(_key, _loop); |
120 | _setup(); | ||
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 eb0d3a2..b2a0795 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 | _setup(); | ||
137 | ui_func_set(_key, _loop); | 136 | ui_func_set(_key, _loop); |
137 | _setup(); | ||
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 32aa4e2..37571f8 100644 --- a/src/bin/proxy_textblock.c +++ b/src/bin/proxy_textblock.c | |||
@@ -158,8 +158,8 @@ void FNAME(void); | |||
158 | # ifndef UI | 158 | # ifndef UI |
159 | void FNAME(void) | 159 | void FNAME(void) |
160 | { | 160 | { |
161 | _setup(); | ||
162 | ui_func_set(_key, _loop); | 161 | ui_func_set(_key, _loop); |
162 | _setup(); | ||
163 | } | 163 | } |
164 | # endif | 164 | # endif |
165 | #endif | 165 | #endif |
diff --git a/src/bin/rect_blend.c b/src/bin/rect_blend.c index 58d0611..d108e72 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 | _setup(); | ||
103 | ui_func_set(_key, _loop); | 102 | ui_func_set(_key, _loop); |
103 | _setup(); | ||
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 ba1c9b4..84d8b0d 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 | _setup(); | ||
106 | ui_func_set(_key, _loop); | 105 | ui_func_set(_key, _loop); |
106 | _setup(); | ||
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 b8f5ecc..9aef9f9 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 | _setup(); | ||
104 | ui_func_set(_key, _loop); | 103 | ui_func_set(_key, _loop); |
104 | _setup(); | ||
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 c4b8480..736436e 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 | _setup(); | ||
107 | ui_func_set(_key, _loop); | 106 | ui_func_set(_key, _loop); |
107 | _setup(); | ||
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 2117680..2953d81 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 | _setup(); | ||
103 | ui_func_set(_key, _loop); | 102 | ui_func_set(_key, _loop); |
103 | _setup(); | ||
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 c64ea2f..f3860b7 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 | _setup(); | ||
106 | ui_func_set(_key, _loop); | 105 | ui_func_set(_key, _loop); |
106 | _setup(); | ||
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 6f78c2a..f9b9833 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 | _setup(); | ||
199 | ui_func_set(_key, _loop); | 198 | ui_func_set(_key, _loop); |
199 | _setup(); | ||
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 d5391e3..2c8838b 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 | _setup(); | ||
97 | ui_func_set(_key, _loop); | 96 | ui_func_set(_key, _loop); |
97 | _setup(); | ||
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 d822abb..c5eca96 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 | _setup(); | ||
120 | ui_func_set(_key, _loop); | 119 | ui_func_set(_key, _loop); |
120 | _setup(); | ||
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 f3f0d0f..beb6a52 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 | _setup(); | ||
106 | ui_func_set(_key, _loop); | 105 | ui_func_set(_key, _loop); |
106 | _setup(); | ||
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 02a2507..4a5cf16 100644 --- a/src/bin/text_styles_different_strings.c +++ b/src/bin/text_styles_different_strings.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 | _setup(); | ||
120 | ui_func_set(_key, _loop); | 119 | ui_func_set(_key, _loop); |
120 | _setup(); | ||
121 | } | 121 | } |
122 | # endif | 122 | # endif |
123 | #endif | 123 | #endif |
diff --git a/src/bin/textblock_auto_align.c b/src/bin/textblock_auto_align.c index 418409e..b3b5b49 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 | _setup(); | ||
116 | ui_func_set(_key, _loop); | 115 | ui_func_set(_key, _loop); |
116 | _setup(); | ||
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 9736ac4..12c25a8 100644 --- a/src/bin/textblock_basic.c +++ b/src/bin/textblock_basic.c | |||
@@ -176,8 +176,8 @@ void FNAME(void); | |||
176 | # ifndef UI | 176 | # ifndef UI |
177 | void FNAME(void) | 177 | void FNAME(void) |
178 | { | 178 | { |
179 | _setup(); | ||
180 | ui_func_set(_key, _loop); | 179 | ui_func_set(_key, _loop); |
180 | _setup(); | ||
181 | } | 181 | } |
182 | # endif | 182 | # endif |
183 | #endif | 183 | #endif |
diff --git a/src/bin/textblock_intl.c b/src/bin/textblock_intl.c index 3a9c49a..d51068d 100644 --- a/src/bin/textblock_intl.c +++ b/src/bin/textblock_intl.c | |||
@@ -146,8 +146,8 @@ void FNAME(void); | |||
146 | # ifndef UI | 146 | # ifndef UI |
147 | void FNAME(void) | 147 | void FNAME(void) |
148 | { | 148 | { |
149 | _setup(); | ||
150 | ui_func_set(_key, _loop); | 149 | ui_func_set(_key, _loop); |
150 | _setup(); | ||
151 | } | 151 | } |
152 | # endif | 152 | # endif |
153 | #endif | 153 | #endif |
diff --git a/src/bin/textblock_text_append.c b/src/bin/textblock_text_append.c index a865ad6..3a4ede8 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 | _setup(); | ||
168 | ui_func_set(_key, _loop); | 167 | ui_func_set(_key, _loop); |
168 | _setup(); | ||
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 7c941fb..278a4d4 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 | _setup(); | ||
110 | ui_func_set(_key, _loop); | 109 | ui_func_set(_key, _loop); |
110 | _setup(); | ||
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 5772289..88d72f5 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 | _setup(); | ||
108 | ui_func_set(_key, _loop); | 107 | ui_func_set(_key, _loop); |
108 | _setup(); | ||
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 d7cacc1..bdea66f 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 | _setup(); | ||
121 | ui_func_set(_key, _loop); | 120 | ui_func_set(_key, _loop); |
121 | _setup(); | ||
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 510318a..0c5e087 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 | _setup(); | ||
108 | ui_func_set(_key, _loop); | 107 | ui_func_set(_key, _loop); |
108 | _setup(); | ||
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 8937df4..c2e184a 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 | _setup(); | ||
138 | ui_func_set(_key, _loop); | 137 | ui_func_set(_key, _loop); |
138 | _setup(); | ||
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 21ec39b..75bd58e 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 | _setup(); | ||
137 | ui_func_set(_key, _loop); | 136 | ui_func_set(_key, _loop); |
137 | _setup(); | ||
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 ba45e7e..5db6cd9 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 | _setup(); | ||
135 | ui_func_set(_key, _loop); | 134 | ui_func_set(_key, _loop); |
135 | _setup(); | ||
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 61e9b7f..3d89de0 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 | _setup(); | ||
144 | ui_func_set(_key, _loop); | 143 | ui_func_set(_key, _loop); |
144 | _setup(); | ||
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 b61377a..ca709f6 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 | _setup(); | ||
120 | ui_func_set(_key, _loop); | 119 | ui_func_set(_key, _loop); |
120 | _setup(); | ||
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 447bbd8..5a58671 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 | _setup(); | ||
124 | ui_func_set(_key, _loop); | 123 | ui_func_set(_key, _loop); |
124 | _setup(); | ||
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 ed19400..cf18ed4 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 | _setup(); | ||
135 | ui_func_set(_key, _loop); | 134 | ui_func_set(_key, _loop); |
135 | _setup(); | ||
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 7050bbd..5242599 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 | _setup(); | ||
135 | ui_func_set(_key, _loop); | 134 | ui_func_set(_key, _loop); |
135 | _setup(); | ||
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 a2f0fa4..7c7dd70 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 | _setup(); | ||
146 | ui_func_set(_key, _loop); | 145 | ui_func_set(_key, _loop); |
146 | _setup(); | ||
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 f1d1d15..d0512ce 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 | _setup(); | ||
154 | ui_func_set(_key, _loop); | 153 | ui_func_set(_key, _loop); |
154 | _setup(); | ||
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 877b0b0..b8962a3 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 | _setup(); | ||
146 | ui_func_set(_key, _loop); | 145 | ui_func_set(_key, _loop); |
146 | _setup(); | ||
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 0f849c4..86dd275 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 | _setup(); | ||
154 | ui_func_set(_key, _loop); | 153 | ui_func_set(_key, _loop); |
154 | _setup(); | ||
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 c391f1a..523faaf 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 | _setup(); | ||
176 | ui_func_set(_key, _loop); | 175 | ui_func_set(_key, _loop); |
176 | _setup(); | ||
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 d60ee7a..2a06e4b 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 | _setup(); | ||
193 | ui_func_set(_key, _loop); | 192 | ui_func_set(_key, _loop); |
193 | _setup(); | ||
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 a79d5fa..96c1e11 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 | _setup(); | ||
173 | ui_func_set(_key, _loop); | 172 | ui_func_set(_key, _loop); |
173 | _setup(); | ||
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 b9ddcb2..bb8febe 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 | _setup(); | ||
192 | ui_func_set(_key, _loop); | 191 | ui_func_set(_key, _loop); |
192 | _setup(); | ||
193 | } | 193 | } |
194 | # endif | 194 | # endif |
195 | #endif | 195 | #endif |