aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregF <greg@LunarG.com>2014-11-18 18:01:01 -0700
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2014-12-02 14:44:59 -0700
commitf6238118235f9f6d39fdef20addb79ee2096d43d (patch)
treecd766b2070676f13109cf836d62122fafadbd9e0
parent2b373479e58dcbac27e7b2245ecd11eea133e8ee (diff)
downloadusermoji-f6238118235f9f6d39fdef20addb79ee2096d43d.tar.xz
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.
-rw-r--r--icd/common/icd-utils.h1
1 files changed, 1 insertions, 0 deletions
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)]); \