Class VkWin32SurfaceCreateInfoKHR

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkWin32SurfaceCreateInfoKHR extends Struct<VkWin32SurfaceCreateInfoKHR> implements NativeResource
Structure specifying parameters of a newly created Win32 surface object.
Valid Usage
  • hinstance must be a valid Win32 HINSTANCE
  • hwnd must be a valid Win32 HWND
Valid Usage (Implicit)
See Also

CreateWin32SurfaceKHR

Layout


 struct VkWin32SurfaceCreateInfoKHR {
     VkStructureType sType();
     void const * pNext();
     VkWin32SurfaceCreateFlagsKHR flags();
     HINSTANCE hinstance();
     HWND hwnd();
 }