Re: [Mesa-dev] about EGL_MESA_no_surface extension

2012-04-30 Thread Cooper Yuan
Yes, That's good: Recently gbm and Weston were changed to not use this extension anymore. BTW, who is working on personal git to remove this extension from weston? Thanks! On Mon, Apr 30, 2012 at 12:42 PM, Ander Conselvan de Oliveira conselv...@gmail.com wrote: On 04/30/2012 12:26 PM, Cooper

Re: [Mesa-dev] about EGL_MESA_no_surface extension

2012-04-30 Thread Cooper Yuan
); return -1; } -- On Mon, Apr 30, 2012 at 1:27 PM, Rob Bradford r...@robster.org.uk wrote: On 30 April 2012 12:10, Cooper Yuan coopery...@gmail.com wrote: Yes, That's good: Recently gbm and Weston were changed to not use this extension anymore. BTW, who is working on personal git to remove

Re: [Mesa-dev] [PATCH] dri2: add code to flush function of DRI2_Flush extension

2011-08-16 Thread Cooper Yuan
this DRI2_Flush extension is used by egl driver, but DRI2_Flush extension doesn't implement dri2_flush_drawable() function. 2011/8/16 Michel Dänzer mic...@daenzer.net On Mon, 2011-08-15 at 19:32 +0800, Cooper Yuan wrote: Hi All, please review this changelist that's going to enable

Re: [Mesa-dev] [PATCH] dri2: add code to flush function of DRI2_Flush extension

2011-08-16 Thread Cooper Yuan
correctly, any concern? Cooper On Tue, Aug 16, 2011 at 4:32 PM, Chia-I Wu olva...@gmail.com wrote: 2011/8/16 Cooper Yuan coopery...@gmail.com: this DRI2_Flush extension is used by egl driver, but DRI2_Flush extension doesn't implement dri2_flush_drawable() function. I do not recall what

Re: [Mesa-dev] Mesa (master): egl: Native Display autodetection

2011-08-15 Thread Cooper Yuan
so, export EGL_PLATFORM=drm, is still working, right? On Mon, Aug 15, 2011 at 3:47 PM, Benjamin Franzke b...@kemper.freedesktop.org wrote: Module: Mesa Branch: master Commit: 85fe9484945cb57ffd49df248b0e5057eba6af04 URL:

[Mesa-dev] [PATCH] dri2: add code to flush function of DRI2_Flush extension

2011-08-15 Thread Cooper Yuan
Hi All, please review this changelist that's going to enable eglWaitClient() which has the same effect with glFinish according to specification. before, egl applications using pixmap or pbuffer flicker always because of no flush. Cooper --- src/gallium/state_trackers/dri/drm/dri2.c |4

Re: [Mesa-dev] [Patch] Destroy context in egl_dri2 and egl_glx driver when apps call eglDestroyContext

2011-08-14 Thread Cooper Yuan
); On Sun, Aug 14, 2011 at 12:16 PM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 12, 2011 at 11:44 PM, Cooper Yuan coopery...@gmail.com wrote: Hi, this patch calls corresponding destroyContext in egl_dri2 and egl_glx driver. Any comment? Cooper --- src/egl/drivers/dri2/egl_dri2.c

[Mesa-dev] [Patch] Destroy context in egl_dri2 and egl_glx driver when apps call eglDestroyContext

2011-08-12 Thread Cooper Yuan
Hi, this patch calls corresponding destroyContext in egl_dri2 and egl_glx driver. Any comment? Cooper --- src/egl/drivers/dri2/egl_dri2.c | 17 + src/egl/drivers/glx/egl_glx.c | 18 ++ 2 files changed, 35 insertions(+), 0 deletions(-) diff --git