Re: [Mesa-dev] [PATCH] glx: Use struct xshmfence* instead of int32_t*.

2013-12-05 Thread Chí-Thanh Christopher Nguyễn
Matt Turner schrieb: > --- > src/glx/dri3_glx.c | 4 ++-- > src/glx/dri3_priv.h | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/src/glx/dri3_glx.c b/src/glx/dri3_glx.c > index b047cc8..1834c6d 100644 > --- a/src/glx/dri3_glx.c > +++ b/src/glx/dri3_glx.c > @@ -676,7 +67

Re: [Mesa-dev] [PATCH][9.2] st/xorg: Handle new DamageUnregister API which has only one argument

2013-12-01 Thread Chí-Thanh Christopher Nguyễn
Emil Velikov schrieb: > On 29/11/13 16:23, Chí-Thanh Christopher Nguyễn wrote: >> This fixes building against the new API in X server 1.15 >> Taken from xf86-video-modesetting beca4dfb0e4d11d3729214967a1fe56ee5669831 >> from Keith Packard > Hi Chí-Thanh Christopher N

[Mesa-dev] [PATCH][9.2] st/xorg: Handle new DamageUnregister API which has only one argument

2013-11-29 Thread Chí-Thanh Christopher Nguyễn
This fixes building against the new API in X server 1.15 Taken from xf86-video-modesetting beca4dfb0e4d11d3729214967a1fe56ee5669831 from Keith Packard --- src/gallium/state_trackers/xorg/xorg_driver.c | 4 1 file changed, 4 insertions(+) diff --git a/src/gallium/state_trackers/xorg/xorg_dri

Re: [Mesa-dev] [PATCH] clover: work around altivec build failure with GNU C++ and -std=c++

2013-08-26 Thread Chí-Thanh Christopher Nguyễn
Francisco Jerez schrieb: > Chí-Thanh Christopher Nguyễn writes: > >> Chí-Thanh Christopher Nguyễn schrieb: >>>> How about disabling AltiVec code generation by adding >>>> "-mno-altivec" to CXXFLAGS? AFAICT what's going on is that the >>&g

Re: [Mesa-dev] [PATCH] clover: work around altivec build failure with GNU C++ and -std=c++

2013-08-26 Thread Chí-Thanh Christopher Nguyễn
Chí-Thanh Christopher Nguyễn schrieb: >> How about disabling AltiVec code generation by adding "-mno-altivec" to >> CXXFLAGS? AFAICT what's going on is that the "-maltivec" option (which >> is implied by your "-mcpu=7450") enables a number of

Re: [Mesa-dev] [PATCH] clover: work around altivec build failure with GNU C++ and -std=c++

2013-08-26 Thread Chí-Thanh Christopher Nguyễn
Francisco Jerez schrieb: > Chí-Thanh Christopher Nguyễn writes: > >> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68504 Bugzilla: >> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58241 CC: >> mesa-sta...@lists.freedesktop.org --- configure.ac >>

Re: [Mesa-dev] [PATCH] configure.ac: Fix order of "and"/"or" for AM_CONDITIONAL

2013-08-26 Thread Chí-Thanh Christopher Nguyễn
Sorry, I missed that the author already sent his patch to the list. Please disregard. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH] configure.ac: Fix order of "and"/"or" for AM_CONDITIONAL

2013-08-26 Thread Chí-Thanh Christopher Nguyễn
From: Kris Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68544 CC: mesa-sta...@lists.freedesktop.org --- configure.ac | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 40e052c..f135f81 100644 --- a/configure.ac +++ b/configu

[Mesa-dev] [PATCH] clover: work around altivec build failure with GNU C++ and -std=c++

2013-08-26 Thread Chí-Thanh Christopher Nguyễn
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68504 Bugzilla: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58241 CC: mesa-sta...@lists.freedesktop.org --- configure.ac | 11 +++ src/gallium/state_trackers/clover/Makefile.am | 2 +- 2 files changed,

Re: [Mesa-dev] [PATCH] mesa: use c99 functions on non-linux platforms if supported

2013-08-25 Thread Chí-Thanh Christopher Nguyễn
rom "support C90 and the C subset of C++" to "support C90, the C subset of C++ and C features that ffmpeg uses". Best regards, Chí-Thanh Christopher Nguyễn ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH] targets/dri-i915: Force c++ linker in all cases

2013-05-06 Thread Chí-Thanh Christopher Nguyễn
Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=461696 --- src/gallium/targets/dri-i915/Makefile.am | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/gallium/targets/dri-i915/Makefile.am b/src/gallium/targets/dri-i915/Makefile.am index f4f9030..ce6be78 100644 --

Re: [Mesa-dev] [PATCH] mesa: Remove C++11 narrowing warnings

2012-08-10 Thread Chí-Thanh Christopher Nguyễn
version 4.2.1. Best regards, Chí-Thanh Christopher Nguyễn ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH v2] gbm: Fix build without gallium_drm_loader

2012-08-09 Thread Chí-Thanh Christopher Nguyễn
pipe_loader_drm_probe_fd only exists if HAVE_PIPE_LOADER_DRM is defined. This addresses https://bugs.freedesktop.org/show_bug.cgi?id=52962 Patch improved as suggested by Vadim A. Misbakh-Soloviov. Signed-off-by: Chí-Thanh Christopher Nguyễn --- src/gallium/targets/gbm/gbm.c |2 ++ 1 files

[Mesa-dev] [PATCH] gbm: Fix build without gallium_drm_loader

2012-08-07 Thread Chí-Thanh Christopher Nguyễn
pipe_loader_drm_probe_fd only exists if HAVE_PIPE_LOADER_DRM is defined. This addresses https://bugs.freedesktop.org/show_bug.cgi?id=52962 --- src/gallium/targets/gbm/gbm.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/gallium/targets/gbm/gbm.c b/src/gallium/targets