diff options
author | Timothy Arceri <[email protected]> | 2018-02-21 10:09:18 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-02-22 09:31:00 +1100 |
commit | 6d338d757f32ba7f1cd583108c31371f2c4e25c0 (patch) | |
tree | 95dbd210092a17eb0bf2e1160786dbf94908cbd3 /src/amd/common/ac_shader_abi.h | |
parent | eef890b7b1216443bd75382f7f602e26338a7899 (diff) |
ac/radeonsi: pass type to load_tess_varyings()
We need this to be able to load 64bit varyings.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/amd/common/ac_shader_abi.h')
-rw-r--r-- | src/amd/common/ac_shader_abi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/common/ac_shader_abi.h b/src/amd/common/ac_shader_abi.h index 62b8b7a5dc4..10d41ef9971 100644 --- a/src/amd/common/ac_shader_abi.h +++ b/src/amd/common/ac_shader_abi.h @@ -96,6 +96,7 @@ struct ac_shader_abi { LLVMTypeRef type); LLVMValueRef (*load_tess_varyings)(struct ac_shader_abi *abi, + LLVMTypeRef type, LLVMValueRef vertex_index, LLVMValueRef param_index, unsigned const_index, |