Lines Matching defs:lp_count
262 uint32_t lp_count;
263 vkEnumerateInstanceLayerProperties(&lp_count, NULL);
264 VkLayerProperties* lp = calloc(lp_count, sizeof(VkLayerProperties));
265 vkEnumerateInstanceLayerProperties(&lp_count, lp);
267 for (uint32_t i = 0; i < lp_count; i++)
283 uint32_t lp_count;
284 vkEnumerateDeviceLayerProperties(device, &lp_count, NULL);
285 VkLayerProperties* lp = calloc(lp_count, sizeof(VkLayerProperties));
286 vkEnumerateDeviceLayerProperties(device, &lp_count, lp);
288 for (uint32_t i = 0; i < lp_count; i++)