vlc/vlc-3.0 | branch: master | Steve Lhomme <[email protected]> | Tue May 28 09:17:08 2019 +0200| [40efc8be2c1ff33c98348d79e5537786bbe5bd9f] | committer: Steve Lhomme
direct3d11: remove stray semicolons (cherry picked from commit c42d84745d050dd21077929bd5897168709e9c41) > http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=40efc8be2c1ff33c98348d79e5537786bbe5bd9f --- modules/video_output/win32/direct3d11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/video_output/win32/direct3d11.c b/modules/video_output/win32/direct3d11.c index cc94670ae1..b2e484180d 100644 --- a/modules/video_output/win32/direct3d11.c +++ b/modules/video_output/win32/direct3d11.c @@ -76,8 +76,8 @@ vlc_module_begin () add_bool("direct3d11-hw-blending", true, HW_BLENDING_TEXT, HW_BLENDING_LONGTEXT, true) #if VLC_WINSTORE_APP - add_integer("winrt-d3dcontext", 0x0, NULL, NULL, true); /* ID3D11DeviceContext* */ - add_integer("winrt-swapchain", 0x0, NULL, NULL, true); /* IDXGISwapChain1* */ + add_integer("winrt-d3dcontext", 0x0, NULL, NULL, true) /* ID3D11DeviceContext* */ + add_integer("winrt-swapchain", 0x0, NULL, NULL, true) /* IDXGISwapChain1* */ #endif set_capability("vout display", 300) _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
