diff options
author | Timothy Arceri <[email protected]> | 2017-12-06 13:30:33 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-01-05 11:58:55 +1100 |
commit | f93740efc1c75e26a7cb4bb7b41a60fcfdd4fed3 (patch) | |
tree | 3837d32bcdbbd6866c7d4271c40fbdd0f6b0de1f /src/amd/common/ac_shader_abi.h | |
parent | 15c6f3fdd5e507574097d1ec231ffb194a1a287b (diff) |
ac: add {tcs,tes}_patch_id to the abi
Reviewed-by: Nicolai Hähnle <[email protected]>
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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/amd/common/ac_shader_abi.h b/src/amd/common/ac_shader_abi.h index fd2ec06fb14..6f526d9f254 100644 --- a/src/amd/common/ac_shader_abi.h +++ b/src/amd/common/ac_shader_abi.h @@ -42,6 +42,8 @@ struct ac_shader_abi { LLVMValueRef draw_id; LLVMValueRef vertex_id; LLVMValueRef instance_id; + LLVMValueRef tcs_patch_id; + LLVMValueRef tes_patch_id; LLVMValueRef gs_prim_id; LLVMValueRef gs_invocation_id; LLVMValueRef frag_pos[4]; |