[Mesa-dev] [RFC 1/2] mesa: utils: provide alternate default config mechanism

2019-05-09 Thread Sumit Semwal
Core mesa uses libexpat to parse default configuration information stored as xml in header files. This potentially allows userspaces to supply their own configuration information, without a need to rebuild. However, for userspaces that don't want or need to allow external configuration, libexpat a

[Mesa-dev] [RFC 0/2] Alternate default config mechanism

2019-05-09 Thread Sumit Semwal
Mesa uses libexpat for many configuration parsing needs; however some userspaces like Android may not want to use libexpat for various reasons - eg some might restrict reading of any config xml files from filesystems. This patchset proposes a simple lookup mechanism for the default values as per c

[Mesa-dev] [RFC 2/2] mesa: Android: enable altxmlconfig for O+

2019-05-09 Thread Sumit Semwal
Android version O and later would like to use altxmlconfig instead of libexpat based parsing. We enable altxmlconfig instead of xmlconfig.c for Android O+. Change-Id: Iaa51b2a1e9c16a1fdf6f120104429b19dc68f9eb Signed-off-by: Sumit Semwal --- src/gallium/targets/dri/Android.mk | 8 +++- src/

Re: [Mesa-dev] [PATCH 08/11] panfrost: ci: Skip running some tests

2019-05-09 Thread Tomeu Vizoso
On Thu, 9 May 2019 at 17:16, Emil Velikov wrote: > > On Thu, 9 May 2019 at 07:35, Tomeu Vizoso wrote: > > > > These tests add too much time to the total run time, and some of them > > even hang the DUTs, even if I haven't been able to reproduce it locally. > > > > Signed-off-by: Tomeu Vizoso > >

[Mesa-dev] [PATCH 1/3] winsys/amdgpu: report a CS rejection as a reset only if there's no GPU reset

2019-05-09 Thread Marek Olšák
From: Marek Olšák --- src/gallium/winsys/amdgpu/drm/amdgpu_cs.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c index 4a2377f7e09..5b840caf885 100644 --- a/src/gallium/winsys/am

[Mesa-dev] [PATCH 2/2] ac: use 1D GEPs for descriptors and constants

2019-05-09 Thread Marek Olšák
From: Marek Olšák just a cleanup --- src/amd/common/ac_llvm_build.c| 15 ++- src/amd/common/ac_nir_to_llvm.c | 2 +- src/amd/vulkan/radv_nir_to_llvm.c | 8 +--- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/amd/common/ac_llvm_build.c b/src/amd/commo

[Mesa-dev] [PATCH 3/3] r600+radeonsi: use ctx_query_reset_status on radeon

2019-05-09 Thread Marek Olšák
From: Marek Olšák This allows a nice cleanup, because the winsys always handles it. --- src/amd/common/ac_gpu_info.c | 2 -- src/amd/common/ac_gpu_info.h | 1 - src/gallium/drivers/r600/r600_pipe_common.c | 16 ++- src/gallium/drivers/r600/r600_pipe_

[Mesa-dev] [PATCH 1/2] radeonsi: remove old_va parameter from si_rebind_buffer by remembering offsets

2019-05-09 Thread Marek Olšák
From: Marek Olšák This is a prerequisite for the next commit. Cc: 19.1 --- src/gallium/drivers/radeonsi/si_buffer.c | 7 +-- src/gallium/drivers/radeonsi/si_descriptors.c | 54 --- src/gallium/drivers/radeonsi/si_state.h | 4 +- 3 files changed, 25 insertions(+), 4

[Mesa-dev] [PATCH 2/3] winsys/radeon: implement ctx_query_reset_status by copying radeonsi

2019-05-09 Thread Marek Olšák
From: Marek Olšák To make it behave like amdgpu. I'm just trying to move this out of radeonsi. The radeonsi code will be removed in the next commit. --- src/gallium/winsys/radeon/drm/radeon_drm_cs.c | 29 +++ src/gallium/winsys/radeon/drm/radeon_drm_cs.h | 5 .../winsys/rad

[Mesa-dev] [PATCH 2/2] radeonsi: update buffer descriptors in all contexts after buffer invalidation

2019-05-09 Thread Marek Olšák
From: Marek Olšák Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108824 Cc: 19.1 --- src/gallium/drivers/radeonsi/si_descriptors.c | 94 --- src/gallium/drivers/radeonsi/si_pipe.h| 2 + src/gallium/drivers/radeonsi/si_state_draw.c | 9 +- 3 files changed, 72

[Mesa-dev] [PATCH 1/2] Change a few frequented uses of DEBUG to !NDEBUG

2019-05-09 Thread Marek Olšák
From: Marek Olšák debugoptimized builds don't define NDEBUG, but they also don't define DEBUG. We want to enable cheap debug code for these builds. I only chose those occurences that I care about. --- src/gallium/auxiliary/tgsi/tgsi_ureg.c | 2 +- src/gallium/drivers/radeonsi/si_des

[Mesa-dev] [PATCH 2/2] st/mesa: enable the ST_DEBUG env var in release and debugoptimized builds

2019-05-09 Thread Marek Olšák
From: Marek Olšák Useful for dumping shaders. --- src/mesa/state_tracker/st_debug.c | 4 src/mesa/state_tracker/st_debug.h | 6 -- 2 files changed, 10 deletions(-) diff --git a/src/mesa/state_tracker/st_debug.c b/src/mesa/state_tracker/st_debug.c index 27d50a17e5e..7faffb581ef 100644

[Mesa-dev] [PATCH 1/2] ac: match radeonsi code in ac_shader_binary_read_config

2019-05-09 Thread Marek Olšák
From: Marek Olšák --- src/amd/common/ac_binary.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/amd/common/ac_binary.c b/src/amd/common/ac_binary.c index fabeb15a204..8f4755ebe16 100644 --- a/src/amd/common/ac_binary.c +++ b/src/amd/common/ac_binary.c @@ -281,25 +2

Re: [Mesa-dev] [PATCH 10/10] radeonsi: use the new run-time linker for shaders

2019-05-09 Thread Marek Olšák
The second half of si_shader_create that merges configs is now redundant, isn't it? I think the spi_ps_input_* stuff from patch 3 will also impact this patch, right? Patches 1-2, 5-9: Reviewed-by: Marek Olšák Marek ___ mesa-dev mailing list mesa-dev@

[Mesa-dev] nir_opt_copy_prop_vars doing the wrong thing

2019-05-09 Thread Dave Airlie
I've got a bunch of cases where copy prop vars is getting things wrong around casts, it finds a store to an vec2 but ends up with the writemask staying at 0x3 but the item being store being a single 64-bit. Debug is attached below. Dave. nir_lower_memcpy_deref shader: MESA_SHADER_KERNEL local-si

Re: [Mesa-dev] [PATCH 03/10] amd/common: add a more powerful runtime linker

2019-05-09 Thread Marek Olšák
I'd like the beginning of the .c or .h file to describe what this is good for, as it's not immediately obvious from the code. See also below. On Fri, May 3, 2019 at 7:19 AM Nicolai Hähnle wrote: > From: Nicolai Hähnle > > Using an explicit linker instead of just concatenating .text > sections

[Mesa-dev] [ANNOUNCE] mesa 19.0.4

2019-05-09 Thread Dylan Baker
Hi list, Sorry I'm running a bit behind with this release, I was sick on Monday and had to patch up some autotools problems in the mean time. It's been a pretty active release, esepcially for how late in the cyle we are. Radv was the busiest componenet, but there were also a few changes for intel

Re: [Mesa-dev] [PATCH] intel/fs/ra: Stop adding RA interference to too many SENDS nodes

2019-05-09 Thread Matt Turner
Heh, interesting! ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [Bug 110345] Unrecoverable GPU crash with DiRT 4

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110345 --- Comment #20 from Thomas Rohloff --- (In reply to Samuel Pitoiset from comment #18) > What graphics settings are you using? Can you eventually record a video of > the Video panel? That way I could try again with the same settings as you. I m

[Mesa-dev] [PATCH] etnaviv: use the correct uniform dirty bits

2019-05-09 Thread Christian Gmeiner
Found during code inspection. Cc: mesa-sta...@lists.freedesktop.org Signed-off-by: Christian Gmeiner --- src/gallium/drivers/etnaviv/etnaviv_emit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/etnaviv/etnaviv_emit.c b/src/gallium/drivers/etnaviv/et

Re: [Mesa-dev] [PATCH 1/7] compiler: Add enums for blend state

2019-05-09 Thread Alyssa Rosenzweig
> Interesting, I wouldn't have split blend_factor from inverting the > factor. I'm fine with it, though. The rationale was that the code logic needs it split anyway, so the split has to happen in one place or another... at least this way there's less redundant enum'ing. TBH, I'd prefer Gallium ha

[Mesa-dev] [Bug 110345] Unrecoverable GPU crash with DiRT 4

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110345 --- Comment #19 from Cameron Banfield --- Cities: Skylines will crash in the same way (but on Ryzen PRO 7 2700U Vega 10) so might help with re-producing and testing? This is guaranteed to crash every time just by loading a map. Have tested wit

Re: [Mesa-dev] [PATCH 2/7] gallium: Add helper to convert PIPE blending to shader_enum style

2019-05-09 Thread Eric Anholt
Alyssa Rosenzweig writes: > Complementing the new API-agnostic shader_enum blending style, we add > helpers to translate between the two forms. Ideally, we could just use > PIPE blending directly, but that makes Vulkan support challenging. > > Signed-off-by: Alyssa Rosenzweig > Cc: Eric Anholt

Re: [Mesa-dev] [PATCH 1/7] compiler: Add enums for blend state

2019-05-09 Thread Eric Anholt
Alyssa Rosenzweig writes: > We add enums corresponding to (GLES) blend state to shader_enums.h, > complementing the existing advanced blending enums in the file. This > allows us to represent blending state in a driver-agnostic, API-agnostic > way to permit lowering. > > Signed-off-by: Alyssa Ros

Re: [Mesa-dev] [PATCH 4/7] nir: Add nir_lower_blend pass

2019-05-09 Thread Eric Anholt
Alyssa Rosenzweig writes: >> Logic ops seem... challenging to emulate in the shader. That shader >> would need the destination colors in the framebuffer storage format, and >> I'm not sure that's always possible (maybe?). > > Alright, that's good to know. > > I will note that in Midgard, the na

[Mesa-dev] [PATCH] vl/dri3: set back buffer from output to NULL with front buffer case

2019-05-09 Thread Liu, Leo
Since the using output optimization is only for back buffer case Signed-off-by: Leo Liu --- src/gallium/auxiliary/vl/vl_winsys_dri3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/auxiliary/vl/vl_winsys_dri3.c b/src/gallium/auxiliary/vl/vl_winsys_dri3.c index 1558d832555..77d1

[Mesa-dev] [Bug 110655] VK_LAYER_MESA_OVERLAY_CONFIG=draw, fps renders sporadically

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110655 --- Comment #4 from Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0...@gmail.com> --- (In reply to Lionel Landwerlin from comment #3) > https://gitlab.freedesktop.org/mesa/mesa/merge_requests/853/ I confirm that the patch resolves the issue. Tha

Re: [Mesa-dev] [Mesa-stable] [PATCH] configure.ac: check for libdrm when using VL with X11

2019-05-09 Thread Dylan Baker
Quoting Emil Velikov (2019-05-09 03:30:14) > On Wed, 8 May 2019 at 00:48, Dylan Baker wrote: > > > > Quoting Alyssa Ross (2019-05-07 06:17:15) > > > On Mon, May 06, 2019 at 04:38:20PM -0700, Alyssa Rosenzweig wrote: > > > > Wrong Alyssa, cc'ing the right one :) > > > > > > Thank you for the CC, fe

[Mesa-dev] [Bug 110655] VK_LAYER_MESA_OVERLAY_CONFIG=draw, fps renders sporadically

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110655 --- Comment #3 from Lionel Landwerlin --- (In reply to Lionel Landwerlin from comment #2) > https://bugs.freedesktop.org/show_bug.cgi?id=110655 Derp... https://gitlab.freedesktop.org/mesa/mesa/merge_requests/853/ -- You are receiving this mai

[Mesa-dev] [Bug 110655] VK_LAYER_MESA_OVERLAY_CONFIG=draw, fps renders sporadically

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110655 --- Comment #2 from Lionel Landwerlin --- https://bugs.freedesktop.org/show_bug.cgi?id=110655 -- You are receiving this mail because: You are the assignee for the bug.___ mesa-dev mailing list mesa-d

[Mesa-dev] [Bug 77449] Tracker bug for all bugs related to Steam titles

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77449 Bug 77449 depends on bug 98272, which changed state. Bug 98272 Summary: Europa Universalis IV, Hearts of Iron IV, and Stellaris fail to display anything on XWayland https://bugs.freedesktop.org/show_bug.cgi?id=98272 What|Removed

[Mesa-dev] [Bug 110345] Unrecoverable GPU crash with DiRT 4

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110345 --- Comment #18 from Samuel Pitoiset --- What graphics settings are you using? Can you eventually record a video of the Video panel? That way I could try again with the same settings as you. -- You are receiving this mail because: You are the

[Mesa-dev] [Bug 110539] radv: OBS video capture broken by anti-aliasing in Vulkan games after upgrade to Mesa 19

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110539 --- Comment #2 from Samuel Pitoiset --- Can you reproduce the problem without OBS? -- You are receiving this mail because: You are the QA Contact for the bug. You are the assignee for the bug.___ mes

Re: [Mesa-dev] [PATCH] etnaviv: fill missing offset in etna_resource_get_handle

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 14:53, Christian Gmeiner wrote: > > Am Fr., 3. Mai 2019 um 12:05 Uhr schrieb Philipp Zabel > : > > > > Without this gbm_bo_get_offset() can return 0 where it shouldn't. > > Reviewed-by: Christian Gmeiner > Nice catch. Please include the stable tag so we get this in the 19.0

Re: [Mesa-dev] [PATCH 00/11] panfrost: ci: RK3288 support and misc robustness

2019-05-09 Thread Alyssa Rosenzweig
Patches 1-9 and 11 are: Reviewed-by: Alyssa Rosenzweig Exciting to see progress on CI on more devices... it's always an option (if an annoying run) to run tests on a single dev device locally, but supporting 2 devices at once!? CI truly is magic ;) Here's to not regressing RK3288 suppor

Re: [Mesa-dev] [PATCH] panfrost: Add CAPFs for conservative rasterization

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 13:09, Tomeu Vizoso wrote: > > Just do what everybody else but Nouveau does and return 0.0f. > > This prevents the repeated logging of these messages on startup: > > Unexpected PIPE_CAPF 6 query > Unexpected PIPE_CAPF 7 query > Unexpected PIPE_CAPF 8 query > > Signed-off-by:

Re: [Mesa-dev] [PATCH] panfrost: Add CAPFs for conservative rasterization

2019-05-09 Thread Alyssa Rosenzweig
R-b, nice catch :) ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 08/11] panfrost: ci: Skip running some tests

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 07:35, Tomeu Vizoso wrote: > > These tests add too much time to the total run time, and some of them > even hang the DUTs, even if I haven't been able to reproduce it locally. > > Signed-off-by: Tomeu Vizoso > --- > src/gallium/drivers/panfrost/ci/deqp-runner.sh | 2 ++ > 1

Re: [Mesa-dev] [PATCH 10/11] st/glsl_to_nir: Fix uninitialized access

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 15:49, Emil Velikov wrote: > > On Thu, 9 May 2019 at 07:35, Tomeu Vizoso wrote: > > > > NIR_PASS will only set lower_flrp_progress if there's progress, and if > > there isn't its value will be undefined. > > > > Fixes this Valgrind error: > > > > ==6589== Conditional jump or

Re: [Mesa-dev] [PATCH 11/11] panfrost: Only take the fast paths on buffers aligned to block size

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 07:36, Tomeu Vizoso wrote: > > As the functions operate on 16-byte blocks. > > Fixes this Valgrind error: > > Invalid read of size 4 >at 0x5857568: swizzle_bpp1_align16 (pan_swizzle.c:85) >by 0x585780F: panfrost_texture_swizzle (pan_swizzle.c:171) >by 0x584F587: p

Re: [Mesa-dev] [PATCH 10/11] st/glsl_to_nir: Fix uninitialized access

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 07:35, Tomeu Vizoso wrote: > > NIR_PASS will only set lower_flrp_progress if there's progress, and if > there isn't its value will be undefined. > > Fixes this Valgrind error: > > ==6589== Conditional jump or move depends on uninitialised value(s) > ==6589==at 0x55CA7E6:

Re: [Mesa-dev] [PATCH 09/11] panfrost: Fix two uninitialized accesses in compiler

2019-05-09 Thread Emil Velikov
On Thu, 9 May 2019 at 07:35, Tomeu Vizoso wrote: > > Valgrind was complaining of those. > > NIR_PASS only sets progress to TRUE if there was progress. > > nir_const_load_to_arr() only sets as many constants as components has > the instruction. > > This was causing some dEQP tests to flip-flop, suc

[Mesa-dev] [Bug 108900] [KBL-G][Vulkan] Non-recoverable GPU hangs with GfxBench v5 Aztec Ruins Vulkan test

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108900 --- Comment #15 from Alex Deucher --- (In reply to Eero Tamminen from comment #14) > > After looking at kernel firmware repo, I wonder whether the problem is > firmware: > > https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmw

[Mesa-dev] [Bug 108900] [KBL-G][Vulkan] Non-recoverable GPU hangs with GfxBench v5 Aztec Ruins Vulkan test

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108900 Eero Tamminen changed: What|Removed |Added Status|RESOLVED|VERIFIED --- Comment #14 from Eero Tamm

[Mesa-dev] [Bug 110655] VK_LAYER_MESA_OVERLAY_CONFIG=draw, fps renders sporadically

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110655 --- Comment #1 from Lionel Landwerlin --- Thanks, looks like it's incorrectly reusing semaphores. Will fix. -- You are receiving this mail because: You are the assignee for the bug.___ mesa-dev maili

Re: [Mesa-dev] [PATCH] etnaviv: fill missing offset in etna_resource_get_handle

2019-05-09 Thread Christian Gmeiner
Am Fr., 3. Mai 2019 um 12:05 Uhr schrieb Philipp Zabel : > > Without this gbm_bo_get_offset() can return 0 where it shouldn't. Reviewed-by: Christian Gmeiner > --- > src/gallium/drivers/etnaviv/etnaviv_resource.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/gallium/drivers/etnav

[Mesa-dev] [Bug 110655] VK_LAYER_MESA_OVERLAY_CONFIG=draw, fps renders sporadically

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110655 Bug ID: 110655 Summary: VK_LAYER_MESA_OVERLAY_CONFIG=draw,fps renders sporadically Product: Mesa Version: git Hardware: Other OS: All Status: N

[Mesa-dev] [Bug 110654] vulkan-overlay: overlay.cpp fails to build

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110654 Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0...@gmail.com> changed: What|Removed |Added Status|NEW

[Mesa-dev] [Bug 110654] vulkan-overlay: overlay.cpp fails to build

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110654 --- Comment #1 from Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0...@gmail.com> --- This seems to be a duplicate of issue 110606. -- You are receiving this mail because: You are the assignee for the bug.___

[Mesa-dev] [Bug 110654] vulkan-overlay: overlay.cpp fails to build

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110654 Bug ID: 110654 Summary: vulkan-overlay: overlay.cpp fails to build Product: Mesa Version: 19.1 Hardware: Other OS: All Status: NEW Severity: normal

[Mesa-dev] [PATCH] panfrost: Add CAPFs for conservative rasterization

2019-05-09 Thread Tomeu Vizoso
Just do what everybody else but Nouveau does and return 0.0f. This prevents the repeated logging of these messages on startup: Unexpected PIPE_CAPF 6 query Unexpected PIPE_CAPF 7 query Unexpected PIPE_CAPF 8 query Signed-off-by: Tomeu Vizoso --- src/gallium/drivers/panfrost/pan_screen.c | 5 ++

[Mesa-dev] [PATCH] etnaviv: calculate load balancing value at link time

2019-05-09 Thread Christian Gmeiner
Move the calculation out of the compiler. Signed-off-by: Christian Gmeiner --- .../drivers/etnaviv/etnaviv_compiler.c| 28 .../drivers/etnaviv/etnaviv_compiler.h| 1 - src/gallium/drivers/etnaviv/etnaviv_shader.c | 32 +-- 3 files changed, 30 in

Re: [Mesa-dev] [Mesa-stable] [PATCH] configure.ac: check for libdrm when using VL with X11

2019-05-09 Thread Emil Velikov
On Wed, 8 May 2019 at 00:48, Dylan Baker wrote: > > Quoting Alyssa Ross (2019-05-07 06:17:15) > > On Mon, May 06, 2019 at 04:38:20PM -0700, Alyssa Rosenzweig wrote: > > > Wrong Alyssa, cc'ing the right one :) > > > > Thank you for the CC, fellow Alyssa! :) > > Ahem, totally meant to do that :-) >

[Mesa-dev] [Bug 110636] [radv] DOOM 2016 particle artifacting

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110636 Samuel Pitoiset changed: What|Removed |Added Resolution|--- |FIXED Status|NEEDINFO

[Mesa-dev] [PATCH] radv: fix setting the number of rectangles when it's dyanmic

2019-05-09 Thread Samuel Pitoiset
We need to know the number of rectangles. This fixes new CTS dEQP-VK.draw.discard_rectangles.dynamic_*. Fixes: 5db0bf99944 ("radv: Implement VK_EXT_discard_rectangles.") Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_pipeline.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletio

[Mesa-dev] [MR] etnaviv: add low level ISA library

2019-05-09 Thread Christian Gmeiner
This MR adds a low level ISA library containing APIs for asm, diasm and meta information. One benefit of moving all this stuff out of the gallium driver is that it opens the door for vulkan. Unit tests are included and the current etnaviv disasm gets replaced with the new one. https://gitlab.freed

[Mesa-dev] [Bug 108900] [KBL-G][Vulkan] Non-recoverable GPU hangs with GfxBench v5 Aztec Ruins Vulkan test

2019-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108900 Samuel Pitoiset changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---