RE: [PATCH 3/3] rdp-backend.so: OpenGL hardware acceleration

2018-04-04 Thread Raimundo Sagarzazu
* The pixel format to be used by the output. Valid values are: +* - NULL - The format set at backend creation time will be used; +* - "xrgb"; +* - "rgb565" +* - "xrgb2101010" +*/ + void (*set_gbm_format)(struct weston_outpu

Re: [PATCH 3/3] rdp-backend.so: OpenGL hardware acceleration

2018-04-03 Thread Hardening
Le 06/07/2017 à 12:06, Olivier Blin a écrit : > From: DRC > > --- > compositor/main.c | 23 +++- > configure.ac | 4 +- > libweston/compositor-rdp.c | 314 > +++-- > libweston/compositor-rdp.h | 24

Re: [PATCH 3/3] rdp-backend.so: OpenGL hardware acceleration

2018-04-03 Thread Pekka Paalanen
On Fri, 23 Feb 2018 16:08:00 +0100 Raimundo Sagarzazu wrote: > Hi, > > Two patches that improve performance in my case. > > First, supporting ARGB gbm-format for the output allows a much better > performance of the intelReadPixels function of the i965

Re: [PATCH 3/3] rdp-backend.so: OpenGL hardware acceleration

2018-02-23 Thread Raimundo Sagarzazu
Hi, Two patches that improve performance in my case. First, supporting ARGB gbm-format for the output allows a much better performance of the intelReadPixels function of the i965 driver of Mesa, which is my case: diff -rup a/libweston/compositor-rdp.c b/libweston/compositor-rdp.c ---

[PATCH 3/3] rdp-backend.so: OpenGL hardware acceleration

2017-07-06 Thread Olivier Blin
From: DRC --- compositor/main.c | 23 +++- configure.ac | 4 +- libweston/compositor-rdp.c | 314 +++-- libweston/compositor-rdp.h | 24 4 files changed, 352 insertions(+), 13 deletions(-) diff