radeonsi: don't declare LDS in TES

not used since we started using the offchip tess ring

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Marek Olšák 2017-01-20 00:08:35 +01:00
parent 59c5da40ed
commit 5d3dd70cab
1 changed files with 1 additions and 2 deletions

View File

@ -5863,8 +5863,7 @@ static void create_function(struct si_shader_context *ctx)
LOCAL_ADDR_SPACE);
if ((ctx->type == PIPE_SHADER_VERTEX && shader->key.as_ls) ||
ctx->type == PIPE_SHADER_TESS_CTRL ||
ctx->type == PIPE_SHADER_TESS_EVAL)
ctx->type == PIPE_SHADER_TESS_CTRL)
declare_tess_lds(ctx);
}