Move mac display capture to mac-capture module

It was kind of silly that it was residing within the test-input module.
This commit is contained in:
jp9000
2014-07-10 21:43:21 -07:00
parent 4cc1a42908
commit 3394ac6488
6 changed files with 20 additions and 32 deletions

View File

@@ -6,20 +6,12 @@ extern struct obs_source_info test_random;
extern struct obs_source_info test_sinewave;
extern struct obs_source_info test_filter;
#ifdef __APPLE__
extern struct obs_source_info display_capture_info;
#endif
bool obs_module_load(uint32_t libobs_version)
{
obs_register_source(&test_random);
obs_register_source(&test_sinewave);
obs_register_source(&test_filter);
#ifdef __APPLE__
obs_register_source(&display_capture_info);
#endif
UNUSED_PARAMETER(libobs_version);
return true;
}