[Mesa-dev] [PATCH] gbm : Fix build for wayland include

2012-07-18 Thread Elvis Lee
backends/gbm_dri.c fails to find wayland-server.h. Signed-off-by: Elvis Lee --- src/gbm/Makefile.am |1 + 1 file changed, 1 insertion(+) diff --git a/src/gbm/Makefile.am b/src/gbm/Makefile.am index 5ca2839..f079da1 100644 --- a/src/gbm/Makefile.am +++ b/src/gbm/Makefile.am @@ -22,6 +22,7

Re: [Mesa-dev] [PATCH] st/gbm: renaming pitch to stride on gallium

2012-07-17 Thread Elvis Lee
oo much. > I'd like to drop support for the the gbm gallium state tracker and just > use the DRI statetracker instead. > > Kristian Actually, I didn't think that much and I don't know well about it. I just tried to resolve build errors. Elvis -- Elvis Lee (이광웅) Sof

[Mesa-dev] [PATCH] st/gbm: renaming pitch to stride on gallium

2012-07-17 Thread Elvis Lee
commit '7250cd506baa0bd4649b30d87509cdd0cbc06a57' changes struct gbm_bo, renaming it's 'pitch' to 'stride'. This applies to Gallium. Signed-off-by: Elvis Lee --- src/gallium/state_trackers/gbm/gbm_drm.c |4 ++-- 1 file changed, 2 insertions(+), 2 del

[Mesa-dev] [PATCH] Fix build for gbm having wayland

2012-07-17 Thread Elvis Lee
gbm: backends/dri/gbm_dri.c fails to find wayland-drm-server-protocol.h because egl/wayland is not built before gbm. Signed-off-by: Elvis Lee --- src/gbm/Makefile.am |3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gbm/Makefile.am b/src/gbm/Makefile.am index 5ca2839..8f56873 100644

[Mesa-dev] [PATCH] st/egl: Fix build for wayland includes

2012-07-17 Thread Elvis Lee
common/native_wayland_drm_bufmgr_helper.c fails to find wayland-server.h Signed-off-by: Elvis Lee --- src/gallium/state_trackers/egl/Makefile |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gallium/state_trackers/egl/Makefile b/src/gallium/state_trackers/egl

[Mesa-dev] [PATCH] egl_dri2: NULL check for EGLNativeWindowType

2012-07-10 Thread Elvis Lee
Some application calls eglCreateWindowSurface with EGLNativeWindowType parameter having zero value. It causes SEGV and disturbs error handling like EGL_NO_SURFACE. Signed-off-by: Elvis Lee --- src/egl/drivers/dri2/platform_drm.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/src/egl