From 22cd9173295e2212e355db514bfc52138d03079d Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 25 Jun 2014 10:32:38 -0700 Subject: mesa: Add and use foreach_in_list_use_after. Reviewed-by: Ian Romanick --- src/glsl/list.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/glsl/list.h') diff --git a/src/glsl/list.h b/src/glsl/list.h index a4c64082122..77e3aaf26e4 100644 --- a/src/glsl/list.h +++ b/src/glsl/list.h @@ -592,6 +592,11 @@ inline void exec_node::insert_before(exec_list *before) __next != NULL; \ __node = __next, __next = (__type *)__next->next) +#define foreach_in_list_use_after(__type, __inst, __list) \ + __type *(__inst); \ + for ((__inst) = (__type *)(__list)->head; \ + !(__inst)->is_tail_sentinel(); \ + (__inst) = (__type *)(__inst)->next) /** * Iterate through two lists at once. Stops at the end of the shorter list. * -- cgit v1.2.3