You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vkEnumerateDeviceExtensionProperties is in this library as PhysicalDevice.EnumerateDeviceExtensionProperties, duplicating the term Device. However, vkEnumerateInstanceExtensionProperties is Instance.EnumerateExtensionProperties, the second Instance has been dropped. Same for Enumerate(Thing)LayerProperties.
The text was updated successfully, but these errors were encountered:
The distinction here comes from Physical Device =/= Device - the Instance enumerate method is used for getting Instance extensions to create Instance objects, all sat within the same type. The Physical Device enumerate is used to get (logical) Device extensions to create (logical) Device objects, that are a different type than that which contains the enumerate/create methods.
vkEnumerateDeviceExtensionProperties
is in this library asPhysicalDevice.EnumerateDeviceExtensionProperties
, duplicating the termDevice
. However,vkEnumerateInstanceExtensionProperties
isInstance.EnumerateExtensionProperties
, the secondInstance
has been dropped. Same forEnumerate(Thing)LayerProperties
.The text was updated successfully, but these errors were encountered: