diff options
author | dscho <dscho> | 2001-10-02 02:44:03 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-10-02 02:44:03 +0000 |
commit | 095539cd8c13a18b86f33eec817908cb10c2efbc (patch) | |
tree | 98febfaece5012739ec5009ef96d13bd33a8879e /README | |
parent | aa8d2ae174f1b00473ec0415e8464599a5eb4564 (diff) | |
download | libvncserver-095539cd8c13a18b86f33eec817908cb10c2efbc.zip libvncserver-095539cd8c13a18b86f33eec817908cb10c2efbc.tar.gz |
support for server side colour maps, fix for non-pthread, support for 3bpp
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -48,8 +48,10 @@ To make a server, you just have to initialise a server structure using the function rfbDefaultScreenInit, like rfbScreenInfoPtr rfbScreen = rfbGetScreen(argc,argv,width,height,8,3,bpp); -where byte per pixel is 1, 2 or 4. This is so because of speed considerations -(you can use native data types of that width). +where byte per pixel should be 1, 2 or 4. If performance doesn't matter, +you may try bpp=3 (internally one cannot use native data types in this +case; if you want to use this, look at pnmshow24). + You then can set hooks and io functions (see below) or other options (see below). |