diff options
| author | GregF <greg@LunarG.com> | 2014-11-18 18:01:01 -0700 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2014-12-02 14:44:59 -0700 |
| commit | f6238118235f9f6d39fdef20addb79ee2096d43d (patch) | |
| tree | cd766b2070676f13109cf836d62122fafadbd9e0 | |
| parent | 2b373479e58dcbac27e7b2245ecd11eea133e8ee (diff) | |
| download | usermoji-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.h | 1 |
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)]); \ |
