Mercurial > games > semicongine
annotate semiconginev2/platform/linux/surface.nim @ 1262:66956794ce6d compiletime-tests
closing
author | sam <sam@basx.dev> |
---|---|
date | Sun, 28 Jul 2024 21:45:02 +0700 |
parents | 56781cc0fc7c |
children |
rev | line source |
---|---|
1191 | 1 proc CreateNativeSurface*(instance: VkInstance, window: NativeWindow): VkSurfaceKHR = |
2 var surfaceCreateInfo = VkXlibSurfaceCreateInfoKHR( | |
3 sType: VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR, | |
4 dpy: cast[ptr Display](window.display), | |
5 window: cast[Window](window.window), | |
6 ) | |
7 checkVkResult vkCreateXlibSurfaceKHR(instance, addr(surfaceCreateInfo), nil, addr(result)) |