hwcontext_vulkan: fix typo in vulkan_device_init()

load_functions() did not load the device-level functions.
pull/362/head
Lynne 3 years ago
parent 99bbf4a5be
commit 08d933bf61
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
  1. 2
      libavutil/hwcontext_vulkan.c

@ -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;

Loading…
Cancel
Save