From: Jason Ekstrand Date: Tue, 23 Feb 2016 05:20:04 +0000 (-0800) Subject: intel/genxml: Update macro documentation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64e1c8405920a160c0fdac47ebe4f1e1c0468d7a;p=mesa.git intel/genxml: Update macro documentation --- diff --git a/src/intel/genxml/gen_macros.h b/src/intel/genxml/gen_macros.h index 2658d032928..052c57f8a77 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 *