Re: Is this issue related with the bug 20048 , 17923 or 71338

2017-08-08 Thread Adam Jackson
On Fri, 2017-08-04 at 05:55 +, Subrata Dasgupta wrote: > Hi Ajax, > Why every time XErrorEvent.serial = 2422603788. Does not it mean > application is facing problem only after a certain number of requests > has been made?? It means the error structure points to a place in memory that

Re: [PATCH xf86-video-amdgpu] Adapt to PixmapDirtyUpdateRec::src being a DrawablePtr

2017-08-08 Thread Michel Dänzer
On 13/07/17 05:27 PM, Michel Dänzer wrote: > On 18/04/17 07:07 PM, Michel Dänzer wrote: >> From: Michel Dänzer >> >> Signed-off-by: Michel Dänzer >> --- >> >> Chris / Ilia / Ben, this should be manageable for the intel/nouveau >> drivers, right? >

Re: [PATCH xserver 0/1] Good bye GlxSetVisualConfigs

2017-08-08 Thread Emil Velikov
On 3 August 2017 at 16:54, Keith Packard wrote: > Emil Velikov writes: > >> Thank you Alex. >> >> Considering the low interest on the driver side, I'm thinking about >> merging those in the next 3 days/a week. >> Thus at a later stage Adam/others can

Re: [PATCH v2 xf86-video-dummy] Add glamor acceleration which enables native OpenGL support (v2)

2017-08-08 Thread Adam Jackson
On Sat, 2017-08-05 at 19:54 +0700, Antoine Martin wrote: > With an nvidia driver, I get: > [119367.649] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so > [119367.649] (II) Module glamoregl: vendor="X.Org Foundation" > [119367.649] compiled for 1.19.3, module version = 1.0.0 > [119367.649]

[PATCH xserver] meson: Fix epoll detection

2017-08-08 Thread Peter Harris
The epoll code depends on epoll_create1, not epoll_create. The trinary " ? 1 : false" is used because HAVE_EPOLL_CREATE1 is tested with #if instead of #ifdef. Signed-off-by: Peter Harris --- include/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff