Lines Matching defs:desc
831 const VkVertexInputBindingDescription *desc =
833 attribs->buf_count = MAX2(desc->binding + 1, attribs->buf_count);
834 attribs->buf[desc->binding].stride = desc->stride;
835 attribs->buf[desc->binding].per_instance =
836 desc->inputRate == VK_VERTEX_INPUT_RATE_INSTANCE;
837 attribs->buf[desc->binding].instance_divisor = 1;
838 attribs->buf[desc->binding].special = false;
853 const VkVertexInputAttributeDescription *desc =
856 unsigned attrib = desc->location + VERT_ATTRIB_GENERIC0;
860 attribs->attrib[slot].buf = desc->binding;
862 vk_format_to_pipe_format(desc->format);
863 attribs->attrib[slot].offset = desc->offset;