summaryrefslogtreecommitdiffstats
path: root/libvncserver/cursor.c
Commit message (Collapse)AuthorAgeFilesLines
* LibVNCClient: fix integer shifts for cursor colorsTobias Junghans2018-11-051-4/+4
| | | | | | Shifting values > 32768 by 16 places can cause undefined results for signed integers. Therefore cast color components to unsigned integer before shifting.
* Add locks of updateMutex in rfbRedrawAfterHideCursor() andrunge2009-12-011-2/+5
| | | | rfbSetClientColourMap(). Up listen limit from 5 to 32.
* Fix various compilation warningsVic Lee2009-11-101-1/+1
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* Fix short vs. char problem with X cursors. Have fg == bg == 0 imply ↵runge2007-03-241-7/+51
| | | | interpolation to B&W.
* Corrected Cursor Statistics reporting as messagessteven_carr2006-05-161-2/+2
|
* The great UltraVNC Compatibility Commitsteven_carr2006-05-151-8/+3
|
* Client Independent Server Side Scaling is now supportedsteven_carr2006-05-031-0/+10
| | | | Both PalmVNC and UltraVNC SetScale messages are supported
* fix some non-gcc compiler warnings and signals in x11vncrunge2006-02-201-1/+1
|
* main.c: XReadScreen check, fix 64bit use of cursors, x11vnc: first round of ↵runge2005-06-141-14/+34
| | | | beta-testing fixes, RFE's.
* ANSIfy, fix some warnings from Linus' sparsedscho2005-05-151-8/+10
|
* implemented Floyd-Steinberg dither in order to rfbMakeMaskFromAlphaSourcedscho2005-01-211-0/+38
|
* disappearing cursor fixed & debug message purgeddscho2005-01-201-1/+0
|
* fix disappearing cursordscho2005-01-201-4/+7
|
* redraw region under old cursor even if the old cursor doesn't have to be freed.dscho2005-01-191-2/+3
|
* oops, a debug message slipped throughdscho2005-01-191-2/+0
|
* pointerClient was still static.dscho2005-01-181-36/+64
| | | | | | | | | | | | | | | | | | | | | | do not make requestedRegion empty without reason. the cursor handling for clients which don't handle CursorShape updates was completely broken. It originally was very complicated for performance reasons, however, in most cases it made performance even worse, because at idle times there was way too much checking going on, and furthermore, sometimes unnecessary updates were inevitable. The code now is much more elegant: the ClientRec structure knows exactly where it last painted the cursor, and the ScreenInfo structure knows where the cursor shall be. As a consequence there is no more rfbDrawCursor()/rfbUndrawCursor(), no more dontSendFramebufferUpdate, and no more isCursorDrawn. It is now possible to have clients which understand CursorShape updates and clients which don't at the same time. rfbSetCursor no longer has the option freeOld; this is obsolete, as the cursor structure knows what to free and what not.
* add cursor alphablending to rfb.h cursor.c, x11vnc -alphablend -snapfb etc..runge2005-01-161-6/+81
|
* x11vnc: synchronous mode for -remote, string cleanuprunge2004-12-201-0/+1
|
* don't mix up width & height!dscho2004-12-171-1/+1
|
* global structures/functions should have "rfb", "sra" or "zrle" as prefix,dscho2004-08-301-17/+17
| | | | while structure members should not
* fix cursor trails (when not using cursor encoding and moving the cursor,dscho2004-06-071-2/+14
| | | | the redrawn part of the screen didn't get updated, and so left cursor trails).
* move the library into libvncserver/, x11vnc into x11vnc/dscho2004-05-251-0/+527