diff options
author | Marek Olšák <[email protected]> | 2019-12-23 19:53:46 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2020-01-15 15:06:29 -0500 |
commit | 34ef0c5083af7279af9a4ac8653a1966013d3a59 (patch) | |
tree | ec44c9bafc964c4dab52659336cbb14e5dc727b1 /src/gallium/drivers/radeonsi/si_shader_internal.h | |
parent | eeb4a11c1123c34b4d1c55540f575f6b474f7d08 (diff) |
radeonsi: make si_insert_input_* functions non-static
Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader_internal.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader_internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader_internal.h b/src/gallium/drivers/radeonsi/si_shader_internal.h index 5fc13279a81..6d36b9750c7 100644 --- a/src/gallium/drivers/radeonsi/si_shader_internal.h +++ b/src/gallium/drivers/radeonsi/si_shader_internal.h @@ -291,6 +291,12 @@ void si_get_ps_prolog_key(struct si_shader *shader, bool separate_prolog); void si_get_ps_epilog_key(struct si_shader *shader, union si_shader_part_key *key); +LLVMValueRef si_insert_input_ret(struct si_shader_context *ctx, LLVMValueRef ret, + struct ac_arg param, unsigned return_index); +LLVMValueRef si_insert_input_ret_float(struct si_shader_context *ctx, LLVMValueRef ret, + struct ac_arg param, unsigned return_index); +LLVMValueRef si_insert_input_ptr(struct si_shader_context *ctx, LLVMValueRef ret, + struct ac_arg param, unsigned return_index); void gfx10_emit_ngg_epilogue(struct ac_shader_abi *abi, unsigned max_outputs, |