summaryrefslogtreecommitdiff
path: root/lib/mesa/src/freedreno
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2020-08-26 05:29:31 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2020-08-26 05:29:31 +0000
commitb588b4f3eff82e42345c0b15670ab089b53f9cd6 (patch)
tree49350a8ad21d0a8b6f6b5313a33a3080ae81d821 /lib/mesa/src/freedreno
parent2ebab484cac65c01dd19e8c1b62eb58c83074390 (diff)
Import Mesa 20.1.6
Diffstat (limited to 'lib/mesa/src/freedreno')
-rw-r--r--lib/mesa/src/freedreno/vulkan/tu_wsi_x11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mesa/src/freedreno/vulkan/tu_wsi_x11.c b/lib/mesa/src/freedreno/vulkan/tu_wsi_x11.c
index e6ce75e7f..180e504a0 100644
--- a/lib/mesa/src/freedreno/vulkan/tu_wsi_x11.c
+++ b/lib/mesa/src/freedreno/vulkan/tu_wsi_x11.c
@@ -75,7 +75,7 @@ VkResult tu_CreateXcbSurfaceKHR(
if (pAllocator)
alloc = pAllocator;
else
- alloc = &instance->vk.alloc;
+ alloc = &instance->alloc;
return wsi_create_xcb_surface(alloc, pCreateInfo, pSurface);
}
@@ -94,7 +94,7 @@ VkResult tu_CreateXlibSurfaceKHR(
if (pAllocator)
alloc = pAllocator;
else
- alloc = &instance->vk.alloc;
+ alloc = &instance->alloc;
return wsi_create_xlib_surface(alloc, pCreateInfo, pSurface);
}