Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir     : e17/libs/edje/src/bin


Modified Files:
        Makefile.am edje_main.c 


Log Message:


optimizing. Glassy's matrix.eet works MUCH faster now. basically edje was not
very efficient at matching hundreds of prgorams up to lots of signals always
ticking off. i've optimized it now with a match (and no_match) cache so if an
input signal (and source) combination is known not to match anything, it's
cached after the first full check and henceforth avoids extra checks. the
cache is realyl simply right now - i could optimize it a bit to avoid excess
memory usage though...

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/bin/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 12 Jun 2003 22:34:51 -0000      1.5
+++ Makefile.am 20 Jul 2003 02:08:47 -0000      1.6
@@ -21,7 +21,7 @@
 $(top_builddir)/src/lib/libedje.la \
 @imlib2_libs@
 
-edje_LDFLAGS =
+edje_LDFLAGS = -static
 
 edje_DEPENDENCIES = $(top_builddir)/src/lib/libedje.la
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/bin/edje_main.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- edje_main.c 16 Jul 2003 05:15:14 -0000      1.18
+++ edje_main.c 20 Jul 2003 02:08:47 -0000      1.19
@@ -331,8 +331,10 @@
        y -= 20;
        w += 20;
        h += 30;
-       minw = 20 + de->minw;
-       minh = 30 + de->minh;
+//     minw = 20 + de->minw;
+//     minh = 30 + de->minh;
+       minw = 20;
+       minh = 30;
        if (hdir > 0)
          {
             w += ev->cur.canvas.x - ev->prev.canvas.x;




-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to