diff --git a/src/bin/image_blend_nearest_solid_same_scaled.c b/src/bin/image_blend_nearest_solid_same_scaled.c index 060a995..b75b9b0 100644 --- a/src/bin/image_blend_nearest_solid_same_scaled.c +++ b/src/bin/image_blend_nearest_solid_same_scaled.c @@ -48,8 +48,8 @@ static void _loop(double t, int f) { w0 = 80; h0 = 80; - w = 5 + ((1.0 + cos((double)(f + (i * 10)) / (7.4 * SLOW) )) * w0 * 2); - h = 5 + ((1.0 + sin((double)(f + (i * 19)) / (12.6 * SLOW) )) * h0 * 2); + w = 40 + ((i % 3) * (w0 / 2)); + h = 40 + ((i % 3) * (h0 / 2)); x = (win_w / 2) - (w / 2); x += sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (w0 / 2); y = (win_h / 2) - (h / 2); diff --git a/src/bin/main.c b/src/bin/main.c index 63a22a1..ab23b42 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -1342,8 +1342,8 @@ _engine_args(int argc, char **argv) evas_key_lock_add(evas, "Num_Lock"); evas_key_lock_add(evas, "Scroll_Lock"); evas_font_path_append(evas, buf); - evas_image_cache_set(evas, 0 * 1024 * 1024); - evas_font_cache_set(evas, 0 * 1024 * 1024); + evas_image_cache_set(evas, 4 * 1024 * 1024); + evas_font_cache_set(evas, 1 * 1024 * 1024); } int diff --git a/src/bin/main.h b/src/bin/main.h index b05869a..03c41b7 100644 --- a/src/bin/main.h +++ b/src/bin/main.h @@ -68,7 +68,7 @@ #include "about.h" #define OBNUM 128 -#define LOOPS 512 +#define LOOPS 128 extern Evas *evas; extern int win_w, win_h;