Lines Matching refs:result
202 VkResult result = VK_SUCCESS;
207 result =
209 if (result != VK_SUCCESS)
210 return result;
224 VkResult result = VK_SUCCESS;
233 result = vn_image_init(dev, create_info, img);
234 if (result != VK_SUCCESS) {
237 return result;
250 VkResult result = vn_image_init(dev, create_info, img);
251 img->deferred_info->initialized = result == VK_SUCCESS;
252 return result;
262 VkResult result = VK_SUCCESS;
271 result = vn_image_deferred_info_init(img, create_info, alloc);
272 if (result != VK_SUCCESS) {
275 return result;
296 VkResult result;
321 result = vn_wsi_create_image(dev, pCreateInfo, wsi_info, alloc, &img);
323 result =
326 result = vn_android_image_from_ahb(dev, pCreateInfo, alloc, &img);
328 result = vn_wsi_create_image_from_swapchain(
331 result = vn_image_create(dev, pCreateInfo, alloc, &img);
334 if (result != VK_SUCCESS)
335 return vn_error(dev->instance, result);