Commit c8b51e05 authored by Erwan Tulou's avatar Erwan Tulou

msw: let zooming to exceed the display size

There seems to be no more reason to force clipping to the display size
when zooming.  (tested successfully on WinXP with directx, gdi, opengl)
parent 30efd37a
...@@ -326,7 +326,7 @@ void UpdateRects(vout_display_t *vd, ...@@ -326,7 +326,7 @@ void UpdateRects(vout_display_t *vd,
place_cfg.display.height = rect.bottom; place_cfg.display.height = rect.bottom;
vout_display_place_t place; vout_display_place_t place;
vout_display_PlacePicture(&place, source, &place_cfg, true); vout_display_PlacePicture(&place, source, &place_cfg, false);
EventThreadUpdateSourceAndPlace(sys->event, source, &place); EventThreadUpdateSourceAndPlace(sys->event, source, &place);
#if defined(MODULE_NAME_IS_wingapi) #if defined(MODULE_NAME_IS_wingapi)
......
...@@ -1027,7 +1027,7 @@ event_thread_t *EventThreadCreate( vout_display_t *vd) ...@@ -1027,7 +1027,7 @@ event_thread_t *EventThreadCreate( vout_display_t *vd)
var_GetInteger(vd, "mouse-hide-timeout") * 1000; var_GetInteger(vd, "mouse-hide-timeout") * 1000;
p_event->psz_title = NULL; p_event->psz_title = NULL;
p_event->source = vd->source; p_event->source = vd->source;
vout_display_PlacePicture(&p_event->place, &vd->source, vd->cfg, true); vout_display_PlacePicture(&p_event->place, &vd->source, vd->cfg, false);
return p_event; return p_event;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment