Re: [Mesa-dev] Building error in android-x86 due to recent mesa commit

2019-03-16 Thread Mauro Rossi
Hi Bas, many thanks Mauro On Sat, Mar 16, 2019 at 11:02 PM Bas Nieuwenhuizen wrote: > > Should be fixed when > > https://gitlab.freedesktop.org/mesa/mesa/merge_requests/456 > > is merged. > > On Sat, Mar 16, 2019 at 10:16 PM Mauro Rossi wrote: > > > > Hi Marek, > > > > I'm getting the following

Re: [Mesa-dev] Building error in android-x86 due to recent mesa commit

2019-03-16 Thread Bas Nieuwenhuizen
Should be fixed when https://gitlab.freedesktop.org/mesa/mesa/merge_requests/456 is merged. On Sat, Mar 16, 2019 at 10:16 PM Mauro Rossi wrote: > > Hi Marek, > > I'm getting the following building error after commit [1] > but I don't understand why. > > Mauro > >

[Mesa-dev] Building error in android-x86 due to recent mesa commit

2019-03-16 Thread Mauro Rossi
Hi Marek, I'm getting the following building error after commit [1] but I don't understand why. Mauro external/mesa/src/gallium/drivers/radeonsi/si_compute.c:807:8: error: initializing 'uint *' (aka 'unsigned int *') with an expression of type 'uint const[3]' discards qualifiers

[Mesa-dev] [Bug 110141] glesv1_cm.pc and glesv2.pc missing after b01524fff05eef66e8cd24f1c5aacefed4209f03

2019-03-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110141 LoneVVolf changed: What|Removed |Added CC||lonew...@xs4all.nl -- You are receiving

Re: [Mesa-dev] [PATCH] vulkan/util: meson build - add wayland client include

2019-03-16 Thread Lionel Landwerlin
There is merge request opened about this issue : https://gitlab.freedesktop.org/mesa/mesa/merge_requests/429 I think the deps need to be moved from src/vulkan/wsi/meson.build into src/vulkan/meson.build as they apply to the overlay, utils & wsi. Thanks, -Lionel On 16/03/2019 18:56, Tobias

Re: [Mesa-dev] [PATCH v5] etnaviv: fix resource usage tracking across different pipe_context's

2019-03-16 Thread Marek Vasut
On 2/22/19 10:30 AM, Boris Brezillon wrote: > On Thu, 21 Feb 2019 23:29:53 +0100 > Boris Brezillon wrote: > >> Christian, Marek, >> >> On Wed, 30 Jan 2019 05:28:14 +0100 >> Marek Vasut wrote: >> >>> From: Christian Gmeiner >>> >>> A pipe_resource can be shared by all the pipe_context's hanging

[Mesa-dev] [PATCH] vulkan/util: meson build - add wayland client include

2019-03-16 Thread Tobias Klausmann
Without this the build breaks with: In file included from ../src/vulkan/util/vk_util.h:32, from ../src/vulkan/util/vk_util.c:28: ../include/vulkan/vulkan.h:51:10: fatal error: wayland-client.h: No such file or directory #include ^~ compilation

[Mesa-dev] [Bug 110141] glesv1_cm.pc and glesv2.pc missing after b01524fff05eef66e8cd24f1c5aacefed4209f03

2019-03-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110141 Bug ID: 110141 Summary: glesv1_cm.pc and glesv2.pc missing after b01524fff05eef66e8cd24f1c5aacefed4209f03 Product: Mesa Version: unspecified Hardware: Other

Re: [Mesa-dev] [PATCH 3/9] u_dynarray: add util_dynarray_enlarge

2019-03-16 Thread Qiang Yu
On Sat, Mar 16, 2019 at 11:26 AM Caio Marcelo de Oliveira Filho wrote: > > On Sat, Mar 16, 2019 at 09:28:48AM +0800, Qiang Yu wrote: > > This is for the case that user only know a max size > > it wants to append to the array and enlarge the array > > capacity before writing into it. > > > >