Skip to content

Commit

Permalink
Add VK_ERROR_FRAGMENTATION_EXT (flutter#5981)
Browse files Browse the repository at this point in the history
  • Loading branch information
John Bauman authored Aug 10, 2018
1 parent 6077c0e commit aee78c8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions vulkan/vulkan_interface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ std::string VulkanResultToString(VkResult result) {
return "VK_ERROR_NOT_PERMITTED_EXT";
#endif

#if VK_HEADER_VERSION >= 72
case VK_ERROR_FRAGMENTATION_EXT:
return "VK_ERROR_FRAGMENTATION_EXT";
#endif

#if OS_FUCHSIA
#if VK_KHR_external_memory
case VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR:
Expand Down

0 comments on commit aee78c8

Please sign in to comment.