Tag 'xf86-video-qxl-0.1.5' created by Christophe Fergeau <cferg...@redhat.com> at 2016-12-19 17:34 +0000
xf86-video-qxl-0.1.5 -----BEGIN PGP SIGNATURE----- iQIcBAABCAAGBQJYWBoWAAoJEKnYwhQprGyCrnUQAIqALHYfcXqomhgXOyUiPk41 f9oSGnKAACmWAKjXEISAhFJixOrytGWlGeM+5L85uiJ10LxvEtpGCmbjyXWbe1Nk rvSFCIRP8mxKEUG2T+3P7R2X0qhtNFuyeW7Zr2aLbmXFmZK+wSvs1Iibnmoq+RFG HXU6DenKWvHTT44LIg8lAsy6MuGu0pqtgkRAO8SYVgFt8tKC98PpauxpDQoGA5wb 50t7hCown4DkdacSr1oRhBbR5clc7U8DHpj/MttjogZUzm9EIDmII4TAsdf9bzVD OGBrxGQw4QuODEcb4SQaduwY0dXI62xMurUhCw8oQcl1EKYANxIfc1Bx7vq1V4KF B9wT3HY+CCZcUXzHwn/lyuVcbFVo+7gIXpsaBLPkfS45/dEQwkpC+3X9u2BZnmrF DPiuA2gEF5FSK6a4QN++KXGN9fjVppDp6BSNVCo2H0VGolg9huAiuNpxBWGXGXNE xtHi/VK27pm+K7Y+R3/GNJl1w7KSWD1jfThH2JJLSB9xBh5IeAmQa0KuNYlbdAL4 DT4aIFeBCSYjCcePo1EVui9OwYk8zbhlqKxza1IfA0S/EITBncwisPec1npyb3la 11nNKbWOPxCWAEW3u/1GcS4WcAWTRYtIUZQKMdLRZxcavC+Qxob2kgvBi8rpy8IN Yrx3xXbH4aYA64YItppK =COCW -----END PGP SIGNATURE----- Changes since xf86-video-qxl-0.1.4: Adam Jackson (1): Use pci_io_write8 instead of outb Christophe Fergeau (16): Remove unused variables Remove stray blank comment line Use <> for system-includes Fix compilation with newer Xorg versions Add missing licence header Add note about deprecated setting of mm_time Xspice: Fix 'erorr' typo in error message xspice: Don't create Xorg time in timer_add Fix "calles" typo in comment build: Error out when enabling xspice with X.Org 1.19 build-sys: Update for 0.1.5 release xspice: Adjust to X.org 1.19 changes Xspice: Replace malloc/strdup use with xnfalloc/xnfstrdup Remove unused 'event_mask' field Revert "Remove unused 'event_mask' field" NEWS: Xspice now works with X.org 1.19 Dave Airlie (2): Disable surfaces when KMS is used Disable composite/a8 surfaces for KMS Francois Gouget (14): spiceqxl: Recognize the same set of boolean values as in xorg.conf. spiceqxl: Reject invalid boolean values, just like for other options. Xspice: Don't set defaults for the options. spiceqxl: Fix formatting of a couple of function calls. server: Convert qxl->monitors_config to a QXLPHYSICAL using physical_address() spiceqxl_audio: Let the audio play when no client is connected spiceqxl_audio: Only condense the fifo list when one has been closed spiceqxl_audio: Fix a race condition in the audio playback spiceqxl_audio: Only start the playback channel when fifos are present spiceqxl_audio: Stop the playback channel if there is nothing to play spiceqxl: Add SpiceVideoCodecs to specify video codec preference Xspice: Add --video-codecs to specify encoder and codec preferences spiceqxl: Remove an unused macro spiceqxl: Improve the Xspice and Xorg configuration option descriptions Hans de Goede (1): Fix crash caused by attempting to access the screen pixmap before it is created Javier Celaya (1): Fix drawable mm_time with KMS Jeremy White (14): Do not process watches on select() error. Bug fix: libcacard headers and libraries were not correctly used. Add and remove the vdagent interface as the vdagent Only watch the uinput channel when an agent is connected. Correct the XSpice AgentMouse configuration options. Document a number of missing XSpice vdagent options in the example xorg.conf. Set the regular spice port only once, and then only if it Xspice: handle parameters with value 0, allows --port 0 Add support for a --numheads option to the Xspice script. XSpice: allow the udcs socket to be specified, rather than hard coded. Revise Xspice --auto to use a temporary directory. XSpice: auto generate temp files for the vdagent process. Provide an implementation for put_image in dfps mode. Optimize dfps mode to send updates only for the primary pixmap. Marc-André Lureau (2): kms: initialize primary surface to screen virtual size kms: do not overwrite screen virtualX/Y Owen W. Taylor (1): Check for either xfont.pc or xfont2.pc Uri Lublin (1): uxa: fix compiler warnings (initialize width, height, [xy]Dst_copy) --- NEWS | 13 ++ configure.ac | 13 +- examples/spiceqxl.xorg.conf.example | 206 ++++++++++++++++++++++-------------- scripts/Xspice | 139 ++++++++++++++++-------- src/dfps.c | 33 ++++- src/qxl.h | 8 - src/qxl_driver.c | 22 +-- src/qxl_kms.c | 29 ++++- src/qxl_option_helpers.c | 27 +++- src/qxl_surface.c | 3 src/qxl_uxa.c | 10 + src/spiceccid/Makefile.am | 5 src/spiceccid/spiceccid.c | 2 src/spiceqxl_audio.c | 176 +++++++++++++++++++----------- src/spiceqxl_display.c | 2 src/spiceqxl_io_port.c | 11 - src/spiceqxl_main_loop.c | 105 ++++++++++++++++-- src/spiceqxl_spice_server.c | 34 ++++- src/spiceqxl_uinput.c | 15 ++ src/spiceqxl_uinput.h | 1 src/spiceqxl_vdagent.c | 9 + src/uxa/uxa-damage.c | 24 +++- src/uxa/uxa-glyphs.c | 2 src/uxa/uxa-render.c | 4 24 files changed, 613 insertions(+), 280 deletions(-) ---