mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
GDI: does not freeze after a few seconds anymore, but the window still freezes when moving the mouse into it
This commit is contained in:
parent
8eba18a54f
commit
6fe2a974a5
@ -528,13 +528,12 @@ LRESULT CALLBACK WndProcGDI(HWND hwnd, UINT message,
|
|||||||
|
|
||||||
// All painting occurs here, between BeginPaint and EndPaint.
|
// All painting occurs here, between BeginPaint and EndPaint.
|
||||||
|
|
||||||
FillRect(hdc, &ps.rcPaint, (HBRUSH) (COLOR_WINDOW+1));
|
//FillRect(hdc, &ps.rcPaint, (HBRUSH) (COLOR_WINDOW+1));
|
||||||
|
|
||||||
EndPaint(hwnd, &ps);
|
EndPaint(hwnd, &ps);
|
||||||
|
return 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case WM_ERASEBKGND:
|
|
||||||
break;
|
|
||||||
case WM_DROPFILES:
|
case WM_DROPFILES:
|
||||||
case WM_SYSCOMMAND:
|
case WM_SYSCOMMAND:
|
||||||
case WM_CHAR:
|
case WM_CHAR:
|
||||||
|
@ -258,12 +258,23 @@ static bool gdi_gfx_frame(void *data, const void *frame,
|
|||||||
if (draw)
|
if (draw)
|
||||||
{
|
{
|
||||||
HDC winDC = GetDC(hwnd);
|
HDC winDC = GetDC(hwnd);
|
||||||
HDC dc = CreateCompatibleDC(winDC);
|
HDC memDC = CreateCompatibleDC(winDC);
|
||||||
HBITMAP bmp = CreateCompatibleBitmap(winDC, width, height);
|
HBITMAP bmp = CreateCompatibleBitmap(winDC, width, height);
|
||||||
|
HBITMAP bmp_old;
|
||||||
BITMAPINFO info;
|
BITMAPINFO info;
|
||||||
gfx_ctx_mode_t mode;
|
gfx_ctx_mode_t mode;
|
||||||
|
RECT rect;
|
||||||
|
HBRUSH brush;
|
||||||
|
|
||||||
SelectObject(dc, bmp);
|
GetClientRect(hwnd, &rect);
|
||||||
|
|
||||||
|
bmp_old = SelectObject(memDC, bmp);
|
||||||
|
|
||||||
|
brush = CreateSolidBrush(GetSysColor(COLOR_WINDOW));
|
||||||
|
|
||||||
|
FillRect(memDC, &rect, brush);
|
||||||
|
|
||||||
|
DeleteObject(brush);
|
||||||
|
|
||||||
video_context_driver_get_video_size(&mode);
|
video_context_driver_get_video_size(&mode);
|
||||||
|
|
||||||
@ -311,14 +322,22 @@ static bool gdi_gfx_frame(void *data, const void *frame,
|
|||||||
info.bmiColors[2].rgbReserved = 0x00;
|
info.bmiColors[2].rgbReserved = 0x00;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
StretchDIBits(dc, 0, 0, mode.width, mode.height, 0, 0, width, height,
|
StretchDIBits(memDC, 0, 0, mode.width, mode.height, 0, 0, width, height,
|
||||||
frame_to_copy, &info, DIB_RGB_COLORS, SRCCOPY);
|
frame_to_copy, &info, DIB_RGB_COLORS, SRCCOPY);
|
||||||
|
|
||||||
|
BitBlt(winDC,
|
||||||
|
rect.left, rect.top,
|
||||||
|
rect.right - rect.left, rect.bottom - rect.top,
|
||||||
|
memDC, 0, 0, SRCCOPY);
|
||||||
|
|
||||||
|
SelectObject(memDC, bmp_old);
|
||||||
|
|
||||||
DeleteObject(bmp);
|
DeleteObject(bmp);
|
||||||
DeleteDC(dc);
|
DeleteDC(memDC);
|
||||||
ReleaseDC(hwnd, winDC);
|
ReleaseDC(hwnd, winDC);
|
||||||
}
|
}
|
||||||
|
|
||||||
InvalidateRect(hwnd, NULL, true);
|
//InvalidateRect(hwnd, NULL, true);
|
||||||
|
|
||||||
video_context_driver_update_window_title();
|
video_context_driver_update_window_title();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user