Skip to content

Commit

Permalink
hwdec_cuda: call vk interop functions correctly
Browse files Browse the repository at this point in the history
Fixes 3b77fcc

Co-authored-by: Kacper Michajłow <[email protected]>
  • Loading branch information
jrelvas-ipc and kasper93 committed Apr 30, 2024
1 parent 3b77fcc commit 006227b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video/out/hwdec/hwdec_cuda.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static const cuda_interop_fn *interop_fns[] = {
&(static cuda_interop_fn) {.check = cuda_gl_check, .init = cuda_gl_init},
#endif
#if HAVE_VULKAN
&(static cuda_interop_fn) {.check = cuda_gl_check, .init = cuda_gl_init},
&(static cuda_interop_fn) {.check = cuda_vk_check, .init = cuda_vk_init},
#endif
NULL
};
Expand Down

0 comments on commit 006227b

Please sign in to comment.