c00d9e3b4e
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;
|
|
}
|