llvmpipe: don't create texture functions for planar textures.
authorDave Airlie <airlied@redhat.com>
Fri, 6 Oct 2023 02:56:39 +0000 (12:56 +1000)
committerMarge Bot <emma+marge@anholt.net>
Tue, 10 Oct 2023 04:37:06 +0000 (04:37 +0000)
Since we can't sample from these directly, just don't create the
functions.

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25609>

src/gallium/drivers/llvmpipe/lp_texture_handle.c

index 9bb8f22..18014f5 100644 (file)
@@ -386,6 +386,9 @@ compile_sample_function(struct llvmpipe_context *ctx, struct lp_static_texture_s
             return NULL;
       }
 
+      if (util_format_get_num_planes(texture->format) > 1)
+         return NULL;
+
       uint32_t bind = op_type == LP_SAMPLER_OP_FETCH ? PIPE_BIND_CONSTANT_BUFFER : PIPE_BIND_SAMPLER_VIEW;
       if (!ctx->pipe.screen->is_format_supported(ctx->pipe.screen, texture->format, texture->target, 0, 0, bind))
          return NULL;