annotate semiconginev2/platform/windows/surface.nim @ 1219:c61658d2d227 compiletime-tests

del: old test file
author sam <sam@basx.dev>
date Wed, 17 Jul 2024 21:03:30 +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 assert instance.Valid
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
3 var surfaceCreateInfo = VkWin32SurfaceCreateInfoKHR(
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
4 sType: VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR,
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
5 hinstance: cast[HINSTANCE](window.hinstance),
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
6 hwnd: cast[HWND](window.hwnd),
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
7 )
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
8 checkVkResult vkCreateWin32SurfaceKHR(instance, addr(surfaceCreateInfo), nil, addr(result))