Re: [PATCH 6/8] ephyr: Create 3.3 core profile context if possible (v3)

2016-01-22 Thread Emil Velikov
Hi Dave, On 19 January 2016 at 09:02, Dave Airlie wrote: > From: Keith Packard > > On desktop GL, Ask for a 3.3 core profile context if that's available, > otherwise create a generic context. > Regardless if 3.1 or other version is chosen, may I suggest that we keep the commit message/summary in

[PATCH:libX11] Stop checking XTRANS_SECURE_RPC_FLAGS since we no longer use them

2016-01-22 Thread Alan Coopersmith
Code that used SECURE_RPC definitions was removed in commit 15e5eaf6289 which outsourced X11 connection handling & authentication to libxcb. Signed-off-by: Alan Coopersmith --- configure.ac | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.ac b/configure.ac index 663abf2..20b01cd 1

Re: [PATCH xserver 1/2] glamor: Fix copy-like Render operations between 15 and 16 depth.

2016-01-22 Thread Eric Anholt
Keith Packard writes: > Eric Anholt writes: > >> if (op == PictOpSrc) { >> +/* We can't do direct copies between different depths at 16bpp >> + * because r,g,b are allocated to different bits. >> + */ >> +if (dst->pDrawable->bitsPerPixel == 16 && >> +

[PATCH:libX11] Stop checking for preferred order of local transports

2016-01-22 Thread Alan Coopersmith
Removes --with-local-transport-order=... flag to configure. Code which used this ordered list was removed in commit 15e5eaf6289 which outsourced X11 connection handling & authentication to libxcb. Signed-off-by: Alan Coopersmith --- configure.ac | 72

Re: [PATCH 6/8] ephyr: Create 3.3 core profile context if possible (v3)

2016-01-22 Thread Dave Airlie
On 23 January 2016 at 02:53, Emil Velikov wrote: > Hi Dave, > > On 19 January 2016 at 09:02, Dave Airlie wrote: >> From: Keith Packard >> >> On desktop GL, Ask for a 3.3 core profile context if that's available, >> otherwise create a generic context. >> > Regardless if 3.1 or other version is ch