intel: Simplify version checks involving haswell

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/9608>
This commit is contained in:
Anuj Phogat
2021-03-09 14:27:06 -08:00
committed by Marge Bot
parent 97d6ceaf04
commit 1d0295ea2c
12 changed files with 62 additions and 62 deletions
+2 -2
View File
@@ -31,7 +31,7 @@
*
* You can do pseudo-runtime checks in your function such as
*
* if (GEN_GEN > 8 || GEN_VERSIONx10 == 75) {
* if (GEN_VERSIONx10 == 75) {
* // Do something
* }
*
@@ -41,7 +41,7 @@
* For places where you really do have a compile-time conflict, you can
* use preprocessor logic:
*
* #if (GEN_GEN > 8 || GEN_VERSIONx10 == 75)
* #if (GEN_VERSIONx10 == 75)
* // Do something
* #endif
*