summaryrefslogtreecommitdiff
path: root/src/intel/compiler/test_eu_compact.cpp
diff options
context:
space:
mode:
authorAnuj Phogat <anuj.phogat@gmail.com>2021-03-29 13:43:47 -0700
committerMarge Bot <eric+marge@anholt.net>2021-04-02 18:33:07 +0000
commit99331f6deb5e5e694bf3b1bcac5d1dc500c4d8dc (patch)
treeda4b6b9236913bc2580b7df54bd2164cc6e874e9 /src/intel/compiler/test_eu_compact.cpp
parentcc422fa4983af5b0cc0afc37c284fd14fd92d817 (diff)
downloadmesa-99331f6deb5e5e694bf3b1bcac5d1dc500c4d8dc.tar.gz
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>
Diffstat (limited to 'src/intel/compiler/test_eu_compact.cpp')
-rw-r--r--src/intel/compiler/test_eu_compact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/test_eu_compact.cpp b/src/intel/compiler/test_eu_compact.cpp
index 748299307de..19acb5572cb 100644
--- a/src/intel/compiler/test_eu_compact.cpp
+++ b/src/intel/compiler/test_eu_compact.cpp
@@ -337,7 +337,7 @@ main(UNUSED int argc, UNUSED char **argv)
if (devinfo->gen == 10)
continue;
- devinfo->genx10 = devinfo->gen * 10;
+ devinfo->verx10 = devinfo->gen * 10;
fail |= run_tests(devinfo);
}