mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-16 05:29:17 -04:00
Moved the screen grabbing and texture generation to the _tick function in order to keep _render fast. Migrated xshm video source to the new plugin api.
12 lines
192 B
C
12 lines
192 B
C
#include <obs-module.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
extern struct obs_source_info xshm_input;
|
|
|
|
bool obs_module_load(uint32_t obs_version)
|
|
{
|
|
obs_register_source(&xshm_input);
|
|
return true;
|
|
}
|