Lines Matching defs:result
48 VkResult result;
62 result =
67 if (result != VK_SUCCESS)
81 result =
86 return result == VK_SUCCESS;
148 VkResult result;
162 result =
167 if (result != VK_SUCCESS)
193 result =
198 return result == VK_SUCCESS;
604 VkResult result;
623 result = v3dv_CreateImage(_device, &uiview_info, &device->vk.alloc, &uiview);
624 if (result != VK_SUCCESS)
631 result =
635 if (result != VK_SUCCESS)
660 result =
662 if (result != VK_SUCCESS)
672 result =
676 if (result != VK_SUCCESS)
1006 VkResult result =
1008 if (result != VK_SUCCESS) {
1107 * image, it will result in an image with size W*bWxH*bH, where bW and bH
1506 VkResult result =
1512 if (result == VK_SUCCESS) {
1525 return result;
1533 VkResult result;
1535 result = create_texel_buffer_copy_descriptor_pool(cmd_buffer);
1536 if (result != VK_SUCCESS)
1537 return result;
1550 result = v3dv_AllocateDescriptorSets(_device, &info, set);
1553 if (result == VK_ERROR_OUT_OF_POOL_MEMORY) {
1554 result = create_texel_buffer_copy_descriptor_pool(cmd_buffer);
1555 if (result == VK_SUCCESS) {
1557 result = v3dv_AllocateDescriptorSets(_device, &info, set);
1561 return result;
1807 nir_ssa_dest_init(&tex->instr, &tex->dest, 4, 32, "texel buffer result");
1971 VkResult result;
2054 result = allocate_texel_buffer_copy_descriptor_set(cmd_buffer, &set);
2055 if (result != VK_SUCCESS)
2073 result = v3dv_CreateBufferView(_device, &buffer_view_info,
2076 if (result != VK_SUCCESS)
2131 result = v3dv_create_image_view(cmd_buffer->device,
2133 if (result != VK_SUCCESS)
2151 result = v3dv_CreateFramebuffer(_device, &fb_info,
2153 if (result != VK_SUCCESS)
2335 VkResult result =
2337 if (result != VK_SUCCESS)
2350 result = v3dv_AllocateMemory(_device, &alloc_info, &device->vk.alloc, &mem);
2351 if (result != VK_SUCCESS)
2419 VkResult result =
2422 if (result != VK_SUCCESS)
2429 result = vk_common_BindImageMemory(_device, buffer_image, mem, 0);
2430 if (result != VK_SUCCESS)
3037 VkResult result;
3039 result = v3dv_CreateRenderPass2(v3dv_device_to_handle(device),
3041 if (result != VK_SUCCESS)
3045 result = v3dv_CreateRenderPass2(v3dv_device_to_handle(device),
3047 return result == VK_SUCCESS;
3471 VkResult result =
3482 return result == VK_SUCCESS;
3724 VkResult result =
3730 if (result == VK_SUCCESS) {
3743 return result;
3751 VkResult result;
3753 result = create_blit_descriptor_pool(cmd_buffer);
3754 if (result != VK_SUCCESS)
3755 return result;
3768 result = v3dv_AllocateDescriptorSets(_device, &info, set);
3771 if (result == VK_ERROR_OUT_OF_POOL_MEMORY) {
3772 result = create_blit_descriptor_pool(cmd_buffer);
3773 if (result == VK_SUCCESS) {
3775 result = v3dv_AllocateDescriptorSets(_device, &info, set);
3779 return result;
3804 VkResult result;
3997 result = v3dv_CreateSampler(_device, &sampler_info, &device->vk.alloc,
3999 if (result != VK_SUCCESS)
4053 result = v3dv_create_image_view(device, &dst_image_view_info,
4055 if (result != VK_SUCCESS)
4073 result = v3dv_CreateFramebuffer(_device, &fb_info,
4075 if (result != VK_SUCCESS)
4093 result = allocate_blit_source_descriptor_set(cmd_buffer, &set);
4094 if (result != VK_SUCCESS)
4113 result = v3dv_create_image_view(device, &src_image_view_info,
4115 if (result != VK_SUCCESS)