Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | | | | encperf: add compression level to encoding list | DRC | 2015-02-25 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add the compression level to the list of encodings so it's obvious how to override it. | |||||
| | * | | | | encperf: allow # of iterations to be specified | DRC | 2015-02-25 | 1 | -6/+6 | |
| | | | | | | ||||||
| | * | | | | encperf: report encoded & raw-equivalent bytes | DRC | 2015-02-25 | 1 | -13/+24 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Report encoded and raw-equivalent bytes as well as compression ratio (I like to have these statistics so I can compute overall compression ratios for groups of datasets in a spreadsheet.) | |||||
| | * | | | | encperf: Code formatting tweaks | DRC | 2015-02-25 | 1 | -18/+18 | |
| | |/ / / | | | | | | | | | | | | | | | | | | | | | Code formatting tweaks to improve readability & make the code consistent with the rest of TigerVNC | |||||
| * | | | | The legacy OS X keyboard API is only 32-bit | Pierre Ossman | 2015-02-25 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Escape FLTK menu entries | Pierre Ossman | 2015-02-25 | 3 | -20/+77 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | We don't want it automatically creating submenus when least expected. | |||||
| * | | | | Revert "Switch to FLTK's copy() method for menus" | Pierre Ossman | 2015-02-25 | 2 | -69/+30 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit e95412569bd45ec3da43e1b9a244856e0408f6ab and commit 52a18150a7a8f2802000136c35005bc83b5b0855. The copy() method unfortunately has its own problems so it was not a good replacement. | |||||
* | | | | Don't need to log local port when handling -via (#126). | Tim Waugh | 2015-02-25 | 1 | -1/+0 | |
| | | | | ||||||
* | | | | Avoid warning when compiling with gcc's -Wformat-security option. | Tim Waugh | 2015-02-24 | 1 | -1/+1 | |
|/ / / | ||||||
* | | | Disable entries instead of shuffling memory around | Pierre Ossman | 2015-02-20 | 1 | -22/+11 | |
| | | | | | | | | | | | | Less risk for bugs this way. | |||||
* | | | Update copyright years | Pierre Ossman | 2015-02-20 | 2 | -2/+2 | |
| | | | ||||||
* | | | Switch to FLTK's copy() method for menus | Pierre Ossman | 2015-02-20 | 2 | -26/+76 | |
|/ / | | | | | | | It has less surprises in terms of magical characters. | |||||
* | | Create a console window for help output on Windows | Pierre Ossman | 2015-02-17 | 1 | -0/+21 | |
| | | ||||||
* | | Add shortcuts to context menu for quick access | Pierre Ossman | 2015-02-16 | 1 | -11/+11 | |
| | | ||||||
* | | Stop mapping Meta to Super | Pierre Ossman | 2015-02-16 | 1 | -2/+0 | |
| | | | | | | | | | | A lot of X11 keyboard layouts send Meta for Shift-Alt so it's not really a good idea to assume this is the Windows key. | |||||
* | | Merge branch 'perf' of https://github.com/CendioOssman/tigervnc | Pierre Ossman | 2015-02-13 | 24 | -158/+1193 | |
|\ \ | ||||||
| * | | Default compression level should be interpreted as high | Pierre Ossman | 2015-02-13 | 1 | -1/+1 | |
| | | | ||||||
| * | | Be more aggressive in finding solid rectangles | Pierre Ossman | 2015-02-13 | 2 | -74/+96 | |
| | | | | | | | | | | | | | | | The previous FIXME was incorrect. The old code did in fact continue looking over the entire area. This commit restores that old behaviour. | |||||
| * | | Add test to measure high level encoding performance | Pierre Ossman | 2015-02-13 | 2 | -0/+442 | |
| | | | ||||||
| * | | Move encoder statistics into EncodeManager from SMsgWriter | Pierre Ossman | 2015-02-13 | 4 | -47/+168 | |
| | | | | | | | | | | | | It knows more details so it can track things better. | |||||
| * | | Optimise fillRect() | Pierre Ossman | 2015-02-13 | 1 | -6/+26 | |
| | | | | | | | | | | | | | | | It had regressed in performance compared to 1.3. This brings it back up to the same speed. | |||||
| * | | Make it possible to measure CPU usage in parellel | Pierre Ossman | 2015-02-13 | 2 | -18/+71 | |
| | | | ||||||
| * | | Add test to measure decoding performance | Pierre Ossman | 2015-02-13 | 2 | -0/+220 | |
| | | | ||||||
| * | | GnuTLS needs socket libraries so include them in the static link | Pierre Ossman | 2015-02-13 | 1 | -2/+6 | |
| | | | ||||||
| * | | rfb::Region uses the Xregion library | Pierre Ossman | 2015-02-13 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add stream class to feed data from a file | Pierre Ossman | 2015-02-13 | 3 | -0/+138 | |
| | | | ||||||
| * | | No need for this array to be writeable | Pierre Ossman | 2015-02-13 | 4 | -4/+4 | |
| | | | ||||||
| * | | Move reverse connection information into VNCSConnectionST | Pierre Ossman | 2015-02-13 | 4 | -5/+4 | |
| | | | | | | | | | | | | | | | The only class that cares if connections are reversed or not is VNCSConnectionST so let it keep track of this fact. | |||||
| * | | These methods aren't critical so no need for them to be pure | Pierre Ossman | 2015-02-13 | 2 | -2/+10 | |
| | | | ||||||
| * | | Give subclasses the ability to overwrite the reader and writer | Pierre Ossman | 2015-02-13 | 2 | -0/+6 | |
| | | | | | | | | | | | | Needed for some tests. | |||||
| * | | SConnection internals should be private, just like for CConnection | Pierre Ossman | 2015-02-13 | 1 | -0/+2 | |
| | | | ||||||
* | | | Build fixes for modern versions of binutils. | Peter Åstrand (astrand) | 2015-02-10 | 2 | -2/+5 | |
| | | | | | | | | | | | | Need to explicitly list DSOs. | |||||
* | | | Use a common header file for Windows errno names. | Peter Åstrand (astrand) | 2015-02-05 | 4 | -5/+104 | |
| | | | | | | | | | | | | | | | | | | | | | | | | In earlier Visual Studio and MinGW editions, BSD socket errno:s were left undefined. This is no longer the case. This may cause build or runtime errors. To avoid this, we are using a common header file which corrects all definitions. This header will also be used with other projects such as sercd, unfs3, PulseAudio etc. | |||||
* | | | Merge pull request #114 from bphinz/master | Brian Hinz | 2015-02-04 | 9 | -12/+20 | |
|\ \ \ | |/ / |/| | | Fixes for issues caused by restructuring | |||||
| * | | Fix ubuntu patches after recent restructuring | Brian P. Hinz | 2015-02-04 | 2 | -4/+4 | |
| | | | | | | | | | | | | unix/xserver/hw/vnc/xvnc.cc was renamed to xvnc.c | |||||
| * | | Fixes for build issues caused by recent restructuring | Brian P. Hinz | 2015-02-04 | 3 | -0/+12 | |
| | | | | | | | | | | | | | | | | | | * Add typedef for XF86OptionPtr for Xorg < 112 * Include stddef.h to prevent missing size_t definition errors * Workaround for libtool convenience library issue | |||||
| * | | Fix fuzz in distro patches caused upstream changes | Brian P. Hinz | 2015-02-04 | 4 | -8/+4 | |
|/ / | ||||||
* | | Make the calls to va_list logging functions more explicit | Pierre Ossman | 2015-01-30 | 2 | -5/+5 | |
| | | | | | | | | | | On some platforms va_list might be defined as something that causes ambiguity and results in the wrong function being called. | |||||
* | | Add parameters to force IPv4/IPv6 selection | Pierre Ossman | 2015-01-29 | 1 | -1/+27 | |
| | | ||||||
* | | Add Esperanto translations | Felipe Castro | 2015-01-29 | 2 | -1/+753 | |
| | | ||||||
* | | Avoid shadowing variables | Pierre Ossman | 2015-01-29 | 1 | -21/+21 | |
| | | ||||||
* | | ddxInitGlobals() was removed from Xorg ages ago | Pierre Ossman | 2015-01-29 | 1 | -5/+0 | |
| | | ||||||
* | | ddxBeforeReset() is only conditionally included in the build | Pierre Ossman | 2015-01-29 | 1 | -0/+2 | |
| | | ||||||
* | | Properly define functions as not having any arguments | Pierre Ossman | 2015-01-29 | 1 | -5/+4 | |
| | | ||||||
* | | Remove declaration for variable already present in headers | Pierre Ossman | 2015-01-29 | 1 | -3/+0 | |
| | | ||||||
* | | Make sure we get prototypes for global DDX functions | Pierre Ossman | 2015-01-29 | 1 | -0/+4 | |
| | | ||||||
* | | Avoid complaints about unused variable in argument less requests | Pierre Ossman | 2015-01-29 | 1 | -3/+0 | |
| | | | | | | | | | | | | The REQUEST macro is used to access variables in the request data, and if we don't then the compiler complains that the macro sets up variables that we never use. | |||||
* | | No need to cast these as they are already an appropriate type | Pierre Ossman | 2015-01-29 | 1 | -3/+3 | |
| | | ||||||
* | | Declare variables at the start of each block, as required | Pierre Ossman | 2015-01-29 | 2 | -19/+30 | |
| | | ||||||
* | | Use proper prototypes in headers for all our internal functions | Pierre Ossman | 2015-01-29 | 6 | -12/+13 | |
| | |