diff options
author | Marek Olšák <[email protected]> | 2020-01-10 18:26:01 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2020-01-14 18:46:07 -0500 |
commit | 63b5d85baa3fd53c5a01fa80d33f845cadd95953 (patch) | |
tree | 5ba5580fee3dc643630240bde8b9de9530a8ba05 /src/gallium | |
parent | f4ba457e1e6c4c8bd232e3c99f301964b9a1cb4a (diff) |
radeonsi: rename si_compile_tgsi_main -> si_build_main_function
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index e4429a1ee0f..37b85bf70f9 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -4881,8 +4881,8 @@ static void si_llvm_emit_kill(struct ac_shader_abi *abi, LLVMValueRef visible) ac_build_kill_if_false(&ctx->ac, visible); } -static bool si_compile_tgsi_main(struct si_shader_context *ctx, - struct nir_shader *nir, bool free_nir) +static bool si_build_main_function(struct si_shader_context *ctx, + struct nir_shader *nir, bool free_nir) { struct si_shader *shader = ctx->shader; struct si_shader_selector *sel = shader->selector; @@ -5772,7 +5772,7 @@ int si_compile_shader(struct si_screen *sscreen, shader->info.uses_instanceid = sel->info.uses_instanceid; - if (!si_compile_tgsi_main(&ctx, nir, free_nir)) { + if (!si_build_main_function(&ctx, nir, free_nir)) { si_llvm_dispose(&ctx); return -1; } @@ -5826,7 +5826,7 @@ int si_compile_shader(struct si_screen *sscreen, shader_ls.is_monolithic = true; si_llvm_context_set_ir(&ctx, &shader_ls); - if (!si_compile_tgsi_main(&ctx, nir, free_nir)) { + if (!si_build_main_function(&ctx, nir, free_nir)) { si_llvm_dispose(&ctx); return -1; } @@ -5894,7 +5894,7 @@ int si_compile_shader(struct si_screen *sscreen, shader_es.is_monolithic = true; si_llvm_context_set_ir(&ctx, &shader_es); - if (!si_compile_tgsi_main(&ctx, nir, free_nir)) { + if (!si_build_main_function(&ctx, nir, free_nir)) { si_llvm_dispose(&ctx); return -1; } |