Mesa (master): lvp: Fix vtn warnings about unsupported image read/write without format.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Dec 21 20:42:31 UTC 2020


Module: Mesa
Branch: master
Commit: bb4ade40e41ec2d89d920e65ba2aaa82bfe51cd1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bb4ade40e41ec2d89d920e65ba2aaa82bfe51cd1

Author: Eric Anholt <eric at anholt.net>
Date:   Mon Dec 21 11:08:11 2020 -0800

lvp: Fix vtn warnings about unsupported image read/write without format.

These are just warnings printed to the console and don't affect testcase
pass/fail, but clog up the deqp-runner job logs.

Reviewed-by: Dave Airlie <airlied at redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8188>

---

 src/gallium/frontends/lavapipe/lvp_pipeline.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/gallium/frontends/lavapipe/lvp_pipeline.c b/src/gallium/frontends/lavapipe/lvp_pipeline.c
index b83e0c655b4..cac750934e7 100644
--- a/src/gallium/frontends/lavapipe/lvp_pipeline.c
+++ b/src/gallium/frontends/lavapipe/lvp_pipeline.c
@@ -500,6 +500,8 @@ lvp_shader_compile_to_ir(struct lvp_pipeline *pipeline,
          .int64 = (pdevice->pscreen->get_param(pdevice->pscreen, PIPE_CAP_INT64) == 1),
          .tessellation = true,
          .image_ms_array = true,
+         .image_read_without_format = true,
+         .image_write_without_format = true,
          .storage_image_ms = true,
          .geometry_streams = true,
          .storage_16bit = true,



More information about the mesa-commit mailing list