Lines Matching defs:layer_props
190 VkLayerProperties layer_props[2] = {};
192 ASSERT_EQ(VK_SUCCESS, env.vulkan_functions.vkEnumerateInstanceLayerProperties(&layer_count, layer_props));
195 ASSERT_TRUE(string_eq(layer_name_1, layer_props[0].layerName));
196 ASSERT_TRUE(string_eq(layer_name_2, layer_props[1].layerName));
203 VkLayerProperties layer_props[2] = {};
204 ASSERT_EQ(VK_SUCCESS, env.vulkan_functions.vkEnumerateInstanceLayerProperties(&layer_count, layer_props));
206 ASSERT_TRUE(string_eq(layer_name_1, layer_props[0].layerName));
207 ASSERT_TRUE(string_eq(layer_name_2, layer_props[1].layerName));
210 VkLayerProperties layer_props{};
212 ASSERT_EQ(VK_INCOMPLETE, env.vulkan_functions.vkEnumerateInstanceLayerProperties(&layer_count, &layer_props));
213 ASSERT_TRUE(string_eq(layer_name_1, layer_props.layerName));
325 auto layer_props = inst.GetActiveLayers(phys_dev, 1);
326 ASSERT_TRUE(string_eq(layer_props.at(0).layerName, layer_name));
329 VkLayerProperties layer_props;
331 ASSERT_EQ(VK_INCOMPLETE, env.vulkan_functions.vkEnumerateDeviceLayerProperties(phys_dev, &layer_count, &layer_props));
1363 auto layer_props = env.GetLayerProperties(1);
1364 ASSERT_TRUE(string_eq(layer_name, layer_props[0].layerName));
1394 auto layer_props = env.GetLayerProperties(1);
1395 ASSERT_TRUE(string_eq(layer_name, layer_props[0].layerName));
1430 auto layer_props = env.GetLayerProperties(2);
1431 ASSERT_TRUE(check_permutation({layer_name_0, layer_name_1}, layer_props));
1469 auto layer_props = env.GetLayerProperties(2);
1470 ASSERT_TRUE(check_permutation({layer_name_0, layer_name_1}, layer_props));
1501 auto layer_props = env.GetLayerProperties(1);
1502 ASSERT_TRUE(string_eq(layer_name, layer_props[0].layerName));
1527 auto layer_props = env.GetLayerProperties(1);
1528 ASSERT_TRUE(string_eq(layer_name, layer_props[0].layerName));
1558 auto layer_props = env.GetLayerProperties(2);
1559 ASSERT_TRUE(check_permutation({layer_name_0, layer_name_1}, layer_props));
3797 auto layer_props = inst.GetActiveLayers(phys_dev, 1);
3798 ASSERT_TRUE(string_eq(layer_props.at(0).layerName, layer_name));
3801 VkLayerProperties layer_props;
3803 ASSERT_EQ(VK_INCOMPLETE, env.vulkan_functions.vkEnumerateDeviceLayerProperties(phys_dev, &layer_count, &layer_props));