diff options
author | runge <runge> | 2007-01-02 05:15:07 +0000 |
---|---|---|
committer | runge <runge> | 2007-01-02 05:15:07 +0000 |
commit | c88d830f5591913f2e5e763814978e2877f367ec (patch) | |
tree | 217ae1113daa5bced6f21c34eb1a923bcd8cec18 /x11vnc/options.c | |
parent | 833f06025fbd2fa8d4d83ccf8ab068c8060663de (diff) | |
download | libtdevnc-c88d830f5591913f2e5e763814978e2877f367ec.tar.gz libtdevnc-c88d830f5591913f2e5e763814978e2877f367ec.zip |
x11vnc: more -ncache improvements.
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index f25582f..fcb1961 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -197,16 +197,26 @@ int wireframe_local = 1; #ifndef NCACHE #define NCACHE -10 #endif -int ncache = NCACHE; -int ncache0 = 0; -int ncache_copyrect = 0; -int macosx_ncache_macmenu = 0; -int ncache_beta_tester = 0; #ifdef MACOSX +int ncache = 0; int ncache_pad = 24; #else +int ncache = NCACHE; int ncache_pad = 0; #endif +int ncache0 = 0; +int ncache_copyrect = 0; +int ncache_wf_raises = 1; +int ncache_dt_change = 1; +int macosx_ncache_macmenu = 0; +int ncache_beta_tester = 0; + +Atom atom_NET_ACTIVE_WINDOW = None; +Atom atom_NET_CURRENT_DESKTOP = None; +Atom atom_NET_CLIENT_LIST_STACKING = None; +double got_NET_ACTIVE_WINDOW = 0.0; +double got_NET_CURRENT_DESKTOP = 0.0; +double got_NET_CLIENT_LIST_STACKING = 0.0; /* T+B+L+R,tkey+presist_key,tmouse+persist_mouse */ char *scroll_copyrect_str = NULL; |