Re: [Mesa-dev] The current status of the gallium vmwgfx driver

2011-05-16 Thread Feng, Haitao
Hi Jakob, Thank you very much for your reply! I have tried your method and other method from VMware community http://communities.vmware.com/message/1544516 to build vmwgfx in Ununtu 11.04. I have found that: I could build vmwgfx and glxinfo shows "Gallium 0.4 on SVGA3D; build: RELEASE" on Window

[Mesa-dev] [PATCH] egl_dri2 x11: Fix a typo

2011-03-28 Thread Feng, Haitao
>From bc4ccf8d1c0474f432a3740a9c0bb5a67b3ebae8 Mon Sep 17 00:00:00 2001 From: haitao Date: Tue, 29 Mar 2011 13:33:46 +0800 Subject: [PATCH] egl_dri2 x11: Fix a typo Signed-off-by: Haitao Feng --- src/egl/drivers/dri2/platform_x11.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) d

[Mesa-dev] [PATCH 3/3] egl_dri2: make swrast always double buffered

2011-02-08 Thread Feng, Haitao
>From 1ef02e603f0296e5d11df4e9a1b783fae2da3af8 Mon Sep 17 00:00:00 2001 From: Haitao Feng Date: Wed, 9 Feb 2011 14:52:59 -0500 Subject: [PATCH 3/3] egl_dri2: make swrast always double buffered Signed-off-by: Haitao Feng --- src/egl/drivers/dri2/egl_dri2.c |7 --- src/egl/drivers/d

[Mesa-dev] [PATCH 2/3] egl_dri2: add swrast

2011-02-08 Thread Feng, Haitao
>From 4d2994362d53b0a7e00e6ec29433c648a3695208 Mon Sep 17 00:00:00 2001 From: Haitao Feng Date: Wed, 9 Feb 2011 14:43:23 -0500 Subject: [PATCH 2/3] egl_dri2: add swrast This enables the egl_dri2 driver to load swrast driver for software rendering. It could be used when hardware dri2 drivers are

[Mesa-dev] [PATCH 1/3] egl_dri2: rename loader_extension to dri2_loader_extension

2011-02-08 Thread Feng, Haitao
>From 7db4f1f8a5c85666b3ea7e60ee58bd5e68457c20 Mon Sep 17 00:00:00 2001 From: Haitao Feng Date: Wed, 9 Feb 2011 14:18:48 -0500 Subject: [PATCH 1/3] egl_dri2: rename loader_extension to dri2_loader_extension Signed-off-by: Haitao Feng --- src/egl/drivers/dri2/egl_dri2.h |2 +- src/

Re: [Mesa-dev] [PATCH 2/2] egl_dri2: Adding swrast and refactoring

2011-02-03 Thread Feng, Haitao
...@gmail.com [mailto:hoegsb...@gmail.com] On Behalf Of Kristian Høgsberg Sent: 2011年2月4日 0:55 To: Feng, Haitao Cc: mesa-dev@lists.freedesktop.org Subject: Re: [Mesa-dev] [PATCH 2/2] egl_dri2: Adding swrast and refactoring On Sun, Jan 30, 2011 at 3:05 AM, Feng, Haitao wrote: > F

Re: [Mesa-dev] [PATCH 1/2] swrast: add an interface createNewContextForAPI

2011-02-03 Thread Feng, Haitao
Høgsberg Sent: 2011年2月4日 1:06 To: Feng, Haitao Cc: mesa-dev@lists.freedesktop.org Subject: Re: [Mesa-dev] [PATCH 1/2] swrast: add an interface createNewContextForAPI On Sun, Jan 30, 2011 at 3:03 AM, Feng, Haitao wrote: > From 84b2c96eb2e477ac66b51022604286f555ff2f5b Mon Sep 17 00:00:00 2001 >

[Mesa-dev] [PATCH 2/2] egl_dri2: Adding swrast and refactoring

2011-01-30 Thread Feng, Haitao
Dear Mesa developers, The second part of my patch is too big and is being held for the approval from list moderator. So I gzip it and send it again. Sorry for the inconvience. Those two patches will enable egl_dri2.so to load swrast_dri.so and we could use software rendering for OpenGL ES1 and O

[Mesa-dev] [PATCH 1/2] swrast: add an interface createNewContextForAPI

2011-01-29 Thread Feng, Haitao
>From 84b2c96eb2e477ac66b51022604286f555ff2f5b Mon Sep 17 00:00:00 2001 From: Haitao Feng Date: Sat, 29 Jan 2011 23:35:54 -0800 Subject: [PATCH 1/2] swrast: add an interface createNewContextForAPI This new interface could set up context for OpenGL, OpenGL ES1 and OpenGL ES2. It will be used by eg