Your message dated Sat, 28 Dec 2024 03:22:58 +0000 with message-id <[email protected]> and subject line Bug#1090057: Removed package(s) from unstable has caused the Debian Bug report #701787, regarding cursor appears horizontally shifted in 24 bit mode to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 701787: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701787 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: directvnc Version: 0.7.7-1 Tags: patch Hello, When I start directvnc 0.7.7-1 in 24 bit mode like this: # directvnc 192.168.0.1 -b 24 -m invalid-filename the display from the server shows correctly, but the cursor is horizontally shifted. The cursor on the client appears about half as far to the right as on the server. For example: if the cursor is at (600, 400) on the server, it shows on the client at about (300, 400). If the cursor is at (1024, 400) on the server (on the right edge), it shows on the client at about (512, 400). Click and hover events happen where the cursor is on the server. This patch seems to help: ---8<--- --- a/src/dfb.c +++ b/src/dfb.c @@ -65,7 +65,15 @@ dsc.caps = DSCAPS_PRIMARY | DSCAPS_SYSTEMONLY /*| DSCAPS_FLIPPING */; /* FIXME */ - dsc.pixelformat = DSPF_RGB16; + switch (opt.client.bpp) + { + case 32: + dsc.pixelformat = DSPF_RGB32; + break; + case 16: + default: + dsc.pixelformat = DSPF_RGB16; + } DFBCHECK(dfb->CreateSurface(dfb, &dsc, &primary )); primary->GetSize (primary, &opt.client.width, &opt.client.height); ---8<--- Architecture: i386 Kernel: Linux slitaz 2.6.37-slitaz #2 SMP Wed Mar 7 10:36:39 CET 2012 i686 GNU/Linux Shared C library: libc-2.13.so Kernel was started with vga=803 as a boot option, for 1024x768x32 resolution. directvnc: 0.7.7-1 (Debian wheezy) libdirectfb-1.2-9: 1.2.10.0-4 (Debian squeeze) libjpeg: 8b (Slitaz 4.0) zlib: 1.2.6 (Slitaz 4.0) tslib: 1.0 (Slitaz 4.0) For compiling: libdirectfb-dev 1.2.10.0-4 (Debian) zlib-dev 1.2.6 (Slitaz) libjpeg8-dev 8b-1 (Debian) pkg-config 0.25 (Slitaz) x11proto-core-dev 7.0.16-1 (Debian) VNC Servers: Apple Screen Sharing (Mac OS 10.5.8) tightvnc 1.3.10 (Slitaz 4.0) x11vnc 0.9.12 (Slitaz 4.0) Thank you, Edwin
--- End Message ---
--- Begin Message ---Version: 0.7.8-1+rm Dear submitter, as the package directvnc has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/1090057 The version of this package that was in Debian prior to this removal can still be found using https://snapshot.debian.org/. Please note that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]. Debian distribution maintenance software pp. Paul Richards Tagliamonte (the ftpmaster behind the curtain)
--- End Message ---

