mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
radv: Rename ac_arg_regfile
We'll duplicate this in a header file in the next commit, and then remove the original enum. Just rename it temporarily so that things keep building. Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
29081c671f
commit
43da33c169
1 changed files with 2 additions and 2 deletions
|
|
@ -355,13 +355,13 @@ struct arg_info {
|
|||
uint8_t num_vgprs_used;
|
||||
};
|
||||
|
||||
enum ac_arg_regfile {
|
||||
enum radv_arg_regfile {
|
||||
ARG_SGPR,
|
||||
ARG_VGPR,
|
||||
};
|
||||
|
||||
static void
|
||||
add_arg(struct arg_info *info, enum ac_arg_regfile regfile, LLVMTypeRef type,
|
||||
add_arg(struct arg_info *info, enum radv_arg_regfile regfile, LLVMTypeRef type,
|
||||
LLVMValueRef *param_ptr)
|
||||
{
|
||||
assert(info->count < MAX_ARGS);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue