|
From: Brian P. <br...@us...> - 2006-10-03 21:14:31
|
CVSROOT: /cvsroot/vncproxy
Module name: vncproxy
Repository: vncproxy/src/
Changes by: br...@sc....(none) 06/10/03 14:14:31
Log message:
Added desktop scaling option: -S scaleFactor
All clients that connect to the proxy will see a reduced-size desktop
(1/2, 1/3, 1/4 size etc).
Box filtering is current used for hextile, tight encoding. Point filtering is
used otherwise (may change).
Modified files:
vncproxy/src/:
Makefile cache.c cache.h client_io.c client_io.h encode.c
encode.h encode_tight.c host_connect.c main.c options.c
options.h translate.c translate.h
Revision Changes Path
1.2 +6 -3 vncproxy/src/Makefile
1.3 +6 -1 vncproxy/src/cache.c
1.2 +2 -1 vncproxy/src/cache.h
1.6 +29 -10 vncproxy/src/client_io.c
1.2 +6 -1 vncproxy/src/client_io.h
1.2 +257 -11 vncproxy/src/encode.c
1.2 +9 -4 vncproxy/src/encode.h
1.3 +62 -1 vncproxy/src/encode_tight.c
1.7 +2 -2 vncproxy/src/host_connect.c
1.6 +4 -9 vncproxy/src/main.c
1.2 +2 -0 vncproxy/src/options.c
1.2 +2 -1 vncproxy/src/options.h
1.2 +151 -13 vncproxy/src/translate.c
1.2 +15 -6 vncproxy/src/translate.h
|