diff options
| author | Ian Elliott <ianelliott@google.com> | 2015-11-24 09:47:14 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-01 10:18:24 -0700 |
| commit | fba9f582f7c226f82652494b8ae6c2de31f3c6a3 (patch) | |
| tree | d43d6998111740ca21f93e3923648707708f552b /include/vulkan | |
| parent | a031f528c248df84d4b8b58f05ff7543ccb0be08 (diff) | |
| download | usermoji-fba9f582f7c226f82652494b8ae6c2de31f3c6a3.tar.xz | |
WSI-ICD: Fix Windows compilation error.
Diffstat (limited to 'include/vulkan')
| -rw-r--r-- | include/vulkan/vk_icd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vulkan/vk_icd.h b/include/vulkan/vk_icd.h index 43e37efc..cdd50f45 100644 --- a/include/vulkan/vk_icd.h +++ b/include/vulkan/vk_icd.h @@ -64,8 +64,8 @@ typedef struct _VkIcdSurfaceWayland { #ifdef VK_USE_PLATFORM_WIN32_KHR typedef struct _VkIcdSurfaceWin32 { VkIcdSurfaceBase base; - HINSTANCE hinstance, - HWND hwnd, + HINSTANCE hinstance; + HWND hwnd; } VkIcdSurfaceWin32; #endif // VK_USE_PLATFORM_WIN32_KHR |
