MCPcopy Create free account
hub / github.com/SaschaWillems/VulkanCapsViewer / addVkSampleCountFlagsItem

Function addVkSampleCountFlagsItem

vulkanCapsViewer.cpp:1130–1137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1128}
1129
1130void addVkSampleCountFlagsItem(QStandardItem* parent, const QVariantMap::const_iterator& iterator)
1131{
1132 const auto samples = static_cast<VkSampleCountFlags>(iterator.value().toUInt());
1133 QList<QStandardItem*> item;
1134 item << new QStandardItem(iterator.key());
1135 item << new QStandardItem(vulkanResources::toQStringList(samples));
1136 parent->appendRow(item);
1137}
1138
1139void addUUIDItem(QStandardItem* parent, const QString& key, uint8_t* UUID)
1140{

Callers 1

addPropertiesRowFunction · 0.85

Calls 1

toQStringListFunction · 0.85

Tested by

no test coverage detected