Unverified Commit 08d933bf authored by Lynne's avatar Lynne

hwcontext_vulkan: fix typo in vulkan_device_init()

load_functions() did not load the device-level functions.
parent 99bbf4a5
......@@ -1349,7 +1349,7 @@ static int vulkan_device_init(AVHWDeviceContext *ctx)
}
}
err = load_functions(ctx, 1, 0);
err = load_functions(ctx, 1, 1);
if (err < 0) {
av_log(ctx, AV_LOG_ERROR, "Unable to load functions!\n");
return err;
......
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