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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1191
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
1 proc CreateNativeSurface*(instance: VkInstance, window: NativeWindow): VkSurfaceKHR =
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
2 var surfaceCreateInfo = VkXlibSurfaceCreateInfoKHR(
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
3 sType: VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR,
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
4 dpy: cast[ptr Display](window.display),
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
5 window: cast[Window](window.window),
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
6 )
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
7 checkVkResult vkCreateXlibSurfaceKHR(instance, addr(surfaceCreateInfo), nil, addr(result))