Re: [Bug] arm64: glamor: display abnormal when rotate screen

2016-11-21 Thread Mark yao
On 2016年11月15日 02:32, Eric Anholt wrote: Mark yao writes: Hi Eric We found some display problem when rotate the screen. You can see the abnormal display picture on attachment. Bug reproduce step: 1, run lubuntu session. 2, rotate screen: xrandr --output eDP-1

Re: [PATCH wayland] doc: start documenting Xwayland

2016-11-21 Thread Pekka Paalanen
On Mon, 21 Nov 2016 14:31:43 +0200 Pekka Paalanen wrote: > From: Pekka Paalanen > > This is a rough intro to what Xwayland is and does, with just one > implementation detail so far (Window identification). > > I paid no attention to

[PATCH v2 app/setxkbmap] Add ~/.xkb and xdg dir to search path

2016-11-21 Thread Mihail Konev
Signed-off-by: Mihail Konev --- Whichever directories get added, they should not differ from libxkbcommon not to "break per-user installs" between setxkbmap and users of the latter :) setxkbmap.c | 36 1 file changed, 36 insertions(+) diff

Re: [PATCH v4 xserver] xkb: fix releasing overlay while keydown

2016-11-21 Thread Peter Hutterer
On Mon, Nov 07, 2016 at 03:42:41AM +0500, Mihail Konev wrote: > Testcase: > > In ~/.xbindkeysrc: > > "xterm &" >XF86LaunchA > > In ~/ov.xkb: > > xkb_keymap { > xkb_keycodes { include "evdev" }; > xkb_types{ include "complete" }; > > xkb_compat {

Re: [PATCH libxkbcommon 2/2] src/context: Remove ~/.xkb from search path

2016-11-21 Thread Peter Hutterer
On Thu, Nov 17, 2016 at 10:44:12PM +0500, Mihail Konev wrote: > Signed-off-by: Mihail Konev > --- > src/context.c | 8 +--- > 1 file changed, 1 insertion(+), 7 deletions(-) > > diff --git a/src/context.c b/src/context.c > index e9e939b6b0eb..c9879a834074 100644 > ---

Re: [PATCH app/setxkbmap 1/2] Add ~/.xkb to search path

2016-11-21 Thread Peter Hutterer
On Thu, Nov 17, 2016 at 10:42:38PM +0500, Mihail Konev wrote: > Also look in $XDG_CONFIG_HOME/xkb, falling back to ~/.config/xkb > > Signed-off-by: Mihail Konev > --- > configure.ac | 3 +++ > setxkbmap.c | 23 +++ > 2 files changed, 26 insertions(+) > > diff

Re: [PATCH app/setxkbmap 2/2] Remove ~/.xkb from search path

2016-11-21 Thread Peter Hutterer
On Thu, Nov 17, 2016 at 10:43:10PM +0500, Mihail Konev wrote: > Signed-off-by: Mihail Konev sorry, this is a bit confusing. This one relies on your other one that you've withdrawn? Please send a v2 patch with just the ones on top of current master. Cheers, Peter > --- >

Re: [Bug] arm64: glamor: display abnormal when rotate screen

2016-11-21 Thread Eric Anholt
Mark yao writes: > On 2016年11月15日 02:32, Eric Anholt wrote: >> Mark yao writes: >> >>> Hi Eric >>> >>> We found some display problem when rotate the screen. >>> >>> You can see the abnormal display picture on attachment. >>> >>> Bug reproduce

[PATCH v2 xf86-video-i128] Stop using deprecated xf86PciInfo.h

2016-11-21 Thread Laurent Carlier
v2: Remove empty lines Signed-off-by: Laurent Carlier --- src/i128.h| 6 ++ src/i128IBMDAC.c | 1 - src/i128_driver.c | 3 --- src/i128accel.c | 1 - src/i128dga.c | 1 - src/i128exa.c | 1 - src/i128init.c| 1 - 7 files changed, 6 insertions(+),

[PATCH xf86-video-i128] Stop using deprecated xf86PciInfo.h

2016-11-21 Thread Laurent Carlier
Signed-off-by: Laurent Carlier --- src/i128.h| 6 ++ src/i128IBMDAC.c | 2 +- src/i128_driver.c | 2 +- src/i128accel.c | 2 +- src/i128dga.c | 2 +- src/i128exa.c | 2 +- src/i128init.c| 2 +- 7 files changed, 12 insertions(+), 6 deletions(-)

[PATCH xf86-video-i740] Stop using deprecated xf86PciInfo.h

2016-11-21 Thread Laurent Carlier
Signed-off-by: Laurent Carlier --- src/i740.h | 6 +- src/i740_accel.c | 1 - src/i740_dga.c | 1 - src/i740_i2c.c | 1 - src/i740_video.c | 1 - 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/i740.h b/src/i740.h index 3723e57..3439d7d

[PATCH xf86-video-sisusb] Adapt BlockHandler signature for ABI 23

2016-11-21 Thread Laurent Carlier
Signed-off-by: Laurent Carlier --- src/compat-api.h | 5 + 1 file changed, 5 insertions(+) diff --git a/src/compat-api.h b/src/compat-api.h index 6bc946f..89976e4 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -75,8 +75,13 @@ #define SCREEN_INIT_ARGS_DECL

[PATCH 0/2] xf86-video-voodoo: fix compilation warning

2016-11-21 Thread Laurent Carlier
Only compile tested Laurent Carlier (2): Stop using deprecated xf86PciInfo.h Remove miInitializeBackingStore() src/voodoo.h | 5 +++-- src/voodoo_dga.c | 1 - src/voodoo_driver.c | 2 -- src/voodoo_hardware.c | 1 - 4 files changed, 3 insertions(+), 6 deletions(-) --

[PATCH 2/2] Remove miInitializeBackingStore()

2016-11-21 Thread Laurent Carlier
This doesn't exist any more for a long time --- src/voodoo_driver.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/voodoo_driver.c b/src/voodoo_driver.c index 876dbe4..79d1ba2 100644 --- a/src/voodoo_driver.c +++ b/src/voodoo_driver.c @@ -679,7 +679,6 @@

[PATCH 1/2] Stop using deprecated xf86PciInfo.h

2016-11-21 Thread Laurent Carlier
--- src/voodoo.h | 5 +++-- src/voodoo_dga.c | 1 - src/voodoo_driver.c | 1 - src/voodoo_hardware.c | 1 - 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/voodoo.h b/src/voodoo.h index c3eb64e..846ce66 100644 --- a/src/voodoo.h +++ b/src/voodoo.h @@ -90,8 +90,9