Lines Matching refs:attribute_desc
1247 VkVertexInputAttributeDescription attribute_desc[3] = {};
1248 attribute_desc[0].location = 0;
1249 attribute_desc[0].binding = binding_desc[0].binding;
1250 attribute_desc[0].format = VK_FORMAT_R32G32_SFLOAT;
1251 attribute_desc[0].offset = IM_OFFSETOF(ImDrawVert, pos);
1252 attribute_desc[1].location = 1;
1253 attribute_desc[1].binding = binding_desc[0].binding;
1254 attribute_desc[1].format = VK_FORMAT_R32G32_SFLOAT;
1255 attribute_desc[1].offset = IM_OFFSETOF(ImDrawVert, uv);
1256 attribute_desc[2].location = 2;
1257 attribute_desc[2].binding = binding_desc[0].binding;
1258 attribute_desc[2].format = VK_FORMAT_R8G8B8A8_UNORM;
1259 attribute_desc[2].offset = IM_OFFSETOF(ImDrawVert, col);
1266 vertex_info.pVertexAttributeDescriptions = attribute_desc;