Lines Matching refs:attribute_desc
1528 VkVertexInputAttributeDescription attribute_desc[3] = {};
1529 attribute_desc[0].location = 0;
1530 attribute_desc[0].binding = binding_desc[0].binding;
1531 attribute_desc[0].format = VK_FORMAT_R32G32_SFLOAT;
1532 attribute_desc[0].offset = IM_OFFSETOF(ImDrawVert, pos);
1533 attribute_desc[1].location = 1;
1534 attribute_desc[1].binding = binding_desc[0].binding;
1535 attribute_desc[1].format = VK_FORMAT_R32G32_SFLOAT;
1536 attribute_desc[1].offset = IM_OFFSETOF(ImDrawVert, uv);
1537 attribute_desc[2].location = 2;
1538 attribute_desc[2].binding = binding_desc[0].binding;
1539 attribute_desc[2].format = VK_FORMAT_R8G8B8A8_UNORM;
1540 attribute_desc[2].offset = IM_OFFSETOF(ImDrawVert, col);
1547 vertex_info.pVertexAttributeDescriptions = attribute_desc;