anv: remove description about GENX_FUNC macro
authorEmil Velikov <emil.velikov@collabora.com>
Thu, 21 Apr 2016 02:48:39 +0000 (03:48 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Sun, 1 May 2016 07:37:25 +0000 (08:37 +0100)
The macro has been gone since commit 1f1cf6fcb0e "anv: Get rid of
GENX_FUNC"

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Eduardo Lima Mitev <elima@igalia.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/genxml/gen_macros.h

index 052c57f8a770229cc148962d19c062c0cb0cc74c..868bc2203c8e72f9ad92bbf4174322b45962b2cf 100644 (file)
  * The prefixing macros GENX() and genX() automatically prefix whatever you
  * give them by GENX_ or genX_  where X is the gen number.
  *
- * You can declare a function to be used on some range of gens like this:
- *
- * GENX_FUNC(GEN7, GEN75) void
- * genX(my_function_name)(args...)
- * {
- *    // Do stuff
- * }
- *
- * If the file is compiled for any set of gens containing gen7 and gen75,
- * the function will effectively only get compiled twice as
- * gen7_my_function_nmae and gen75_my_function_name.  The function has to
- * be compilable on all gens, but it will become a static inline that gets
- * discarded by the compiler on all gens not in range.
- *
  * You can do pseudo-runtime checks in your function such as
  *
  * if (GEN_GEN > 8 || GEN_IS_HASWELL) {