diff options
author | runge <runge> | 2007-01-07 20:05:28 +0000 |
---|---|---|
committer | runge <runge> | 2007-01-07 20:05:28 +0000 |
commit | 5b607a444900246dfcc8497da4d8ef1e41bedda6 (patch) | |
tree | 14fc3006cf1d13aaafc22d182d3a32cea7eef09b /x11vnc/x11vnc_defs.c | |
parent | 76a495aff1a1e923363a865bd5b9a0a95332374d (diff) | |
download | libtdevnc-5b607a444900246dfcc8497da4d8ef1e41bedda6.tar.gz libtdevnc-5b607a444900246dfcc8497da4d8ef1e41bedda6.zip |
changes to ncache cache aging and xdamage skipping
Diffstat (limited to 'x11vnc/x11vnc_defs.c')
-rw-r--r-- | x11vnc/x11vnc_defs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/x11vnc/x11vnc_defs.c b/x11vnc/x11vnc_defs.c index 6600061..adca47a 100644 --- a/x11vnc/x11vnc_defs.c +++ b/x11vnc/x11vnc_defs.c @@ -15,7 +15,7 @@ int xtrap_base_event_type = 0; int xdamage_base_event_type = 0; /* date +'lastmod: %Y-%m-%d' */ -char lastmod[] = "0.8.4 lastmod: 2007-01-03"; +char lastmod[] = "0.8.4 lastmod: 2007-01-07"; /* X display info */ @@ -134,6 +134,10 @@ double x11vnc_start = 0.0; double last_get_wm_frame_time = 0.0; Window last_get_wm_frame = None; +double last_bs_restore = 0.0; +double last_su_restore = 0.0; +double last_bs_save = 0.0; +double last_su_save = 0.0; int hack_val = 0; |