Skip to content

Commit

Permalink
Incorrect surface types were being exposed.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWoloszyn committed Mar 28, 2018
1 parent d911080 commit 2795999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gapis/api/vulkan/linux/vulkan_linux.api
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ cmd VkResult vkCreateXlibSurfaceKHR(
_ = pCreateInfo[0]
surface := new!SurfaceObject()
surface.Instance = instance
surface.Type = SURFACE_TYPE_WAYLAND
surface.Type = SURFACE_TYPE_XLIB
// TODO: pAllocator

handle := ?
Expand Down Expand Up @@ -210,7 +210,7 @@ cmd VkResult vkCreateMirSurfaceKHR(
_ = pCreateInfo[0]
surface := new!SurfaceObject()
surface.Instance = instance
surface.Type = SURFACE_TYPE_WAYLAND
surface.Type = SURFACE_TYPE_MIR
// TODO: pAllocator

handle := ?
Expand Down

0 comments on commit 2795999

Please sign in to comment.