enable caches and fix 1 test ot do what it was meant to do...
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 28 Nov 2008 11:17:40 +0000 (11:17 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 28 Nov 2008 11:17:40 +0000 (11:17 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/expedite@37839 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/image_blend_nearest_solid_same_scaled.c
src/bin/main.c
src/bin/main.h

index 060a995..b75b9b0 100644 (file)
@@ -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);
index 63a22a1..ab23b42 100644 (file)
@@ -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
index b05869a..03c41b7 100644 (file)
@@ -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;