summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/gpu/d3d11_helpers.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/video/out/gpu/d3d11_helpers.c b/video/out/gpu/d3d11_helpers.c
index b2f6e76989..cfabfbe3ab 100644
--- a/video/out/gpu/d3d11_helpers.c
+++ b/video/out/gpu/d3d11_helpers.c
@@ -47,6 +47,20 @@ static void d3d11_load(void)
GetProcAddress(dxgilib, "CreateDXGIFactory1");
}
+static bool load_d3d11_functions(struct mp_log *log)
+{
+ pthread_once(&d3d11_once, d3d11_load);
+ if (!pD3D11CreateDevice || !pCreateDXGIFactory1) {
+ mp_fatal(log, "Failed to load base d3d11 functionality: "
+ "CreateDevice: %s, CreateDXGIFactory1: %s\n",
+ pD3D11CreateDevice ? "success" : "failure",
+ pCreateDXGIFactory1 ? "success": "failure");
+ return false;
+ }
+
+ return true;
+}
+
// Get a const array of D3D_FEATURE_LEVELs from max_fl to min_fl (inclusive)
static int get_feature_levels(int max_fl, int min_fl,
const D3D_FEATURE_LEVEL **out)
@@ -171,12 +185,7 @@ bool mp_d3d11_create_present_device(struct mp_log *log,
bool success = false;
HRESULT hr;
- pthread_once(&d3d11_once, d3d11_load);
- if (!pD3D11CreateDevice || !pCreateDXGIFactory1) {
- mp_fatal(log, "Failed to load base d3d11 functionality: "
- "CreateDevice: %s, CreateDXGIFactory1: %s\n",
- pD3D11CreateDevice ? "success" : "failure",
- pCreateDXGIFactory1 ? "success": "failure");
+ if (!load_d3d11_functions(log)) {
goto done;
}