Lines Matching defs:properties
200 log << TestLog::Message << "External image format properties: " << imageFormatInfo << "\n"<< externalProperties << TestLog::EndMessage;
229 vk::VkExternalBufferProperties properties =
235 vki.getPhysicalDeviceExternalBufferProperties(physicalDevice, &info, &properties);
237 log << TestLog::Message << "External buffer properties: " << info << "\n" << properties << TestLog::EndMessage;
239 if ((properties.externalMemoryProperties.externalMemoryFeatures & vk::VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT) == 0
240 || (properties.externalMemoryProperties.externalMemoryFeatures & vk::VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT) == 0)
243 if (!config.dedicated && (properties.externalMemoryProperties.externalMemoryFeatures & vk::VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT) != 0)
265 vk::VkExternalSemaphoreProperties properties =
274 vki.getPhysicalDeviceExternalSemaphoreProperties(physicalDevice, &info, &properties);
276 log << TestLog::Message << info << "\n" << properties << TestLog::EndMessage;
278 if ((properties.externalSemaphoreFeatures & vk::VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT) == 0
279 || (properties.externalSemaphoreFeatures & vk::VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT) == 0)
953 std::vector<deUint32> getFamilyIndices (const std::vector<vk::VkQueueFamilyProperties>& properties)
955 std::vector<deUint32> indices (properties.size(), 0);
957 for (deUint32 ndx = 0; ndx < properties.size(); ndx++)