Beispiel #1
0
 public ApplicationInfo(VkVersion apiVersion, VkVersion applicationVersion, VkVersion engineVersion, string applicationName, string engineName)
 {
     this.apiVersion         = apiVersion;
     this.applicationName    = applicationName;
     this.engineName         = engineName;
     this.applicationVersion = applicationVersion;
     this.engineVersion      = engineVersion;
 }
Beispiel #2
0
 internal Extension(VkExtensionProperties prop)
 {
     unsafe
     {
         Name = Interop.GetString(&prop.extensionName);
     }
     Version = prop.specVersion;
 }