mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
[774/906] win32: Fix some compiler errors/warnings
This commit is contained in:
parent
b26c4dbe4e
commit
3900c6750c
1 changed files with 3 additions and 4 deletions
|
@ -269,7 +269,7 @@ gst_gl_window_win32_set_window_handle (GstGLWindow * window, guintptr id)
|
||||||
window_win32 = GST_GL_WINDOW_WIN32 (window);
|
window_win32 = GST_GL_WINDOW_WIN32 (window);
|
||||||
|
|
||||||
if (!window_win32->internal_win_id) {
|
if (!window_win32->internal_win_id) {
|
||||||
window_win32->parent_win_id = id;
|
window_win32->parent_win_id = (HWND) id;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ gst_gl_window_win32_set_window_handle (GstGLWindow * window, guintptr id)
|
||||||
SetWindowLongPtr (window_win32->internal_win_id, GWL_STYLE,
|
SetWindowLongPtr (window_win32->internal_win_id, GWL_STYLE,
|
||||||
WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW);
|
WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW);
|
||||||
}
|
}
|
||||||
window_win32->parent_win_id = id;
|
window_win32->parent_win_id = (HWND) id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Thread safe */
|
/* Thread safe */
|
||||||
|
@ -332,8 +332,7 @@ gst_gl_window_win32_draw (GstGLWindow * window, guint width, guint height)
|
||||||
GstGLWindowWin32 *window_win32 = GST_GL_WINDOW_WIN32 (window);
|
GstGLWindowWin32 *window_win32 = GST_GL_WINDOW_WIN32 (window);
|
||||||
|
|
||||||
if (!window_win32->visible) {
|
if (!window_win32->visible) {
|
||||||
HWND parent_id =;
|
HWND parent_id = window_win32->parent_win_id;
|
||||||
window_win32->parent_win_id;
|
|
||||||
|
|
||||||
/* if no parent the real size has to be set now because this has not been done
|
/* if no parent the real size has to be set now because this has not been done
|
||||||
* when at window creation */
|
* when at window creation */
|
||||||
|
|
Loading…
Reference in a new issue