From: Michel Dänzer Date: Tue, 22 Jan 2013 16:08:24 +0000 (+0100) Subject: radeonsi: Fall back to dummy pixel shader instead of trying indirect addressing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35f0dc2cc71f49ff8de8ba7a0f93a6b6f725161b;p=mesa.git radeonsi: Fall back to dummy pixel shader instead of trying indirect addressing. Indirect addressing isn't fully handled yet. Fixes crashes with piglit tests using indirect addressing. Signed-off-by: Michel Dänzer --- diff --git a/src/gallium/drivers/radeonsi/radeonsi_shader.c b/src/gallium/drivers/radeonsi/radeonsi_shader.c index 52ecef9b547..f398e6ca066 100644 --- a/src/gallium/drivers/radeonsi/radeonsi_shader.c +++ b/src/gallium/drivers/radeonsi/radeonsi_shader.c @@ -913,6 +913,11 @@ int si_pipe_shader_create( bld_base = &si_shader_ctx.radeon_bld.soa.bld_base; tgsi_scan_shader(sel->tokens, &shader_info); + if (shader_info.indirect_files != 0) { + fprintf(stderr, "Indirect addressing not fully handled yet\n"); + return -ENOSYS; + } + shader->shader.uses_kill = shader_info.uses_kill; bld_base->info = &shader_info; bld_base->emit_fetch_funcs[TGSI_FILE_CONSTANT] = fetch_constant;