From 3bc754a9a62d3bc9d6463e029ce2a6173bbefc0d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Tue, 3 May 2022 15:05:50 -0400 Subject: [PATCH] radeonsi/gfx11: mark streamout as unimplemented for now Acked-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/gallium/drivers/radeonsi/si_state_shaders.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gallium/drivers/radeonsi/si_state_shaders.cpp b/src/gallium/drivers/radeonsi/si_state_shaders.cpp index da25403..0c2a0fc 100644 --- a/src/gallium/drivers/radeonsi/si_state_shaders.cpp +++ b/src/gallium/drivers/radeonsi/si_state_shaders.cpp @@ -3098,6 +3098,11 @@ static void *si_create_shader_selector(struct pipe_context *ctx, if (!sel) return NULL; + if (sscreen->info.chip_class == GFX11 && state->stream_output.num_outputs) { + fprintf(stderr, "radeonsi: streamout unimplemented\n"); + abort(); + } + sel->screen = sscreen; sel->compiler_ctx_state.debug = sctx->debug; sel->compiler_ctx_state.is_debug_context = sctx->is_debug; -- 2.7.4