From f6238118235f9f6d39fdef20addb79ee2096d43d Mon Sep 17 00:00:00 2001 From: GregF Date: Tue, 18 Nov 2014 18:01:01 -0700 Subject: Handle gaps in FS inputs. Added logic to handle when user varyings are written by the VS but not read by the FS. Also moved SBE command building from draw-time to pipeline-create. --- icd/common/icd-utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/icd/common/icd-utils.h b/icd/common/icd-utils.h index c102158c..fdefd16b 100644 --- a/icd/common/icd-utils.h +++ b/icd/common/icd-utils.h @@ -36,6 +36,7 @@ #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) #define u_popcount(u) __builtin_popcount(u) +#define u_popcountll(u) __builtin_popcountll(u) #define STATIC_ASSERT(expr) do { \ (void) sizeof(char[1 - 2 * !(expr)]); \ -- cgit v1.2.3