Hello Marek,
On Tue, 2 Jul 2019 20:09:23 +0200
Boris Brezillon wrote:
> On Tue, 2 Jul 2019 13:21:31 -0400
> Marek Olšák wrote:
>
> > On Tue., Jul. 2, 2019, 09:50 Boris Brezillon,
> > wrote:
> >
> > > From: Daniel Stone
> > >
> > > Add a pipe_screen->set_damage_region() hook to propagate
>
This fixes
dEQP-VK.spirv_assembly.instruction.graphics.16bit_storage.input_output_*
Found with RADV_DEBUG=checkir
Signed-off-by: Samuel Pitoiset
---
src/amd/vulkan/radv_nir_to_llvm.c | 9 +
1 file changed, 9 insertions(+)
diff --git a/src/amd/vulkan/radv_nir_to_llvm.c
b/src/amd/vulkan
https://bugs.freedesktop.org/show_bug.cgi?id=26
Andre Klapper changed:
What|Removed |Added
Blocks|32 |
--
You are receiving this mail becaus
https://bugs.freedesktop.org/show_bug.cgi?id=30
Andre Klapper changed:
What|Removed |Added
Blocks|33 |
--
You are receiving this mail becaus
https://bugs.freedesktop.org/show_bug.cgi?id=23
Michel Dänzer changed:
What|Removed |Added
Version|git |unspecified
Assignee|mesa-dev
Build mesa 11875 failed
Commit 17dc693590 by Eric Anholt on 5/13/2019 11:58 PM:
freedreno: Fix assertion failures in context setup in shader-db mode.\n\nCherry-picks a0d4d7febff56ec7f4a4396f7b893319958f97d3 upstream\n\nThe TTN path needs access to the screen to
Build mesa 11876 completed
Commit 17dc693590 by Eric Anholt on 5/13/2019 11:58 PM:
freedreno: Fix assertion failures in context setup in shader-db mode.\n\nCherry-picks a0d4d7febff56ec7f4a4396f7b893319958f97d3 upstream\n\nThe TTN path needs access to the screen
https://bugs.freedesktop.org/show_bug.cgi?id=26
Denis changed:
What|Removed |Added
Status|NEW |NEEDINFO
--- Comment #1 from Denis ---
Hi. How
From: Harish Krupo
Use the DRI2 interface callback to pass the damage rects to
the driver.
Signed-off-by: Harish Krupo
Signed-off-by: Boris Brezillon
Acked-by: Alyssa Rosenzweig
Reviewed-by: Qiang Yu
Tested-by: Qiang Yu
---
Changes in v6:
* None
Changes in v5:
* Add Alyssa's a-b
* Update A
This is an attempt at resurrecting Daniel's MR [1] which was already
resurrecting Harish's EGL_KHR_partial_update series [2]. This version
implements Marek's suggestion to pass the set_damage_region() directly
to the gallium driver and let it decide how to handle the request. Some
drivers might jus
Implement ->set_damage_region() region to support partial updates.
This is a dummy implementation in that it does not try to merge
damage rects. It also does not deal with distinct regions and instead
pick the largest quad as the only damage rect and generate up to 4
reload rects out of it (the le
From: Daniel Stone
Add a pipe_screen->set_damage_region() hook to propagate
set-damage-region requests to the driver, it's then up to the driver to
decide what to do with this piece of information.
If the hook is left unassigned, the buffer-damage extension is
considered unsupported.
Signed-off
From: Daniel Stone
Add a new DRI2_BufferDamage interface to support the
EGL_KHR_partial_update extension, informing the driver of an overriding
scissor region for a particular drawable.
Based on a commit originally authored by:
Harish Krupo
renamed extension, retargeted at DRI drawable instead
From: Harish Krupo
The intension of the KHR_partial_update was not to send the damage back
to the platform but to send the damage to the driver to ensure that the
following rendering could be restricted to those regions.
This patch removes the set_damage_region from the egl_dri vtbl and all
the p
On Mon, 15 Jul 2019 09:23:43 +0200
Boris Brezillon wrote:
> Hello Marek,
>
> On Tue, 2 Jul 2019 20:09:23 +0200
> Boris Brezillon wrote:
>
> > On Tue, 2 Jul 2019 13:21:31 -0400
> > Marek Olšák wrote:
> >
> > > On Tue., Jul. 2, 2019, 09:50 Boris Brezillon,
> > > wrote:
> > >
> > > > Fr
Thanks Marek and Michel, see the updated patch below:
The amdgpu dri is used for the closed source AMD driver. Since this driver
does not implement multimedia, we fall back to radeonsi in mesa to do
multimedia. This corrects the Gallium driver name for when it is set to
amdgpu.
This will allow dr
On 2019-07-15 3:58 p.m., Jeremy Newton wrote:
> Thanks Marek and Michel, see the updated patch below:
FYI, this kind of commentary should be after the --- line, or it will be
included as part of the Git commit log by tools like "git am".
> The amdgpu dri is used for the closed source AMD driver.
Sorry about that, I've only used git email maybe three times in my life :)
On Mon, Jul 15, 2019 at 10:00 AM Jeremy Newton wrote:
> Thanks Marek and Michel, see the updated patch below:
>
> The amdgpu dri is used for the closed source AMD driver. Since this driver
> does not implement multimedia,
On 2019-07-15 4:11 p.m., Newton, Jeremy wrote:
> Sorry about that, I've only used git email maybe three times in my life :)
Nothing to apologize for, everybody has to learn that kind of thing. :)
--
Earthling Michel Dänzer | https://www.amd.com
Libre software enthusia
On 2019-07-15 at 16:01, Jeremy Newton wrote:
> Thanks Marek and Michel, see the updated patch below:
>
> The amdgpu dri is used for the closed source AMD driver. Since this driver
> does not implement multimedia, we fall back to radeonsi in mesa to do
> multimedia. This corrects the Gallium dri
https://bugs.freedesktop.org/show_bug.cgi?id=109615
erhar...@mailbox.org changed:
What|Removed |Added
Summary|19.0.0_rc4 fails|>=19.0.0 fails
Signed-off-by: Samuel Pitoiset
---
src/amd/vulkan/radv_shader.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c
index f6b0297d4a3..1e9399de193 100644
--- a/src/amd/vulkan/radv_shader.c
+++ b/src/amd/vulkan/radv_shad
https://bugs.freedesktop.org/show_bug.cgi?id=110663
Vinson Lee changed:
What|Removed |Added
Resolution|--- |FIXED
Status|NEW
r-b
On Mon, Jul 15, 2019 at 6:46 PM Samuel Pitoiset
wrote:
>
> Signed-off-by: Samuel Pitoiset
> ---
> src/amd/vulkan/radv_shader.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c
> index f6b0297d4a3..1e9399de
https://bugs.freedesktop.org/show_bug.cgi?id=103748
Mark Janes changed:
What|Removed |Added
Keywords|regression |
--
You are receiving this mail because:
https://bugs.freedesktop.org/show_bug.cgi?id=102122
Mark Janes changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
Am 15.07.19 um 16:15 schrieb Michel Dänzer:
On 2019-07-15 4:11 p.m., Newton, Jeremy wrote:
Sorry about that, I've only used git email maybe three times in my life :)
Nothing to apologize for, everybody has to learn that kind of thing. :)
To be honest even after more than a decade I still get
On Mon, Jul 15, 2019, 10:45 AM Samuel Pitoiset
wrote:
> This fixes
> dEQP-VK.spirv_assembly.instruction.graphics.16bit_storage.input_output_*
>
> Found with RADV_DEBUG=checkir
>
> Signed-off-by: Samuel Pitoiset
> ---
> src/amd/vulkan/radv_nir_to_llvm.c | 9 +
> 1 file changed, 9 inserti
And R-b after suggestion
On Mon, Jul 15, 2019, 11:22 PM Bas Nieuwenhuizen
wrote:
>
>
> On Mon, Jul 15, 2019, 10:45 AM Samuel Pitoiset
> wrote:
>
>> This fixes
>> dEQP-VK.spirv_assembly.instruction.graphics.16bit_storage.input_output_*
>>
>> Found with RADV_DEBUG=checkir
>>
>> Signed-off-by: Sam
R-b
On Mon, Jul 15, 2019, 8:49 AM Samuel Pitoiset
wrote:
> It was hack for geometry shaders.
>
> Signed-off-by: Samuel Pitoiset
> ---
> src/amd/vulkan/radv_nir_to_llvm.c | 16 +---
> 1 file changed, 1 insertion(+), 15 deletions(-)
>
> diff --git a/src/amd/vulkan/radv_nir_to_llvm.c
https://bugs.freedesktop.org/show_bug.cgi?id=41
Bug ID: 41
Summary: [REGRESSION] [BISECTED] [DXVK] 1-bit booleans and
Elite Dangerous shader mis-optimization
Product: Mesa
Version: 19.0
Hardware: All
From: Dave Airlie
Setting this seems to be broken, amdvlk only sets it for quilted
textures which I'm not sure what those are.
Fixes: dEQP-VK.glsl.texture_functions.query.texturesize*3d*
---
src/amd/vulkan/radv_image.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/amd/
r-b
On Tue, Jul 16, 2019 at 1:25 AM Dave Airlie wrote:
>
> From: Dave Airlie
>
> Setting this seems to be broken, amdvlk only sets it for quilted
> textures which I'm not sure what those are.
>
> Fixes: dEQP-VK.glsl.texture_functions.query.texturesize*3d*
> ---
> src/amd/vulkan/radv_image.c | 2
https://bugs.freedesktop.org/show_bug.cgi?id=108596
Shmerl changed:
What|Removed |Added
CC||shtetl...@gmail.com
--
You are receiving this
From: Dave Airlie
This is ported from AMDVLK, it's probably not requires unless
we want to use "real time queues", but it might be nice to just have
in place.
---
src/amd/common/sid.h | 1 +
src/amd/vulkan/radv_cs.h | 18 +++
src/amd/vulkan/si_cmd_buffer.c | 42 +
For NGG, the driver relies on the VS outinfo struct.
This fixes
dEQP-VK.clipping.user_defined.clip_*_vert_tess_geom_*
Signed-off-by: Samuel Pitoiset
---
src/amd/vulkan/radv_nir_to_llvm.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/src/amd/vulkan/radv_nir_to_llvm.c
b/src/amd/vulkan
36 matches
Mail list logo