Re: [Mesa-dev] [PATCH] r300g: implement GLSL disk shader caching

2019-06-07 Thread Dieter Nützel
Hello Rui, do you have some numbers with/without shader caching enabled, handy? I didn't have r300 hardware anylonger... Thanks! Dieter Am 07.06.2019 13:19, schrieb rsalvate...@gmail.com: From: Rui Salvaterra This implements GLSL disk shader caching for the R300-R500 series of AMD GPUs.

[Mesa-dev] [PATCH] panfrost: Fix stride check when mipmapping

2019-06-07 Thread Alyssa Rosenzweig
Now that we support custom strides on mipmapped lines textures (theoretically, at least), extend the stride check to support mipmaps. Fixes incorrect strides of linear windows in Weston. Signed-off-by: Alyssa Rosenzweig --- src/gallium/drivers/panfrost/pan_context.c | 22 +++---

Re: [Mesa-dev] [PATCH v2 1/3] mapi: add static_date offset to MaxShaderCompilerThreadsKHR

2019-06-07 Thread Dave Airlie
Oops on new ext in master, Reviewed-by: Dave Airlie for the v2 series. On Sat, 8 Jun 2019 at 01:47, Emil Velikov wrote: > > From: Emil Velikov > > As elaborated in the next patch, there is some hidden ABI that > effectively require most entrypoints to be listed in the file. > > Bugzilla: https

[Mesa-dev] [PATCH] panfrost: Enable helper invocations when texturing

2019-06-07 Thread Alyssa Rosenzweig
it turns out we have explicit control over helper invocations; if a particular bit in the fragment shader descriptor is set, helper invocations are launched; if it clear, they are not. Helper invocations are required whenever computing derivatives, whether explicitly (dFdx/dFdy) *or* implicitly (an

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

2019-06-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110697 QwertyChouskie changed: What|Removed |Added URL||https://github.com/tildearr

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

2019-06-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110697 --- Comment #8 from QwertyChouskie --- (In reply to Michel Dänzer from comment #7) > I can't seem to reproduce this (with an AMD GPU and current Git master of > Mesa and xserver). > > When kwin_x11 freezes, can you attach gdb to it, run > > t

[Mesa-dev] [Bug 110468] using swrAVX renders incorrectly at particular resolutions

2019-06-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110468 --- Comment #7 from pal1000 --- Thanks for the very extended test. I'll implement a workaround for it for the next release of mesa-dist-win project. -- You are receiving this mail because: You are the QA Contact for the bug. You are the assign

Re: [Mesa-dev] [PATCH 1/9] intel/blorp: Only double the fast-clear rect alignment on HSW

2019-06-07 Thread Jason Ekstrand
https://gitlab.freedesktop.org/mesa/mesa/merge_requests/1052 I just kicked it off to Jenkins but it was fine last time I did this a year ago. On Fri, May 31, 2019 at 3:55 PM Nanley Chery wrote: > Thanks for reaching out to the HW team. Given that the internal > documentation was updated to set

[Mesa-dev] [Bug 110849] Flickering triangles in OpenGL apps on Radeon KAVERI

2019-06-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110849 Kai-Heng Feng changed: What|Removed |Added CC||kai.heng.f...@canonical.com -- You are

Re: [Mesa-dev] [PATCH] radv: fix alpha-to-coverage when there is unused color attachments

2019-06-07 Thread Bas Nieuwenhuizen
r-b On Thu, Jun 6, 2019 at 4:27 PM Samuel Pitoiset wrote: > > When alphaToCoverage is enabled, we should always write the alpha > channel of MRT0 if it's unused. This now matches RadeonSI. > > This fixes the new CTS: > dEQP-VK.pipeline.multisample.alpha_to_coverage_unused_attachment.samples_*.alp

Re: [Mesa-dev] [PATCH] docs: fixup 19.0.5 <> 19.0.6 confusion

2019-06-07 Thread Dylan Baker
Gah, I keep meaning to automate all of this... Reviewed-by: Dylan Baker Quoting Emil Velikov (2019-06-07 09:16:26) > From: Emil Velikov > > The title of the release notes says 19.0.5 while the rest of the file > (correctly) says 19.0.6 > > Cc: Dylan Baker > Fixes: fe79d75ccf9 ("docs: Add rel

Re: [Mesa-dev] [PATCH] intel_stub: Wrap fcntl64

2019-06-07 Thread Emil Velikov
On Fri, 7 Jun 2019 at 00:30, Ian Romanick wrote: > > From: Ian Romanick > > This makes the wrapper work on glibc 2.29 on Fedora 30. > --- AFAICT this patch is for shader-db and looks spot on. Reviewed-by: Emil Velikov -Emil ___ mesa-dev mailing list m

[Mesa-dev] [PATCH] docs: fixup 19.0.5 <> 19.0.6 confusion

2019-06-07 Thread Emil Velikov
From: Emil Velikov The title of the release notes says 19.0.5 while the rest of the file (correctly) says 19.0.6 Cc: Dylan Baker Fixes: fe79d75ccf9 ("docs: Add relnotes for 19.0.6") Signed-off-by: Emil Velikov --- Aside: Dylan seems like the relnotes were not chery-pick -x hence the reference

[Mesa-dev] [Bug 110252] swr software rasterizer fall back to OpenGL 2.1

2019-06-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110252 Emil Velikov changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Mesa-dev] [PATCH v2 3/3] mapi: correctly handle the full offset table

2019-06-07 Thread Emil Velikov
From: Emil Velikov Earlier commit converted ES1 and ES2 to a new, much simpler, dispatch generator. At the same time, GL/glapi and the driver side are still using the old code. There is a hidden ABI between GL*.so and glapi.so, former referencing entry-points by offset in the _glapi_table. Hence

[Mesa-dev] [PATCH v2 2/3] mapi: add static_date offset to EXT_dsa

2019-06-07 Thread Emil Velikov
From: Emil Velikov As elaborated in the next patch, there is some hidden ABI that effectively require most entrypoints to be listed in the file. Cc: Marek Olšák Fixes: d2906293c43 ("mesa: EXT_dsa add selectorless matrix stackfunctions") Signed-off-by: Emil Velikov --- New patch in v2. v1 was a

[Mesa-dev] [PATCH v2 1/3] mapi: add static_date offset to MaxShaderCompilerThreadsKHR

2019-06-07 Thread Emil Velikov
From: Emil Velikov As elaborated in the next patch, there is some hidden ABI that effectively require most entrypoints to be listed in the file. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110302 Cc: Marek Olšák Fixes: c5c38e831ee ("mesa: implement ARB/KHR_parallel_shader_compile") S

Re: [Mesa-dev] [PATCH 2/2] egl: Don't add hardware device if there is no render node.

2019-06-07 Thread Emil Velikov
On Thu, 6 Jun 2019 at 12:10, wrote: > > From: Mathias Fröhlich > > Do not offer a hardware drm backed egl device if no render node > is available. As far as I can see current implementation does _not_ add the DRM device if its missing render node (and a primary one). Looking at the change below,

Re: [Mesa-dev] [PATCH] panfrost: ci: Switch from direct Docker use to buildah

2019-06-07 Thread Alyssa Rosenzweig
A-b, I think. Nice :) signature.asc Description: PGP signature ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 1/2] panfrost: ci: Switch to kernel 5.2-rc1

2019-06-07 Thread Tomeu Vizoso
On Fri, 7 Jun 2019 at 09:51, Eduardo Lima Mitev wrote: > > On 5/20/19 11:33 AM, Tomeu Vizoso wrote: > > Signed-off-by: Tomeu Vizoso > > --- > > src/gallium/drivers/panfrost/ci/Dockerfile | 7 +++ > > 1 file changed, 3 insertions(+), 4 deletions(-) > > > > diff --git a/src/gallium/drivers/pan

[Mesa-dev] [PATCH] panfrost: ci: Switch from direct Docker use to buildah

2019-06-07 Thread Tomeu Vizoso
Use the infrastructure in wayland/ci-templates to build the container images. This prevents from getting into some situations in which the images wouldn't be rebuilt, and allows us to share some infrastructure with other projects in freedesktop.org. Signed-off-by: Tomeu Vizoso Suggested-by: Mich

[Mesa-dev] [PATCH] r300g: implement GLSL disk shader caching

2019-06-07 Thread rsalvaterra
From: Rui Salvaterra This implements GLSL disk shader caching for the R300-R500 series of AMD GPUs. Signed-off-by: Rui Salvaterra --- src/gallium/drivers/r300/r300_screen.c | 38 +- src/gallium/drivers/r300/r300_screen.h | 3 ++ 2 files changed, 40 insertions(+), 1 del

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

2019-06-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110697 Michel Dänzer changed: What|Removed |Added Component|Drivers/X11 |GLX --- Comment #7 from Michel Dänzer

[Mesa-dev] [Bug 110811] radv: Assassin's Creed Unity glitches when compiled with recent LLVM 9 (DXVK)

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

Re: [Mesa-dev] [PATCH 1/2] panfrost: ci: Switch to kernel 5.2-rc1

2019-06-07 Thread Eduardo Lima Mitev
On 5/20/19 11:33 AM, Tomeu Vizoso wrote: > Signed-off-by: Tomeu Vizoso > --- > src/gallium/drivers/panfrost/ci/Dockerfile | 7 +++ > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/src/gallium/drivers/panfrost/ci/Dockerfile > b/src/gallium/drivers/panfrost/ci/Dockerfile > i

Re: [Mesa-dev] [PATCH 2/2] panfrost: ci: Avoid pulling Docker image on every run

2019-06-07 Thread Tomeu Vizoso
On 6/6/19 6:10 PM, Michel Dänzer wrote: On 2019-05-20 11:33 a.m., Tomeu Vizoso wrote: Jump over the container stage if we haven't changed any of the files that involved in building the container images. This saves 1-2 minutes in each run and helps conserve resources. Signed-off-by: Tomeu Vizos