libobs: Add missing function definitions
Add missing function definitions for the lanczos and bicubic effects
This commit is contained in:
parent
27a0749d8d
commit
b18e957d81
12
libobs/obs.c
12
libobs/obs.c
@ -1185,6 +1185,18 @@ gs_effect_t *obs_get_solid_effect(void)
|
||||
return obs->video.solid_effect;
|
||||
}
|
||||
|
||||
gs_effect_t *obs_get_bicubic_effect(void)
|
||||
{
|
||||
if (!obs) return NULL;
|
||||
return obs->video.bicubic_effect;
|
||||
}
|
||||
|
||||
gs_effect_t *obs_get_lanczos_effect(void)
|
||||
{
|
||||
if (!obs) return NULL;
|
||||
return obs->video.lanczos_effect;
|
||||
}
|
||||
|
||||
signal_handler_t *obs_get_signal_handler(void)
|
||||
{
|
||||
if (!obs) return NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user