Home
last modified time | relevance | path

Searched refs:push_descriptor_prop (Results 1 – 6 of 6) sorted by relevance

/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp119 auto push_descriptor_prop = lvl_init_struct<VkPhysicalDevicePushDescriptorPropertiesKHR>(); in GetPushDescriptorProperties() local
120 auto prop2 = lvl_init_struct<VkPhysicalDeviceProperties2KHR>(&push_descriptor_prop); in GetPushDescriptorProperties()
122 return push_descriptor_prop; in GetPushDescriptorProperties()
Dvklayertests_descriptor_renderpass_framebuffer.cpp6449 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
6450 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
6479 if (!(push_descriptor_prop.maxPushDescriptors == std::numeric_limits<uint32_t>::max())) { in TEST_F()
6481 binding.descriptorCount = push_descriptor_prop.maxPushDescriptors + 1; in TEST_F()
6872 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
6873 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
Dvkpositivelayertests.cpp2295 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
2296 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
2373 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
2374 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
2469 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
2470 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
Dvklayertests_pipeline_shader.cpp4481 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
4482 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
Dvklayertests_command.cpp4138 auto push_descriptor_prop = GetPushDescriptorProperties(instance(), gpu()); in TEST_F() local
4139 if (push_descriptor_prop.maxPushDescriptors < 1) { in TEST_F()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp2632 VkPhysicalDevicePushDescriptorPropertiesKHR push_descriptor_prop; in PostCallRecordCreateDevice() local
2633 GetPhysicalDeviceExtProperties(gpu, dev_ext.vk_khr_push_descriptor, &push_descriptor_prop); in PostCallRecordCreateDevice()
2634 phys_dev_props->max_push_descriptors = push_descriptor_prop.maxPushDescriptors; in PostCallRecordCreateDevice()