Skip to content

intel: Remove GEN_IS_* macros

Anuj Phogat requested to merge aphogat/mesa:remove-gen-is-macro into master

Removing these macros make the version checking consistent across drivers. It also helps to simplify many version checks by combining multiple checks into one. For example GEN_GEN >= 8 || GEN_VERSIONx10 == 75 is replaced by GEN_VERSIONx10 >= 75.

Merge request reports

Loading