diff options
author | Samuel Pitoiset <[email protected]> | 2018-02-09 13:54:25 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-02-12 11:54:17 +0100 |
commit | e32f3749443183e92e3567214af41aceb60eaaeb (patch) | |
tree | cc8465a53e83c27fc8cd302491f6f417f4f36eb1 /src/amd/common/ac_shader_abi.h | |
parent | 1e69db003da22c9068e5fd08bcf217442da5712c (diff) |
ac: remove unused parameters in abi::load_tess_coord()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/common/ac_shader_abi.h')
-rw-r--r-- | src/amd/common/ac_shader_abi.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/amd/common/ac_shader_abi.h b/src/amd/common/ac_shader_abi.h index c89987c35f8..290014ad238 100644 --- a/src/amd/common/ac_shader_abi.h +++ b/src/amd/common/ac_shader_abi.h @@ -115,9 +115,7 @@ struct ac_shader_abi { bool is_compact, unsigned writemask); - LLVMValueRef (*load_tess_coord)(struct ac_shader_abi *abi, - LLVMTypeRef type, - unsigned num_components); + LLVMValueRef (*load_tess_coord)(struct ac_shader_abi *abi); LLVMValueRef (*load_patch_vertices_in)(struct ac_shader_abi *abi); |