mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
intel/genxml: Update macro documentation
This commit is contained in:
parent
ae619a0355
commit
64e1c84059
1 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@
|
|||
*
|
||||
* You can do pseudo-runtime checks in your function such as
|
||||
*
|
||||
* if (ANV_GEN > 8 || ANV_IS_HASWELL) {
|
||||
* if (GEN_GEN > 8 || GEN_IS_HASWELL) {
|
||||
* // Do something
|
||||
* }
|
||||
*
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
* For places where you really do have a compile-time conflict, you can
|
||||
* use preprocessor logic:
|
||||
*
|
||||
* #if (ANV_GEN > 8 || ANV_IS_HASWELL)
|
||||
* #if (GEN_GEN > 8 || GEN_IS_HASWELL)
|
||||
* // Do something
|
||||
* #endif
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue