1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-02 16:20:39 +00:00

GDI: flip image and render text after other graphics

This commit is contained in:
Brad Parker 2017-01-09 00:52:36 -05:00
parent 6fe2a974a5
commit bdc68e679f

@ -252,9 +252,6 @@ static bool gdi_gfx_frame(void *data, const void *frame,
menu_driver_ctl(RARCH_MENU_CTL_FRAME, NULL); menu_driver_ctl(RARCH_MENU_CTL_FRAME, NULL);
#endif #endif
if (msg)
font_driver_render_msg(NULL, msg, NULL);
if (draw) if (draw)
{ {
HDC winDC = GetDC(hwnd); HDC winDC = GetDC(hwnd);
@ -281,7 +278,7 @@ static bool gdi_gfx_frame(void *data, const void *frame,
ZeroMemory(&info, sizeof(BITMAPINFO)); ZeroMemory(&info, sizeof(BITMAPINFO));
info.bmiHeader.biBitCount = gdi_video_bits; info.bmiHeader.biBitCount = gdi_video_bits;
info.bmiHeader.biWidth = width; info.bmiHeader.biWidth = width;
info.bmiHeader.biHeight = height; info.bmiHeader.biHeight = -height;
info.bmiHeader.biPlanes = 1; info.bmiHeader.biPlanes = 1;
info.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); info.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
info.bmiHeader.biSizeImage = pitch * height; info.bmiHeader.biSizeImage = pitch * height;
@ -337,6 +334,9 @@ static bool gdi_gfx_frame(void *data, const void *frame,
ReleaseDC(hwnd, winDC); ReleaseDC(hwnd, winDC);
} }
if (msg)
font_driver_render_msg(NULL, msg, NULL);
//InvalidateRect(hwnd, NULL, true); //InvalidateRect(hwnd, NULL, true);
video_context_driver_update_window_title(); video_context_driver_update_window_title();