diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-05-12 17:23:55 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-17 19:47:02 -0600 |
| commit | fc1b02ddb65594ad2de9c6077f3462385cb7f6d8 (patch) | |
| tree | 51f8a4525510702486d2a3ac715b4fb684759692 /include | |
| parent | 96e7897ebc7804e7e116fcfc9c3f1bf99a1a4f89 (diff) | |
| download | usermoji-fc1b02ddb65594ad2de9c6077f3462385cb7f6d8.tar.xz | |
layers: Use the instance chain for entrypoints with instance
Also add to instance dispatch table CreateInstance and GetGlobalExtensionInfo
Diffstat (limited to 'include')
| -rw-r--r-- | include/vkLayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vkLayer.h b/include/vkLayer.h index 4940726e..021cf3de 100644 --- a/include/vkLayer.h +++ b/include/vkLayer.h @@ -160,12 +160,12 @@ typedef struct VkLayerInstanceDispatchTable_ { PFN_vkGetInstanceProcAddr GetInstanceProcAddr; PFN_vkGetProcAddr GetProcAddr; - /* non-dispatchable PFN_vkCreateInstance CreateInstance; */ + PFN_vkCreateInstance CreateInstance; PFN_vkDestroyInstance DestroyInstance; PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices; PFN_vkGetPhysicalDeviceInfo GetPhysicalDeviceInfo; PFN_vkCreateDevice CreateDevice; - /* non-dispatchable PFN_vkGetGlobalExtensionInfo GetGlobalExtensionInfo; */ + PFN_vkGetGlobalExtensionInfo GetGlobalExtensionInfo; PFN_vkGetPhysicalDeviceExtensionInfo GetPhysicalDeviceExtensionInfo; PFN_vkEnumerateLayers EnumerateLayers; PFN_vkGetMultiDeviceCompatibility GetMultiDeviceCompatibility; |
