Lines Matching defs:properties
480 VkPhysicalDeviceProperties properties = {};
482 env.vulkan_functions.vkGetPhysicalDeviceProperties(bad_physical_dev, &properties),
515 VkPhysicalDeviceMemoryProperties properties = {};
516 ASSERT_DEATH(env.vulkan_functions.vkGetPhysicalDeviceMemoryProperties(bad_physical_dev, &properties),
643 VkFormatProperties2 properties = {};
644 properties.sType = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2;
645 properties.pNext = nullptr;
646 ASSERT_DEATH(env.vulkan_functions.vkGetPhysicalDeviceFormatProperties2(bad_physical_dev, VK_FORMAT_R8G8B8A8_UNORM, &properties),
666 VkImageFormatProperties2 properties = {};
667 properties.sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2;
668 properties.pNext = nullptr;
669 ASSERT_DEATH(env.vulkan_functions.vkGetPhysicalDeviceImageFormatProperties2(bad_physical_dev, &format_info, &properties),
686 VkPhysicalDeviceProperties2 properties = {};
687 properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
688 properties.pNext = nullptr;
689 ASSERT_DEATH(env.vulkan_functions.vkGetPhysicalDeviceProperties2(bad_physical_dev, &properties),
723 VkPhysicalDeviceMemoryProperties2 properties = {};
724 properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2;
725 properties.pNext = nullptr;
726 ASSERT_DEATH(env.vulkan_functions.vkGetPhysicalDeviceMemoryProperties2(bad_physical_dev, &properties),