parent
498066749d
commit
db1d12d77f
1 changed files with 7 additions and 0 deletions
|
|
@ -1263,6 +1263,13 @@ void VulkanExampleBase::handleMessages(HWND hWnd, UINT uMsg, WPARAM wParam, LPAR
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case WM_GETMINMAXINFO:
|
||||||
|
{
|
||||||
|
LPMINMAXINFO minMaxInfo = (LPMINMAXINFO)lParam;
|
||||||
|
minMaxInfo->ptMinTrackSize.x = 64;
|
||||||
|
minMaxInfo->ptMinTrackSize.y = 64;
|
||||||
|
break;
|
||||||
|
}
|
||||||
case WM_ENTERSIZEMOVE:
|
case WM_ENTERSIZEMOVE:
|
||||||
resizing = true;
|
resizing = true;
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue