Commit 45bfd4e1 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

quartz: Fix video flickering.

parent ee633870
...@@ -2368,7 +2368,7 @@ static void test_video_window(void) ...@@ -2368,7 +2368,7 @@ static void test_video_window(void)
ok(tid == GetCurrentThreadId(), "Expected tid %#lx, got %#lx.\n", GetCurrentThreadId(), tid); ok(tid == GetCurrentThreadId(), "Expected tid %#lx, got %#lx.\n", GetCurrentThreadId(), tid);
background = GetClassLongPtrW(hwnd, GCLP_HBRBACKGROUND); background = GetClassLongPtrW(hwnd, GCLP_HBRBACKGROUND);
todo_wine ok(!background, "Expected NULL brush, got %#Ix\n", background); ok(!background, "Expected NULL brush, got %#Ix\n", background);
hr = IBaseFilter_QueryInterface(filter, &IID_IVideoWindow, (void **)&window); hr = IBaseFilter_QueryInterface(filter, &IID_IVideoWindow, (void **)&window);
ok(hr == S_OK, "Got hr %#lx.\n", hr); ok(hr == S_OK, "Got hr %#lx.\n", hr);
......
...@@ -101,7 +101,6 @@ HRESULT video_window_create_window(struct video_window *window) ...@@ -101,7 +101,6 @@ HRESULT video_window_create_window(struct video_window *window)
winclass.lpfnWndProc = WndProcW; winclass.lpfnWndProc = WndProcW;
winclass.cbWndExtra = sizeof(window); winclass.cbWndExtra = sizeof(window);
winclass.hbrBackground = GetStockObject(BLACK_BRUSH);
winclass.lpszClassName = class_name; winclass.lpszClassName = class_name;
if (!RegisterClassW(&winclass) && GetLastError() != ERROR_CLASS_ALREADY_EXISTS) if (!RegisterClassW(&winclass) && GetLastError() != ERROR_CLASS_ALREADY_EXISTS)
{ {
......
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