diff options
| author | Mark Young <marky@lunarg.com> | 2017-04-05 15:58:44 -0600 |
|---|---|---|
| committer | Mark Young <marky@lunarg.com> | 2017-05-30 11:45:27 -0600 |
| commit | ab17740d01c977d7189ae88a47ff1d747165e519 (patch) | |
| tree | b58cc4e089aebc622b9406d4fa34c63ddc591e38 /include/vulkan | |
| parent | f4ab92db95aa8311d54bc6cb26637997b090f46f (diff) | |
| download | usermoji-ab17740d01c977d7189ae88a47ff1d747165e519.tar.xz | |
layers: gh1649 - Fix clang warning
The function pointer definition for the Physical device extensions
was incorrect. Updated to work properly and remove clang warning.
This was also causing an issue with Tony's latest test.
Change-Id: Ibdd19754a4394d1b88d3a20268238baaf3ec0907
Diffstat (limited to 'include/vulkan')
| -rw-r--r-- | include/vulkan/vk_layer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vulkan/vk_layer.h b/include/vulkan/vk_layer.h index 5458ff2b..a7ac2915 100644 --- a/include/vulkan/vk_layer.h +++ b/include/vulkan/vk_layer.h @@ -68,7 +68,7 @@ typedef struct VkNegotiateLayerInterface { typedef VkResult (VKAPI_PTR *PFN_vkNegotiateLoaderLayerInterfaceVersion)(VkNegotiateLayerInterface *pVersionStruct); // Function prototype for unknown physical device extension command -typedef VkResult(VKAPI_PTR *PFN_PhysDevExt)(VkPhysicalDevice phys_device, ...); +typedef VkResult(VKAPI_PTR *PFN_PhysDevExt)(VkPhysicalDevice phys_device); // ------------------------------------------------------------------------------------------------ // CreateInstance and CreateDevice support structures |
