From bb4ade40e41ec2d89d920e65ba2aaa82bfe51cd1 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Mon, 21 Dec 2020 11:08:11 -0800 Subject: [PATCH] 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 Part-of: --- 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,