mirror of https://github.com/xemu-project/xemu.git
vnc: Fix artifacts in hextile decoding
02c2b87
introduced a regression whereas the foreground color in a hextile
update was not being properly invalidated leading to artifacts.
It's still necessary to explicitly invalidate the foreground color with a
SubrectColoured tile even though we no longer send a foreground color as
part of the tile.
Reported-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
561ef251e7
commit
18cb1d8557
|
@ -165,6 +165,8 @@ static void CONCAT(send_hextile_tile_, NAME)(VncState *vs,
|
||||||
irow += ds_get_linesize(vs->ds) / sizeof(pixel_t);
|
irow += ds_get_linesize(vs->ds) / sizeof(pixel_t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* A SubrectsColoured subtile invalidates the foreground color */
|
||||||
|
*has_fg = 0;
|
||||||
if (n_data > (w * h * sizeof(pixel_t))) {
|
if (n_data > (w * h * sizeof(pixel_t))) {
|
||||||
n_colors = 4;
|
n_colors = 4;
|
||||||
flags = 0x01;
|
flags = 0x01;
|
||||||
|
|
Loading…
Reference in New Issue