Lines Matching defs:attribs
822 struct panvk_attribs_info *attribs = &pipeline->attribs;
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 =
837 attribs->buf[desc->binding].instance_divisor = 1;
838 attribs->buf[desc->binding].special = false;
845 attribs->buf[div->binding].instance_divisor = div->divisor;
860 attribs->attrib[slot].buf = desc->binding;
861 attribs->attrib[slot].format =
863 attribs->attrib[slot].offset = desc->offset;
867 attribs->buf[attribs->buf_count].special = true;
868 attribs->buf[attribs->buf_count].special_id = PAN_VERTEX_ID;
869 attribs->attrib[PAN_VERTEX_ID].buf = attribs->buf_count++;
870 attribs->attrib[PAN_VERTEX_ID].format = PIPE_FORMAT_R32_UINT;
874 attribs->buf[attribs->buf_count].special = true;
875 attribs->buf[attribs->buf_count].special_id = PAN_INSTANCE_ID;
876 attribs->attrib[PAN_INSTANCE_ID].buf = attribs->buf_count++;
877 attribs->attrib[PAN_INSTANCE_ID].format = PIPE_FORMAT_R32_UINT;
880 attribs->attrib_count = MAX2(attribs->attrib_count, vs->attribute_count);