mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
-geometry support for gl2 under win, default window pos centered for gl, gl2
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15596 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
cf4bdf8937
commit
881f0f083f
@ -2154,7 +2154,7 @@ than the screen.
|
||||
.br
|
||||
.I NOTE:
|
||||
This option is only supported by the x11, xmga, xv, xvmc, xvidix,
|
||||
gl, gl2 (except under Windows), directx and tdfxfb video output drivers.
|
||||
gl, gl2, directx and tdfxfb video output drivers.
|
||||
.sp 1
|
||||
.I EXAMPLE:
|
||||
.PD 0
|
||||
|
@ -162,6 +162,8 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin
|
||||
aspect_save_screenres(vo_screenwidth,vo_screenheight);
|
||||
|
||||
aspect(&d_width,&d_height,A_NOZOOM);
|
||||
vo_dx = (vo_screenwidth - d_width) / 2;
|
||||
vo_dy = (vo_screenheight - d_height) / 2;
|
||||
geometry(&vo_dx, &vo_dy, &d_width, &d_height,
|
||||
vo_screenwidth, vo_screenheight);
|
||||
#ifdef X11_FULLSCREEN
|
||||
|
@ -829,6 +829,8 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin
|
||||
aspect_save_screenres(vo_screenwidth,vo_screenheight);
|
||||
|
||||
aspect(&d_width,&d_height,A_NOZOOM);
|
||||
vo_dx = (vo_screenwidth - d_width) / 2;
|
||||
vo_dy = (vo_screenheight - d_height) / 2;
|
||||
geometry(&vo_dx, &vo_dy, &d_width, &d_height,
|
||||
vo_screenwidth, vo_screenheight);
|
||||
|
||||
|
@ -180,7 +180,7 @@ int createRenderingContext(void) {
|
||||
updateScreenProperties();
|
||||
vo_dwidth = vo_fs ? vo_screenwidth : o_dwidth;
|
||||
vo_dheight = vo_fs ? vo_screenheight : o_dheight;
|
||||
SetWindowPos(vo_window, layer, (vo_screenwidth - vo_dwidth) / 2, (vo_screenheight - vo_dheight) / 2, vo_dwidth, vo_dheight, SWP_SHOWWINDOW);
|
||||
SetWindowPos(vo_window, layer, vo_dx, vo_dy, vo_dwidth, vo_dheight, SWP_SHOWWINDOW);
|
||||
|
||||
PIXELFORMATDESCRIPTOR pfd;
|
||||
memset(&pfd, 0, sizeof pfd);
|
||||
|
Loading…
Reference in New Issue
Block a user