[Mesa-dev] [PATCH] spirv: s/{}/{0}/ initializer to fix MSVC build

2019-11-11 Thread Brian Paul
Trivial. --- src/compiler/spirv/vtn_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c index 944d1f0..37ad4f2 100644 --- a/src/compiler/spirv/vtn_variables.c +++

[Mesa-dev] [Bug 111269] GFX10: "Random" GPU hangs with Rise Of The Tomb Raider

2019-11-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111269 lptech1...@gmail.com changed: What|Removed |Added CC||lptech1...@gmail.com -- You are

[Mesa-dev] [PATCH] nir: fix a couple signed/unsigned comparison warnings in nir_builder.h

2019-11-11 Thread Brian Paul
--- src/compiler/nir/nir_builder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/nir/nir_builder.h b/src/compiler/nir/nir_builder.h index de00fe7..aed4759 100644 --- a/src/compiler/nir/nir_builder.h +++ b/src/compiler/nir/nir_builder.h @@ -782,7 +782,7 @@

[Mesa-dev] [PATCH] s/APIENTRY/GLAPIENTRY/ in teximage.c

2019-11-11 Thread Brian Paul
The later is the right symbol for entrypoint functions. --- src/mesa/main/texgetimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index e43f336..d6ec4c5 100644 --- a/src/mesa/main/texgetimage.c +++

Re: [Mesa-dev] [PATCH] llvmpipe: Check thread creation errors

2019-11-11 Thread Nathan Kidd
Thanks. I'll have to rely on someone with a commit bit to push this. On 2019-11-10 4:55 p.m., Roland Scheidegger wrote: > Looks great to me. > Reviewed-by: Roland Scheidegger > > Am 08.11.19 um 23:05 schrieb Nathan Kidd: >> In the case of glibc, pthread_t is internally a pointer. If >>

Re: [Mesa-dev] [PATCH] egl: Mention if swrast is being forced

2019-11-11 Thread Erik Faye-Lund
On Mon, 2019-11-11 at 10:44 +0200, Martin Peres wrote: > On 31/10/2019 09:35, Chris Wilson wrote: > > The system can be disabling HW acceleration unbeknowst to the user, > > leading to a long debug session trying to work out which component > > is > > failing. A quick mention that it is the

Re: [Mesa-dev] [PATCH] egl: Mention if swrast is being forced

2019-11-11 Thread Martin Peres
On 31/10/2019 09:35, Chris Wilson wrote: > The system can be disabling HW acceleration unbeknowst to the user, > leading to a long debug session trying to work out which component is > failing. A quick mention that it is the environment override would be > very useful. > --- >