Lines Matching defs:info
227 // Test report created outside of vkCreateInstance with info in vkEnumeratePhysicalDevices.
248 // Message should not be found (because it's info)
252 // Test report created outside of vkCreateInstance with info in vkEnumeratePhysicalDevices.
277 // Test report created outside of vkCreateInstance with a manual info message of the wrong message flag type to be logged.
304 // Test report created outside of vkCreateInstance with a manual info message of the wrong object type to be logged.
331 // Test report created outside of vkCreateInstance with a manual info message to be logged.
637 // Test debug utils created outside of vkCreateInstance with info in vkEnumeratePhysicalDevices.
650 // Create the debug utils messenger to collect validation info
664 // Message should not be found (because it's info)
668 // Test debug utils created outside of vkCreateInstance with info in vkEnumeratePhysicalDevices.
697 // Message should not be found (because it's info)
701 // Test debug utils created outside of vkCreateInstance with info in vkEnumeratePhysicalDevices.
732 // Test messenger created outside of vkCreateInstance with a manual info message of the wrong message severity to be logged.
774 // Test messenger created outside of vkCreateInstance with a manual info message of the wrong object type to be logged.
814 // Test messenger created outside of vkCreateInstance with a manual info message.
887 VkSwapchainCreateInfoKHR info{};
888 info.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR;
889 info.surface = surface;
892 ASSERT_EQ(VK_SUCCESS, dev_funcs.vkCreateSwapchainKHR(dev.dev, &info, nullptr, &swapchain));
1168 VkDebugUtilsObjectNameInfoEXT info = {};
1169 info.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT;
1170 info.objectType = VK_OBJECT_TYPE_DEVICE;
1171 info.objectHandle = (uint64_t)device.dev;
1172 info.pObjectName = "Test Name";
1173 ASSERT_EQ(VK_SUCCESS, SetDebugUtilsObjectNameEXT(device, &info));
1175 info.objectType = VK_OBJECT_TYPE_PHYSICAL_DEVICE;
1176 info.objectHandle = (uint64_t)phys_dev;
1177 ASSERT_EQ(VK_SUCCESS, SetDebugUtilsObjectNameEXT(device, &info));
1179 info.objectType = VK_OBJECT_TYPE_INSTANCE;
1180 info.objectHandle = (uint64_t)inst.inst;
1181 ASSERT_EQ(VK_SUCCESS, SetDebugUtilsObjectNameEXT(device, &info));
1186 VkDebugUtilsObjectTagInfoEXT info = {};
1187 info.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_TAG_INFO_EXT;
1188 info.objectType = VK_OBJECT_TYPE_DEVICE;
1189 info.objectHandle = (uint64_t)device.dev;
1190 info.pTag = "Test Name";
1191 ASSERT_EQ(VK_SUCCESS, SetDebugUtilsObjectTagEXT(device, &info));
1193 info.objectType = VK_OBJECT_TYPE_PHYSICAL_DEVICE;
1194 info.objectHandle = (uint64_t)phys_dev;
1195 ASSERT_EQ(VK_SUCCESS, SetDebugUtilsObjectTagEXT(device, &info));
1197 info.objectType = VK_OBJECT_TYPE_INSTANCE;
1198 info.objectHandle = (uint64_t)inst.inst;
1199 ASSERT_EQ(VK_SUCCESS, SetDebugUtilsObjectTagEXT(device, &info));
1205 VkDebugMarkerObjectNameInfoEXT info = {};
1206 info.sType = VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT;
1207 info.objectType = VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT;
1208 info.object = (uint64_t)device.dev;
1209 info.pObjectName = "Test Name";
1210 ASSERT_EQ(VK_SUCCESS, DebugMarkerSetObjectNameEXT(device, &info));
1212 info.objectType = VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT;
1213 info.object = (uint64_t)phys_dev;
1214 ASSERT_EQ(VK_SUCCESS, DebugMarkerSetObjectNameEXT(device, &info));
1216 info.objectType = VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT;
1217 info.object = (uint64_t)inst.inst;
1218 ASSERT_EQ(VK_SUCCESS, DebugMarkerSetObjectNameEXT(device, &info));
1223 VkDebugMarkerObjectTagInfoEXT info = {};
1224 info.sType = VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT;
1225 info.objectType = VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT;
1226 info.object = (uint64_t)device.dev;
1227 info.pTag = "Test Name";
1228 ASSERT_EQ(VK_SUCCESS, DebugMarkerSetObjectTagEXT(device, &info));
1230 info.objectType = VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT;
1231 info.object = (uint64_t)phys_dev;
1232 ASSERT_EQ(VK_SUCCESS, DebugMarkerSetObjectTagEXT(device, &info));
1234 info.objectType = VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT;
1235 info.object = (uint64_t)inst.inst;
1236 ASSERT_EQ(VK_SUCCESS, DebugMarkerSetObjectTagEXT(device, &info));