Exemplo n.º 1
0
 protected BaseSoftwareDevice(SoftwareInstance instance)
 {
     this.m_instance         = instance;
     this.DebugReportMessage = m_instance.DebugReportMessage;
     this.m_DescriptorPools  = new List <VkDescriptorPool>();
 }
Exemplo n.º 2
0
 public static VkResult Create(SoftwareInstance instance, VkWin32SurfaceCreateInfoKHR createInfo, out VkSurfaceKHR pSurface)
 {
     pSurface = new SoftwareFormSurface(instance, createInfo);
     return(VkResult.VK_SUCCESS);
 }