Skip to content

Commit

Permalink
source/shader: Fix missing buffered draw requirement (#516)
Browse files Browse the repository at this point in the history
Fixes #516
  • Loading branch information
Xaymar committed Apr 14, 2021
1 parent 18e2b30 commit 901ffb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/sources/source-shader.cpp
Expand Up @@ -101,7 +101,7 @@ shader_factory::shader_factory()
{
_info.id = PREFIX "source-shader";
_info.type = OBS_SOURCE_TYPE_INPUT;
_info.output_flags = OBS_SOURCE_VIDEO;
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW;

set_activity_tracking_enabled(true);
finish_setup();
Expand Down

0 comments on commit 901ffb8

Please sign in to comment.