intel: Rename genx10 field in gen_device_info struct to verx10
Commands used to do the changes: export SEARCH_PATH="src/intel src/gallium/drivers/iris src/mesa/drivers/dri/i965" grep -E "info\)*(.|->)genx10" -rIl $SEARCH_PATH | xargs sed -ie "s/info\()*\)\(\.\|->\)genx10/info\1\2verx10/g" Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9936>
This commit is contained in:
@@ -1623,7 +1623,7 @@ fs_visitor::assign_curb_setup()
|
||||
|
||||
uint64_t used = 0;
|
||||
|
||||
if (stage == MESA_SHADER_COMPUTE && devinfo->genx10 >= 125) {
|
||||
if (stage == MESA_SHADER_COMPUTE && devinfo->verx10 >= 125) {
|
||||
fs_builder ubld = bld.exec_all().group(8, 0).at(
|
||||
cfg->first_block(), cfg->first_block()->start());
|
||||
|
||||
@@ -2270,7 +2270,7 @@ get_subgroup_id_param_index(const gen_device_info *devinfo,
|
||||
if (prog_data->nr_params == 0)
|
||||
return -1;
|
||||
|
||||
if (devinfo->genx10 >= 125)
|
||||
if (devinfo->verx10 >= 125)
|
||||
return -1;
|
||||
|
||||
/* The local thread id is always the last parameter in the list */
|
||||
|
||||
Reference in New Issue
Block a user