From 08dc93c67c7d599a09cf353d50a3f0cf72f76135 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 8 Apr 2019 11:10:08 -0700 Subject: [PATCH] glsl/list: Add an exec_list_is_singular() helper. Similar to list_is_singular() in util/list.h. Reviewed-by: Jason Ekstrand Reviewed-by: Matt Turner --- src/compiler/glsl/list.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/compiler/glsl/list.h b/src/compiler/glsl/list.h index 979f6fcc539..ed77dcfab41 100644 --- a/src/compiler/glsl/list.h +++ b/src/compiler/glsl/list.h @@ -372,6 +372,13 @@ exec_list_is_empty(const struct exec_list *list) return list->head_sentinel.next == &list->tail_sentinel; } +static inline bool +exec_list_is_singular(const struct exec_list *list) +{ + return !exec_list_is_empty(list) && + list->head_sentinel.next->next == &list->tail_sentinel; +} + static inline const struct exec_node * exec_list_get_head_const(const struct exec_list *list) {