Lines Matching defs:attribute
4715 enum nk_draw_vertex_layout_attribute attribute;
9472 return (element->attribute == NK_VERTEX_ATTRIBUTE_COUNT ||
9555 void *attribute = dst;
9564 NK_MEMCPY(attribute, &value, sizeof(value));
9565 attribute = (void*)((char*)attribute + sizeof(char));
9569 NK_MEMCPY(attribute, &value, sizeof(value));
9570 attribute = (void*)((char*)attribute + sizeof(value));
9574 NK_MEMCPY(attribute, &value, sizeof(value));
9575 attribute = (void*)((char*)attribute + sizeof(nk_int));
9579 NK_MEMCPY(attribute, &value, sizeof(value));
9580 attribute = (void*)((char*)attribute + sizeof(unsigned char));
9584 NK_MEMCPY(attribute, &value, sizeof(value));
9585 attribute = (void*)((char*)attribute + sizeof(value));
9589 NK_MEMCPY(attribute, &value, sizeof(value));
9590 attribute = (void*)((char*)attribute + sizeof(nk_uint));
9593 NK_MEMCPY(attribute, &values[value_index], sizeof(values[value_index]));
9594 attribute = (void*)((char*)attribute + sizeof(float));
9598 NK_MEMCPY(attribute, &value, sizeof(value));
9599 attribute = (void*)((char*)attribute + sizeof(double));
9612 switch (elem_iter->attribute) {
9614 default: NK_ASSERT(0 && "wrong element attribute"); break;