From: Juan A. Suarez Romero Date: Fri, 14 Jul 2017 10:31:38 +0000 (+0000) Subject: anv/pipeline: do not use BITFIELD64_BIT() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5cd4ece34ebdc1383f1e2376c88097d06544e2f6;p=mesa.git anv/pipeline: do not use BITFIELD64_BIT() In the previous commit, forgot to apply v2 suggestions. Fixes: 28d0c38 (anv/pipeline: use unsigned long long constant to check enable vertex inputs) Signed-off-by: Juan A. Suarez Romero --- diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index edbe2e7a7ac..047f90ce08a 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -1330,7 +1330,7 @@ anv_pipeline_init(struct anv_pipeline *pipeline, const VkVertexInputAttributeDescription *desc = &vi_info->pVertexAttributeDescriptions[i]; - if (inputs_read & BITFIELD64_BIT(VERT_ATTRIB_GENERIC0 + desc->location)) + if (inputs_read & (1ull << (VERT_ATTRIB_GENERIC0 + desc->location))) pipeline->vb_used |= 1 << desc->binding; }