commit | f3f8082b8cc52a5bca59e2a8713d64ee5b9df74e | [log] [tgz] |
---|---|---|
author | Ian Elliott <ian@LunarG.com> | Wed Oct 21 15:14:07 2015 -0600 |
committer | Ian Elliott <ian@lunarg.com> | Tue Oct 27 10:35:56 2015 -0600 |
tree | 116e04c5ccf75448691d389aaeca46d9203af6c5 | |
parent | d645ff783671afaf4b7b2b70a6d11814e1e602d1 [diff] [blame] |
tri/cube: Add WM_SIZE to Win32 event handler to resize a window.
diff --git a/demos/cube.c b/demos/cube.c index 6637bce..b1c4c6f 100644 --- a/demos/cube.c +++ b/demos/cube.c
@@ -1944,6 +1944,9 @@ case WM_PAINT: demo_run(&demo); break; + case WM_SIZE: + demo_resize(&demo); + break; default: break; }