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

2019-05-17 Thread Juan A. Suarez Romero
On Fri, 2019-05-10 at 01:19 -0400, Marek Olšák wrote: > From: Marek Olšák > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108824 > > Cc: 19.1 Hi, Marek, This patch didn't apply cleanly on 19.1 branch, so I've fixed the conflicts. You can find the solved patch in https://gitlab.fr

Re: [Mesa-dev] [PATCH 3/4] imgui: fix undefined behaviour bitshift.

2019-05-17 Thread Lionel Landwerlin
Reviewed-by: Lionel Landwerlin And reported upstream : https://github.com/ocornut/imgui/pull/2561 On 17/05/2019 03:22, Dave Airlie wrote: From: Dave Airlie imgui_draw.cpp:1781: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour Reported by coverit

[Mesa-dev] [Bug 109659] Missing OpenGL symbols in OSMesa Gallium when building with meson

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109659 --- Comment #2 from Chuck Atkins --- I can confirm that the proposed patch, https://lists.freedesktop.org/archives/mesa-dev/2019-May/218700.html, fixes the bug. Please add Tested-by: Chuck Atkins . This should also go to all stable branches an

Re: [Mesa-dev] [PATCH] docs/features: don't list EXT extensions in a list for KHR/ARB/OES extensions

2019-05-17 Thread Eric Engestrom
On 2019-05-16 at 18:34, Ian Romanick wrote: > On 5/15/19 7:39 AM, Gert Wollny wrote: > > How about moving these extensions to another (new) section? I think it > > is nice to have a one-stop place to find out what is supported. > > Given the existence of mesamatrix.net, is that useful? mesamatr

[Mesa-dev] [PATCH] radeonsi: Fix editorconfig

2019-05-17 Thread Connor Abbott
At least on vim, indenting doesn't work without this. Copied from src/amd/vulkan. --- src/gallium/drivers/radeonsi/.editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/radeonsi/.editorconfig b/src/gallium/drivers/radeonsi/.editorconfig index cc8e11ffd65..21a3c7d12

[Mesa-dev] [Bug 109560] Sometimes VLC player process gets stuck in memory after closure if video output used is Auto or OpenGL

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109560 --- Comment #7 from Michel Dänzer --- (In reply to Michel Dänzer from comment #6) > Not sure yet if this Mesa's fault (maybe it missed the event while the context > wasn't current), or maybe the X server failed to send an event when it should >

Re: [Mesa-dev] [PATCH] docs/features: don't list EXT extensions in a list for KHR/ARB/OES extensions

2019-05-17 Thread Ian Romanick
On 5/17/19 6:24 AM, Eric Engestrom wrote: > On 2019-05-16 at 18:34, Ian Romanick wrote: >> On 5/15/19 7:39 AM, Gert Wollny wrote: >>> How about moving these extensions to another (new) section? I think it >>> is nice to have a one-stop place to find out what is supported. >> >> Given the existenc

[Mesa-dev] XDC 2019: Registration & Call for Proposals now open!

2019-05-17 Thread Mark Filion
Hello! Registration & Call for Proposals are now open for XDC 2019, which will take place at the Concordia University Conference Centre in Montréal, Canada on October 2-4, 2019. Thanks to LWN.net, this year we have a brand new website using the Indico platform, a fully open source event managemen

[Mesa-dev] [Bug 109659] Missing OpenGL symbols in OSMesa Gallium when building with meson

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109659 --- Comment #3 from Chuck Atkins --- I spoke a little too soon but I think this patch is still okay. llvmpipe and softpipe work fine but swr is mysteriously broken. What I don't know is if swr is broken with osmesa because of this or something

Re: [Mesa-dev] undefined behaviour in spirv_to_nir.c

2019-05-17 Thread Jason Ekstrand
I'm not convinced that code is correct. In particular, the bit_size value is for the destination and not necessarily that one source. As Karol points out, it probably is safe to just delete. However, I'd feel slightly better about it if we figured out the right bit size and just called nir_eval_

[Mesa-dev] [Bug 109183] GPU Hangs randomly with GTA V

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109183 --- Comment #10 from Alexander Vereeken --- ehm... could this releated to the old gnome version 3.24? Since my distro upgraded gnome to 3.3.0, i never got this freeze again. -- You are receiving this mail because: You are the assignee for the

Re: [Mesa-dev] undefined behaviour in spirv_to_nir.c

2019-05-17 Thread Karol Herbst
well, the code was required for the old style load_const as we unioned the arrays. But now that the load_const data is just one 64 bit value and we 0 out untouched bits I am quite sure we don't have to adjust the bit size of the shift anymore? Although I would feel better if we would have some expl

[Mesa-dev] [PATCH] radeonsi: clean up winsys creation

2019-05-17 Thread Marek Olšák
From: Marek Olšák - unify the code - choose radeon or amdgpu based on the DRM version, not based on which one succeeds first --- .../auxiliary/target-helpers/drm_helper.h | 13 ++--- src/gallium/drivers/radeonsi/si_pipe.c| 27 +-- src/gallium/drivers/radeonsi/si

Re: [Mesa-dev] [PATCH] docs/features: don't list EXT extensions in a list for KHR/ARB/OES extensions

2019-05-17 Thread Marek Olšák
Out-of-tree TODO lists would be more convenient for tracking non-core features. Marek On Fri, May 17, 2019 at 1:45 PM Ian Romanick wrote: > On 5/17/19 6:24 AM, Eric Engestrom wrote: > > On 2019-05-16 at 18:34, Ian Romanick wrote: > >> On 5/15/19 7:39 AM, Gert Wollny wrote: > >>> How about movi

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

2019-05-17 Thread Marek Olšák
Thanks. It looks good. Marek On Fri, May 17, 2019 at 3:56 AM Juan A. Suarez Romero wrote: > On Fri, 2019-05-10 at 01:19 -0400, Marek Olšák wrote: > > From: Marek Olšák > > > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108824 > > > > Cc: 19.1 > > Hi, Marek, > > This patch didn't a

[Mesa-dev] [Bug 110116] Neverball particles are broken (GL_POINT_SPRITE)

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110116 QwertyChouskie changed: What|Removed |Added Status|NEEDINFO|RESOLVED Resolution|---

[Mesa-dev] [PATCH] radeon/vcn: fix max poc for hevc encode

2019-05-17 Thread boyuan.zhang
From: Boyuan Zhang Fix max poc value with hardcoded value until new feature requires to change this in the future. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110673 Cc: mesa-sta...@lists.freedesktop.org Signed-off-by: Boyuan Zhang --- src/gallium/drivers/radeon/radeon_vcn_enc.c

[Mesa-dev] [PATCH] radeon/uvd: fix max poc for hevc encode

2019-05-17 Thread boyuan.zhang
From: Boyuan Zhang Fix max poc value with hardcoded value until new feature requires to change this in the future. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110673 Cc: mesa-sta...@lists.freedesktop.org Signed-off-by: Boyuan Zhang --- src/gallium/drivers/radeon/radeon_uvd_enc.c

[Mesa-dev] [Bug 110673] amdgpu hevc encoding problems: segment fault and contents of garbage

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110673 --- Comment #1 from Boyuan Zhang --- Hi Zhoulei, Thanks for pointing out these 2 issues. I reproduced issue#1, and have a fix submitted for code review: https://lists.freedesktop.org/archives/mesa-dev/2019-May/219392.html Please give a try.

[Mesa-dev] [Bug 110697] glXWaitForMscOML and glXWaitVideoSyncSGI may block indefinitely

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110697 acc12345...@gmail.com changed: What|Removed |Added Component|Drivers/DRI/i965|Drivers/X11 Assignee|i

[Mesa-dev] [Bug 110699] Shader-based MJPEG decoding

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110699 --- Comment #1 from Andrew Randrianasulu --- There also were OpenCL patches for libjpeg-turbo, but they remain unintegrated. https://sourceforge.net/p/libjpeg-turbo/patches/40/ Patches so big because they include CL headers! -- You are receiv

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

2019-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110345 --- Comment #36 from ant...@gmx.de --- Just as an update the issue in Far Cry New Dawn doesn't seem to occur when using mesa 19.0.4 and llvm8 from the official arch repo. -- You are receiving this mail because: You are the assignee for the bug.