From 3ddef4bf7dc822fb24d86f8061daf40221bbd551 Mon Sep 17 00:00:00 2001 From: jpark37 Date: Sun, 8 Sep 2019 22:43:41 -0700 Subject: [PATCH] win-capture: Remove support for feature level 9.3 Be consistent with libobs-d3d11, which now uses 10_0 as the baseline. --- plugins/win-capture/graphics-hook/d3d9-capture.cpp | 1 - plugins/win-capture/graphics-hook/gl-capture.c | 1 - 2 files changed, 2 deletions(-) diff --git a/plugins/win-capture/graphics-hook/d3d9-capture.cpp b/plugins/win-capture/graphics-hook/d3d9-capture.cpp index deed344f2..12ac6ba50 100644 --- a/plugins/win-capture/graphics-hook/d3d9-capture.cpp +++ b/plugins/win-capture/graphics-hook/d3d9-capture.cpp @@ -113,7 +113,6 @@ const static D3D_FEATURE_LEVEL feature_levels[] = { D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_1, D3D_FEATURE_LEVEL_10_0, - D3D_FEATURE_LEVEL_9_3, }; static inline bool shex_init_d3d11() diff --git a/plugins/win-capture/graphics-hook/gl-capture.c b/plugins/win-capture/graphics-hook/gl-capture.c index 582b3f743..206a50d0d 100644 --- a/plugins/win-capture/graphics-hook/gl-capture.c +++ b/plugins/win-capture/graphics-hook/gl-capture.c @@ -262,7 +262,6 @@ static const D3D_FEATURE_LEVEL feature_levels[] = { D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_1, D3D_FEATURE_LEVEL_10_0, - D3D_FEATURE_LEVEL_9_3, }; static inline bool gl_shtex_init_d3d11(void)