Browse Source

libobs: Add missing function definitions

Add missing function definitions for the lanczos and bicubic effects
jp9000 10 years ago
parent
commit
b18e957d81
1 changed files with 12 additions and 0 deletions
  1. 12 0
      libobs/obs.c

+ 12 - 0
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;