Mercurial > games > semicongine
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 |
| rev | line source |
|---|---|
| 1191 | 1 proc CreateNativeSurface*(instance: VkInstance, window: NativeWindow): VkSurfaceKHR = |
| 2 assert instance.Valid | |
| 3 var surfaceCreateInfo = VkWin32SurfaceCreateInfoKHR( | |
| 4 sType: VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR, | |
| 5 hinstance: cast[HINSTANCE](window.hinstance), | |
| 6 hwnd: cast[HWND](window.hwnd), | |
| 7 ) | |
| 8 checkVkResult vkCreateWin32SurfaceKHR(instance, addr(surfaceCreateInfo), nil, addr(result)) |
