Skip to content
Snippets Groups Projects
Verified Commit 62301220 authored by Torge Matthies's avatar Torge Matthies
Browse files

Use an OpenGL texture instead of copying frames to system memory

parent b611b973
No related branches found
No related tags found
1 merge request!2Use an OpenGL texture instead of copying frames to system memory
FROM debian:bullseye
RUN apt update \
&& apt install -y gcc meson ninja-build libobs-dev \
&& apt install -y gcc meson ninja-build libobs-dev pkg-config mesa-common-dev \
&& rm -rf /var/lib/apt/lists/*
......@@ -2,10 +2,11 @@ project('obs-nvfbc', 'c', default_options: ['c_std=c99'])
threads = dependency('threads')
obs = meson.get_compiler('c').find_library('obs')
gl = dependency('gl')
shared_library('nvfbc', 'nvfbc.c',
name_prefix : '',
dependencies : [threads, obs],
dependencies : [threads, obs, gl],
install : true,
install_dir : join_paths(get_option('libdir'), 'obs-plugins'),
)
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment