[vlc-commits] direct3d11: only report leaks when there's a debugger
Steve Lhomme
git at videolan.org
Wed Jul 19 10:43:16 CEST 2017
vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Wed Jul 19 10:38:47 2017 +0200| [04c671640a9f00bed4d65336784ae3af4f9583db] | committer: Jean-Baptiste Kempf
direct3d11: only report leaks when there's a debugger
It seems plenty of people have issues with d3d11_1sdklayers.dll being present
but not usable.
If a dev has the issue he can always disable this code section for testing.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=04c671640a9f00bed4d65336784ae3af4f9583db
---
modules/video_output/win32/direct3d11.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/modules/video_output/win32/direct3d11.c b/modules/video_output/win32/direct3d11.c
index 9da636203f..19a2ac9a06 100644
--- a/modules/video_output/win32/direct3d11.c
+++ b/modules/video_output/win32/direct3d11.c
@@ -1469,10 +1469,12 @@ static int Direct3D11Open(vout_display_t *vd, video_format_t *fmt)
HRESULT hr = S_OK;
# if !defined(NDEBUG)
- HINSTANCE sdklayer_dll = LoadLibrary(TEXT("d3d11_1sdklayers.dll"));
- if (sdklayer_dll) {
- creationFlags |= D3D11_CREATE_DEVICE_DEBUG;
- FreeLibrary(sdklayer_dll);
+ if (IsDebuggerPresent()) {
+ HINSTANCE sdklayer_dll = LoadLibrary(TEXT("d3d11_1sdklayers.dll"));
+ if (sdklayer_dll) {
+ creationFlags |= D3D11_CREATE_DEVICE_DEBUG;
+ FreeLibrary(sdklayer_dll);
+ }
}
# endif
More information about the vlc-commits
mailing list