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

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110849 Heiko Schäfer changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [Mesa-stable] [PATCH 3/3] amd: Apply elf relocations and allow code with relocations

2019-06-12 Thread Marek Olšák
FYI, I just pushed the new linker. Marek On Mon, Jun 3, 2019 at 10:39 PM Jan Vesely wrote: > Fixes piglits: > call.cl > calls-larget-struct.cl > calls-struct.cl > calls-workitem-id.cl > realign-stack.cl > tail-calls.cl > > Cc:

[Mesa-dev] [Bug 110709] g_glxglvnddispatchfuncs.c and glxglvnd.c fail to build with clang 8.0

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110709 Sergey Kondakov changed: What|Removed |Added CC||virtuous...@gmail.com --- Comment #2

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

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110697 --- Comment #11 from QwertyChouskie --- (In reply to QwertyChouskie from comment #10) > (In reply to Michel Dänzer from comment #9) > > (In reply to QwertyChouskie from comment #8) > > > I think this was worked around in the current release of

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

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110697 QwertyChouskie changed: What|Removed |Added CC||acc12345...@gmail.com --- Comment #10

[Mesa-dev] [PATCH 1/7] ac/registers: remove deprecated/inapplicable definitions

2019-06-12 Thread Marek Olšák
From: Marek Olšák --- src/amd/registers/amdgfxregs.json | 180 -- 1 file changed, 180 deletions(-) diff --git a/src/amd/registers/amdgfxregs.json b/src/amd/registers/amdgfxregs.json index 371efef7201..23643c3dc7b 100644 --- a/src/amd/registers/amdgfxregs.json +++

[Mesa-dev] [PATCH 6/7] ac/rtld: report better error messages for LDS overallocation

2019-06-12 Thread Marek Olšák
From: Nicolai Hähnle --- src/amd/common/ac_rtld.c | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/amd/common/ac_rtld.c b/src/amd/common/ac_rtld.c index 18f198f8af2..57d6b0151b4 100644 --- a/src/amd/common/ac_rtld.c +++ b/src/amd/common/ac_rtld.c @@ -283,21

[Mesa-dev] [PATCH 2/7] ac/registers: use better names for disambiguated definitions

2019-06-12 Thread Marek Olšák
From: Marek Olšák --- src/amd/registers/makeregheader.py | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/amd/registers/makeregheader.py b/src/amd/registers/makeregheader.py index 859a59b9f3e..1d73cb47bdf 100644 --- a/src/amd/registers/makeregheader.py +++

[Mesa-dev] [PATCH 7/7] radeonsi: don't use the low-optimizing compiler on LLVM 9

2019-06-12 Thread Marek Olšák
From: Marek Olšák The compilation is faster on LLVM 9. --- src/gallium/drivers/radeonsi/si_pipe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index 8527999645b..d2fd058f2cd 100644 ---

[Mesa-dev] [PATCH 3/7] amd/rtld: fix sorting of LDS symbols by alignment

2019-06-12 Thread Marek Olšák
From: Nicolai Hähnle --- src/amd/common/ac_rtld.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/amd/common/ac_rtld.c b/src/amd/common/ac_rtld.c index dc9cc04705b..92020c5f0dd 100644 --- a/src/amd/common/ac_rtld.c +++ b/src/amd/common/ac_rtld.c @@ -123,23 +123,23 @@

[Mesa-dev] [PATCH 5/7] ac/rtld: check correct LDS max size

2019-06-12 Thread Marek Olšák
From: Marek Olšák --- src/amd/common/ac_rtld.c | 8 +++- src/amd/common/ac_rtld.h | 2 ++ src/gallium/drivers/radeonsi/si_shader.c | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/amd/common/ac_rtld.c b/src/amd/common/ac_rtld.c

[Mesa-dev] [PATCH 4/7] radeonsi: add s_sethalt to shaders for debugging

2019-06-12 Thread Marek Olšák
From: Nicolai Hähnle --- src/amd/common/ac_rtld.c| 9 + src/amd/common/ac_rtld.h| 9 + src/gallium/drivers/radeonsi/si_debug_options.h | 1 + src/gallium/drivers/radeonsi/si_shader.c| 3 +++ 4 files changed, 22

[Mesa-dev] [Bug 110884] can't start GDM when building mesa master branch with LTO

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110884 --- Comment #7 from Caio Marcelo de Oliveira Filho --- Candidate MR: https://gitlab.freedesktop.org/mesa/mesa/merge_requests/1090 -- You are receiving this mail because: You are the QA Contact for the

Re: [Mesa-dev] [PATCH 04/10] radeonsi: use ac_shader_config

2019-06-12 Thread Marek Olšák
On Wed, May 8, 2019 at 1:52 AM Marek Olšák wrote: > On Fri, May 3, 2019 at 7:19 AM Nicolai Hähnle wrote: > >> From: Nicolai Hähnle >> >> --- >> src/amd/common/ac_binary.c| 2 + >> src/gallium/drivers/radeonsi/si_compute.c | 14 +-- >>

[Mesa-dev] [Bug 110901] mesa-19.1.0/src/util/futex.h:82: use of out of scope variable ?

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110901 --- Comment #3 from dcb...@hotmail.com --- I found this by using a static analysis tool called cppcheck. I strongly recommend it for all C and C++ code. Not everything it mentions is worth fixing, but it does a deeper code analysis than almost

[Mesa-dev] [PATCH] ac: add radeon_info::is_amdgpu instead of checking drm_major == 3

2019-06-12 Thread Marek Olšák
From: Marek Olšák and clean up --- src/amd/common/ac_gpu_info.c | 13 -- src/amd/common/ac_gpu_info.h | 1 + src/amd/vulkan/radv_debug.c | 5 +- src/gallium/drivers/r600/r600_buffer_common.c | 6 +-- src/gallium/drivers/r600/r600_pipe.c

[Mesa-dev] [Bug 110901] mesa-19.1.0/src/util/futex.h:82: use of out of scope variable ?

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110901 Eric Engestrom changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] mirroring ogl-sample source code in gitlab?

2019-06-12 Thread Adam Jackson
On Wed, 2019-06-12 at 10:29 +0200, Erik Faye-Lund wrote: > On Wed, 2019-06-12 at 10:25 +0200, Erik Faye-Lund wrote: > > On Tue, 2019-06-11 at 12:41 -0400, Adam Jackson wrote: > > > On Tue, 2019-06-11 at 11:13 +0200, Erik Faye-Lund wrote: > > > > > > > So here's the question: How does people feel

[Mesa-dev] [Bug 110884] can't start GDM when building mesa master branch with LTO

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110884 --- Comment #6 from Caio Marcelo de Oliveira Filho --- (In reply to Caio Marcelo de Oliveira Filho from comment #5) > I had a conversation with Thiago, and we need the patch needs an update. > I'll create an MR in GitLab with those. I meant:

[Mesa-dev] [Bug 110884] can't start GDM when building mesa master branch with LTO

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110884 Caio Marcelo de Oliveira Filho changed: What|Removed |Added Status|NEW |ASSIGNED

[Mesa-dev] [Bug 110901] mesa-19.1.0/src/util/futex.h:82: use of out of scope variable ?

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110901 --- Comment #1 from Eric Engestrom --- Indeed, that's a dangling pointer to data that should not exist anymore, good catch! I just posted an MR with a fix, can you compile-test it for me? I don't have a FreeBSD machine available.

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 Michel Dänzer changed: What|Removed |Added QA Contact|mesa-dev@lists.freedesktop. | |org

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 --- Comment #4 from Michel Dänzer --- Created attachment 144522 --> https://bugs.freedesktop.org/attachment.cgi?id=144522=edit amdgpu: Compare DRM node type as well in fd_compare -- You are receiving this mail because: You are the QA

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 Emil Velikov changed: What|Removed |Added Assignee|mesa-dev@lists.freedesktop. |emil.l.veli...@gmail.com

Re: [Mesa-dev] [RFC] panfrost/midgard: Hack some bits to get things working on T720

2019-06-12 Thread Alyssa Rosenzweig
> +uint32_t *known_unknown = ((void*)ctx->misc_0.cpu + 40960); > +*known_unknown = 0xa000; > + This is doubly scary, since misc_0 is marked INVISIBLE/GROWABLE. Rob has been coding under the assumption growable must never be accessed CPU-side. If this is strictly necessary (and

Re: [Mesa-dev] [PATCH] Revert "radv: fix color conversions for normalized uint/sint formats"

2019-06-12 Thread Samuel Pitoiset
Please ignore this patch. See https://github.com/doitsujin/dxvk/commit/3b1e03f9887fc7b540c90e9e34e32b46612281bb On 6/5/19 2:45 PM, Bas Nieuwenhuizen wrote: r-b On Wed, Jun 5, 2019 at 12:02 PM Samuel Pitoiset wrote: For some reasons, this actually introduced rendering issues with Far Cry 3

Re: [Mesa-dev] [RFC] panfrost/midgard: Hack some bits to get things working on T720

2019-06-12 Thread Alyssa Rosenzweig
> Any ideas on why these two changes get kmscube working on T720? ...No, absolutely none. You're positive the known_unknown thing is needed? If that's so, I'm really concerned because I was under the impression those were magic structures we didn't need to deal with ourself. If that assumption

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

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110468 --- Comment #10 from pal1000 --- I think that requires another issue report as I don't know if it is caused by VS2019. Also I'll be a bystander to that one because my system doesn't meet the requirements to run swrAVX2. -- You are receiving

[Mesa-dev] [Bug 110902] mesa-19.1.0/src/broadcom/compiler/vir_opt_redundant_flags.c:104]: (style) Same expression

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110902 --- Comment #2 from Alejandro Piñeiro (freenode IRC: apinheiro) --- Following MR includes a patch that should fix this: https://gitlab.freedesktop.org/mesa/mesa/merge_requests/1082 -- You are receiving this mail because: You are the QA

[Mesa-dev] [Bug 110902] mesa-19.1.0/src/broadcom/compiler/vir_opt_redundant_flags.c:104]: (style) Same expression

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110902 Alejandro Piñeiro (freenode IRC: apinheiro) changed: What|Removed |Added Status|NEW |ASSIGNED

Re: [Mesa-dev] [PATCH 2/2] radv: fix VK_EXT_memory_budget if one heap isn't available

2019-06-12 Thread Bas Nieuwenhuizen
r-b with the vega m ref changed in the commit message. On Wed, Jun 12, 2019 at 11:18 AM Samuel Pitoiset wrote: > > > On 6/12/19 9:58 AM, Michel Dänzer wrote: > > On 2019-06-11 5:03 p.m., Samuel Pitoiset wrote: > >> On 6/11/19 4:56 PM, Alex Deucher wrote: > >>> On Tue, Jun 11, 2019 at 10:43 AM

[Mesa-dev] [PATCH libdrm 7/9] panfrost/midgard: Move draw_count into panfrost_job

2019-06-12 Thread Rohan Garg
Refactor code to use draw_counts from a panfrost_job --- src/gallium/drivers/panfrost/pan_context.c | 31 -- src/gallium/drivers/panfrost/pan_context.h | 2 -- src/gallium/drivers/panfrost/pan_job.c | 4 +-- src/gallium/drivers/panfrost/pan_job.h | 2 ++ 4 files

[Mesa-dev] [PATCH libdrm 5/9] panfrost/midgard: Remove unnecessary variables

2019-06-12 Thread Rohan Garg
These are not required anymore since mali jobs are now linked lists i.e. u_vertex_jobs and u_tiler_jobs --- src/gallium/drivers/panfrost/pan_context.c | 5 - src/gallium/drivers/panfrost/pan_context.h | 2 -- src/gallium/drivers/panfrost/pan_wallpaper.c | 1 - 3 files changed, 8

[Mesa-dev] [PATCH libdrm 6/9] panfrost/midgard: Remove duplicated header

2019-06-12 Thread Rohan Garg
--- src/gallium/drivers/panfrost/pan_context.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index 66762a010f8..eaceaa8725e 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++

[Mesa-dev] [PATCH libdrm 4/9] panfrost/midgard: Move clearing logic into pan_job

2019-06-12 Thread Rohan Garg
--- src/gallium/drivers/panfrost/pan_context.c | 49 +- src/gallium/drivers/panfrost/pan_job.c | 59 ++ src/gallium/drivers/panfrost/pan_job.h | 8 +++ 3 files changed, 68 insertions(+), 48 deletions(-) diff --git

[Mesa-dev] [PATCH libdrm 9/9] Fixes 88ae2f5870c: "panfrost/midgard: Remove unnecessary variables"

2019-06-12 Thread Rohan Garg
Make sure we link the last vertex job to the first tiler job. --- src/gallium/drivers/panfrost/pan_context.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index 00acb464bc6..caa914e33cb 100644 ---

[Mesa-dev] [PATCH libdrm 8/9] panfrost/midgard: Move requirement setting into panfrost_job

2019-06-12 Thread Rohan Garg
Move panfrost_job_set_requirements into panfrost_get_job_for_fbo, requirements should be set when acquiring a job from a context. --- src/gallium/drivers/panfrost/pan_context.c | 2 -- src/gallium/drivers/panfrost/pan_job.c | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git

[Mesa-dev] [PATCH libdrm 1/9] panfrost/midgard: Initial implementation of panfrost_job_submit

2019-06-12 Thread Rohan Garg
Start fleshing out panfrost_job --- src/gallium/drivers/panfrost/pan_context.c | 3 +-- src/gallium/drivers/panfrost/pan_job.c | 20 src/gallium/drivers/panfrost/pan_job.h | 2 ++ 3 files changed, 23 insertions(+), 2 deletions(-) diff --git

[Mesa-dev] [PATCH libdrm 0/9] panfrost/midgard: Refactor pan_context

2019-06-12 Thread Rohan Garg
Refactor pan_context to separate out responsibilities between pan_context and pan_job. Rohan Garg (9): panfrost/midgard: Initial implementation of panfrost_job_submit panfrost/midgard: Reset job counters once the job is submitted panfrost/midgard: Figure out job requirements in pan_job.c

[Mesa-dev] [PATCH libdrm 2/9] panfrost/midgard: Reset job counters once the job is submitted

2019-06-12 Thread Rohan Garg
Move the reset out of frame invalidation into job submission --- src/gallium/drivers/panfrost/pan_context.c | 5 - src/gallium/drivers/panfrost/pan_job.c | 4 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/gallium/drivers/panfrost/pan_context.c

[Mesa-dev] [PATCH libdrm 3/9] panfrost/midgard: Figure out job requirements in pan_job.c

2019-06-12 Thread Rohan Garg
Requirements for a job should be figured out in pan_job.c --- src/gallium/drivers/panfrost/pan_context.c | 8 +--- src/gallium/drivers/panfrost/pan_job.c | 11 +++ src/gallium/drivers/panfrost/pan_job.h | 4 3 files changed, 16 insertions(+), 7 deletions(-) diff --git

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 Michel Dänzer changed: What|Removed |Added CC||emil.l.veli...@gmail.com

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 Michel Dänzer changed: What|Removed |Added Attachment #144518|text/x-log |text/plain mime type|

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

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110468 --- Comment #9 from ayan...@outlook.com --- That has only seemed to fix swrAVX, swrAVX2 is still a black screen. -- You are receiving this mail because: You are the assignee for the bug. You are the QA Contact for the

[Mesa-dev] [Bug 104166] swr: Scons build - Add support for AVX512 configuration

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=104166 pal1000 changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 --- Comment #1 from Pierre-Eric Pelloux-Prayer --- Created attachment 144519 --> https://bugs.freedesktop.org/attachment.cgi?id=144519=edit The content of /sys/kernel/debug/dri/0/amdgpu_gem_info while mutter is running -- You are receiving

[Mesa-dev] [Bug 110903] Can't start mutter or GDM with wayland

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110903 Bug ID: 110903 Summary: Can't start mutter or GDM with wayland Product: Mesa Version: git Hardware: Other OS: All Status: NEW Severity: normal

[Mesa-dev] [PATCH v2 0/9] radv: VK_KHR_depth_stencil_resolve

2019-06-12 Thread Samuel Pitoiset
Hi, Second version of VK_KHR_depth_stencil_resolve which should handle interations with VK_EXT_sample_locations correctly. All CTS tests now pass on Polaris10/Vega10. Please review, Thanks! Samuel Pitoiset (9): radv: rename has_resolve to has_resolve_color radv: record if a render pass has

[Mesa-dev] [PATCH v2 4/9] radv: implement all depth/stencil resolve modes using compute

2019-06-12 Thread Samuel Pitoiset
This path supports layers but it requires to decompress HTILE before resolving. The driver also needs to fixup HTILE after the resolve. This path is probably slower than the graphics one. v2: - use image view format - make HTILE uncompressed after resolving Signed-off-by: Samuel Pitoiset

[Mesa-dev] [PATCH v2 7/9] radv: clear the depth/stencil resolve attachment if necessary

2019-06-12 Thread Samuel Pitoiset
The driver might need to clear one aspect of the depth/stencil resolve attachment before performing the resolve itself. Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_meta_clear.c | 73 1 file changed, 55 insertions(+), 18 deletions(-) diff --git

[Mesa-dev] [PATCH v2 8/9] radv: pass sample locations for transitions before depth/stencil resolves

2019-06-12 Thread Samuel Pitoiset
HTILE decompressions need the user sample locations if specified in the current subpass. Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_cmd_buffer.c | 2 +- src/amd/vulkan/radv_meta_resolve.c | 30 ++ src/amd/vulkan/radv_private.h | 3 +++ 3 files

[Mesa-dev] [PATCH v2 2/9] radv: record if a render pass has depth/stencil resolve attachments

2019-06-12 Thread Samuel Pitoiset
Only supported with vkCreateRenderPass2(). v2: - do not set has_resolve (now has_color_resolve) for ds resolves Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_pass.c| 27 ++- src/amd/vulkan/radv_private.h | 3 +++ 2 files changed, 29 insertions(+), 1

[Mesa-dev] [PATCH v2 6/9] radv: decompress HTILE if the resolve src image is compressed

2019-06-12 Thread Samuel Pitoiset
It's required to decompress HTILE before resolving with the compute path. v2: - do proper layout transitions - account for the framebuffer layers Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_meta_resolve.c | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-)

[Mesa-dev] [PATCH v2 9/9] radv: add support for VK_KHR_depth_stencil_resolve

2019-06-12 Thread Samuel Pitoiset
Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_device.c | 21 + src/amd/vulkan/radv_extensions.py | 1 + 2 files changed, 22 insertions(+) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 358fc7cb30a..b6a86796927 100644 ---

[Mesa-dev] [PATCH v2 5/9] radv: select the depth/stencil resolve method based on some conditions

2019-06-12 Thread Samuel Pitoiset
Only fallback to the compute path for layers. v2: - move the check for color resolves after ds resolves Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_meta_resolve.c | 78 +- 1 file changed, 65 insertions(+), 13 deletions(-) diff --git

[Mesa-dev] [PATCH v2 1/9] radv: rename has_resolve to has_resolve_color

2019-06-12 Thread Samuel Pitoiset
Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_meta_resolve.c | 2 +- src/amd/vulkan/radv_pass.c | 4 ++-- src/amd/vulkan/radv_private.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/amd/vulkan/radv_meta_resolve.c

[Mesa-dev] [PATCH v2 3/9] radv: implement all depth/stencil resolve modes using graphics

2019-06-12 Thread Samuel Pitoiset
When using graphics, the driver doesn't need to decompress HTILE before resolving. This path currently doesn't support layers so we have to fallback to the compute path. v2: - use image view format Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_meta_resolve_fs.c | 596

Re: [Mesa-dev] [PATCH 2/2] radv: fix VK_EXT_memory_budget if one heap isn't available

2019-06-12 Thread Samuel Pitoiset
On 6/12/19 9:58 AM, Michel Dänzer wrote: On 2019-06-11 5:03 p.m., Samuel Pitoiset wrote: On 6/11/19 4:56 PM, Alex Deucher wrote: On Tue, Jun 11, 2019 at 10:43 AM Samuel Pitoiset wrote: On VegaM, the visible VRAM size is equal to the VRAM size, which means only two heaps are exposed. FWIW,

[Mesa-dev] [Bug 110902] mesa-19.1.0/src/broadcom/compiler/vir_opt_redundant_flags.c:104]: (style) Same expression

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110902 Bug ID: 110902 Summary: mesa-19.1.0/src/broadcom/compiler/vir_opt_redundant_fl ags.c:104]: (style) Same expression Product: Mesa Version: 19.1 Hardware: Other

[Mesa-dev] [Bug 110901] mesa-19.1.0/src/util/futex.h:82: use of out of scope variable ?

2019-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110901 Bug ID: 110901 Summary: mesa-19.1.0/src/util/futex.h:82: use of out of scope variable ? Product: Mesa Version: 19.1 Hardware: Other OS: All

Re: [Mesa-dev] mirroring ogl-sample source code in gitlab?

2019-06-12 Thread Erik Faye-Lund
On Wed, 2019-06-12 at 10:25 +0200, Erik Faye-Lund wrote: > On Tue, 2019-06-11 at 12:41 -0400, Adam Jackson wrote: > > On Tue, 2019-06-11 at 11:13 +0200, Erik Faye-Lund wrote: > > > > > So here's the question: How does people feel about hosting this > > > under > > >

Re: [Mesa-dev] mirroring ogl-sample source code in gitlab?

2019-06-12 Thread Erik Faye-Lund
On Tue, 2019-06-11 at 12:41 -0400, Adam Jackson wrote: > On Tue, 2019-06-11 at 11:13 +0200, Erik Faye-Lund wrote: > > > So here's the question: How does people feel about hosting this > > under > > https://gitlab.freedesktop.org/mesa/ogl-sample/? If people are OK > > with > > this, I will make

Re: [Mesa-dev] [PATCH] radv: Change memory type order for GPUs without dedicated VRAM

2019-06-12 Thread Alex Smith
On Tue, 11 Jun 2019 at 14:32, Christian König < ckoenig.leichtzumer...@gmail.com> wrote: > Am 10.06.19 um 15:56 schrieb Bas Nieuwenhuizen: > > On Sat, Jun 8, 2019 at 3:36 PM Alex Smith > wrote: > >> On Mon, 3 Jun 2019 at 13:27, Koenig, Christian < > christian.koe...@amd.com> wrote: > >>> Am

Re: [Mesa-dev] [ANNOUNCE] mesa 19.1.0

2019-06-12 Thread Juan A. Suarez Romero
On Tue, 2019-06-11 at 20:28 +0300, Thomas Backlund wrote: > Den 11.6.2019 kl. 19:00, skrev Juan A. Suarez Romero: > > Mesa 19.1.0 is now available. > > > > Emil Velikov (3): > >mapi: add static_date offset to MaxShaderCompilerThreadsKHR > >mapi: correctly handle the full offset

Re: [Mesa-dev] [PATCH 2/2] radv: fix VK_EXT_memory_budget if one heap isn't available

2019-06-12 Thread Michel Dänzer
On 2019-06-11 5:03 p.m., Samuel Pitoiset wrote: > On 6/11/19 4:56 PM, Alex Deucher wrote: >> On Tue, Jun 11, 2019 at 10:43 AM Samuel Pitoiset >> wrote: >>> On VegaM, the visible VRAM size is equal to the VRAM size, which >>> means only two heaps are exposed. >> FWIW, this is not VegaM specific. 

[Mesa-dev] [PATCH v2 2/2] radv: fix VK_EXT_memory_budget if one heap isn't available

2019-06-12 Thread Samuel Pitoiset
On VegaM, the visible VRAM size is equal to the VRAM size, which means only two heaps are exposed. This fixes dEQP-VK.api.info.device.memory_budget. v2: - use heapIndex Cc: 19.0 19.1 Signed-off-by: Samuel Pitoiset --- src/amd/vulkan/radv_device.c | 60 1

[Mesa-dev] [RFC] panfrost/midgard: Hack some bits to get things working on T720

2019-06-12 Thread Tomeu Vizoso
Any ideas on why these two changes get kmscube working on T720? Signed-off-by: Tomeu Vizoso --- src/gallium/drivers/panfrost/pan_context.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/panfrost/pan_context.c

Re: [Mesa-dev] [ANNOUNCE] mesa 19.1.0

2019-06-12 Thread Thomas Backlund
Den 11.6.2019 kl. 19:00, skrev Juan A. Suarez Romero: Mesa 19.1.0 is now available. Emil Velikov (3): mapi: add static_date offset to MaxShaderCompilerThreadsKHR mapi: correctly handle the full offset table Question... Wasn't "mapi: add static_date offset to EXT_dsa"