radeonsi: minor cleanup in si_shader_internal.h
authorMarek Olšák <marek.olsak@amd.com>
Wed, 15 Jan 2020 23:08:54 +0000 (18:08 -0500)
committerMarge Bot <eric+marge@anholt.net>
Thu, 23 Jan 2020 19:10:21 +0000 (19:10 +0000)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3421>

src/gallium/drivers/radeonsi/si_shader_internal.h
src/gallium/drivers/radeonsi/si_shader_llvm_tess.c

index af88bad47ed866cc0baa66c49ca213b45757f52c..d9b84ab13024a2caa0bed9cfcd8f0c19b42fe7a1 100644 (file)
@@ -196,20 +196,7 @@ si_shader_context_from_abi(struct ac_shader_abi *abi)
        return container_of(abi, ctx, abi);
 }
 
-LLVMValueRef si_nir_load_input_tes(struct ac_shader_abi *abi,
-                                  LLVMTypeRef type,
-                                  LLVMValueRef vertex_index,
-                                  LLVMValueRef param_index,
-                                  unsigned const_index,
-                                  unsigned location,
-                                  unsigned driver_location,
-                                  unsigned component,
-                                  unsigned num_components,
-                                  bool is_patch,
-                                  bool is_compact,
-                                  bool load_input);
 bool si_is_merged_shader(struct si_shader_context *ctx);
-LLVMValueRef si_get_sample_id(struct si_shader_context *ctx);
 void si_declare_compute_memory(struct si_shader_context *ctx);
 LLVMValueRef si_get_primitive_id(struct si_shader_context *ctx,
                                 unsigned swizzle);
@@ -311,6 +298,7 @@ void si_llvm_init_tcs_callbacks(struct si_shader_context *ctx);
 void si_llvm_init_tes_callbacks(struct si_shader_context *ctx, bool ngg_cull_shader);
 
 /* si_shader_llvm_ps.c */
+LLVMValueRef si_get_sample_id(struct si_shader_context *ctx);
 void si_llvm_build_ps_prolog(struct si_shader_context *ctx,
                             union si_shader_part_key *key);
 void si_llvm_build_ps_epilog(struct si_shader_context *ctx,
index a9f6e76f1f0470564de1fb74b844e055bbc803b5..116e06e5af1e4334147694a7f13811970f48319f 100644 (file)
@@ -499,18 +499,18 @@ static LLVMValueRef si_nir_load_tcs_varyings(struct ac_shader_abi *abi,
        return ac_build_varying_gather_values(&ctx->ac, value, num_components, component);
 }
 
-LLVMValueRef si_nir_load_input_tes(struct ac_shader_abi *abi,
-                                  LLVMTypeRef type,
-                                  LLVMValueRef vertex_index,
-                                  LLVMValueRef param_index,
-                                  unsigned const_index,
-                                  unsigned location,
-                                  unsigned driver_location,
-                                  unsigned component,
-                                  unsigned num_components,
-                                  bool is_patch,
-                                  bool is_compact,
-                                  bool load_input)
+static LLVMValueRef si_nir_load_input_tes(struct ac_shader_abi *abi,
+                                         LLVMTypeRef type,
+                                         LLVMValueRef vertex_index,
+                                         LLVMValueRef param_index,
+                                         unsigned const_index,
+                                         unsigned location,
+                                         unsigned driver_location,
+                                         unsigned component,
+                                         unsigned num_components,
+                                         bool is_patch,
+                                         bool is_compact,
+                                         bool load_input)
 {
        struct si_shader_context *ctx = si_shader_context_from_abi(abi);
        struct si_shader_info *info = &ctx->shader->selector->info;