Reduce scheduling latency to 10ms
authorKeith Packard <keithp@keithp.com>
Thu, 13 Nov 2003 09:18:07 +0000 (09:18 +0000)
committerKeith Packard <keithp@keithp.com>
Thu, 13 Nov 2003 09:18:07 +0000 (09:18 +0000)
ChangeLog
xcompmgr.c

index 3b2f8ef..dc254bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2003-11-13  Keith Packard  <keithp@keithp.com>
 
 2003-11-13  Keith Packard  <keithp@keithp.com>
 
+       * xcompmgr.c:
+       Reduce scheduling latency to 10ms
+
+2003-11-13  Keith Packard  <keithp@keithp.com>
+
        * xcompmgr.c: (make_gaussian_map), (sum_gaussian), (make_shadow),
        (shadow_picture), (paint_all), (main):
        Use an alpha map instead of an ARGB picture for shadows.
        * xcompmgr.c: (make_gaussian_map), (sum_gaussian), (make_shadow),
        (shadow_picture), (paint_all), (main):
        Use an alpha map instead of an ARGB picture for shadows.
index 20b4466..20cc534 100644 (file)
@@ -768,7 +768,7 @@ time_in_millis ()
     return(tp.tv_sec * 1000) + (tp.tv_usec / 1000);
 }
 
     return(tp.tv_sec * 1000) + (tp.tv_usec / 1000);
 }
 
-#define INTERVAL    30
+#define INTERVAL    10
 
 main ()
 {
 
 main ()
 {