Skip to content

Commit

Permalink
WinRT: minor code-comment cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLudwig committed Dec 31, 2015
1 parent 6823a22 commit 44c0b2d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 0 additions & 5 deletions src/core/winrt/SDL_winrtapp_direct3d.cpp
Expand Up @@ -220,11 +220,6 @@ WINRT_ProcessWindowSizeChange() // TODO: Pass an SDL_Window-identifying thing in

const Uint32 latestFlags = WINRT_DetectWindowFlags(window);
if (latestFlags & SDL_WINDOW_MAXIMIZED) {
/* SDL_SendWindowEvent, as of this writing (2015-Dec-27), *won't* actually
send events if the associated flag is already set. This is taken
advantage of here. The below call is only meant to send a
window event, if and when it is needed!
*/
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MAXIMIZED, 0, 0);
} else {
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0);
Expand Down
1 change: 1 addition & 0 deletions src/video/winrt/SDL_winrtvideo.cpp
Expand Up @@ -492,6 +492,7 @@ WINRT_DetectWindowFlags(SDL_Window * window)
return latestFlags;
}

// TODO, WinRT: consider removing WINRT_UpdateWindowFlags, and just calling WINRT_DetectWindowFlags as-appropriate (with appropriate calls to SDL_SendWindowEvent)
void
WINRT_UpdateWindowFlags(SDL_Window * window, Uint32 mask)
{
Expand Down

0 comments on commit 44c0b2d

Please sign in to comment.