summaryrefslogtreecommitdiffstats
path: root/src/intel/genxml
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-02-22 21:20:04 -0800
committerJason Ekstrand <jason.ekstrand@intel.com>2016-02-22 21:20:04 -0800
commit64e1c8405920a160c0fdac47ebe4f1e1c0468d7a (patch)
treede50689abfed96af2652ac8e456b5002f0e7af5b /src/intel/genxml
parentae619a035573a2d13fb49537ef8769c97688e77f (diff)
downloadexternal_mesa3d-64e1c8405920a160c0fdac47ebe4f1e1c0468d7a.zip
external_mesa3d-64e1c8405920a160c0fdac47ebe4f1e1c0468d7a.tar.gz
external_mesa3d-64e1c8405920a160c0fdac47ebe4f1e1c0468d7a.tar.bz2
intel/genxml: Update macro documentation
Diffstat (limited to 'src/intel/genxml')
-rw-r--r--src/intel/genxml/gen_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/genxml/gen_macros.h b/src/intel/genxml/gen_macros.h
index 2658d03..052c57f 100644
--- 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
*