projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae619a0
)
intel/genxml: Update macro documentation
author
Jason Ekstrand
<jason.ekstrand@intel.com>
Tue, 23 Feb 2016 05:20:04 +0000
(21:20 -0800)
committer
Jason Ekstrand
<jason.ekstrand@intel.com>
Tue, 23 Feb 2016 05:20:04 +0000
(21:20 -0800)
src/intel/genxml/gen_macros.h
patch
|
blob
|
history
diff --git
a/src/intel/genxml/gen_macros.h
b/src/intel/genxml/gen_macros.h
index 2658d03292874578b11df307feb6ed86b10f4c8b..052c57f8a770229cc148962d19c062c0cb0cc74c 100644
(file)
--- a/
src/intel/genxml/gen_macros.h
+++ b/
src/intel/genxml/gen_macros.h
@@
-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
*