From 2a92555f58ab0768a6136b4d18e683f11e4e45c9 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 10 Feb 2019 18:12:37 -0800 Subject: [PATCH] libobs: Make sure to destroy effect This actually isn't necessary because the graphics subsystem technically automatically frees effects, but that could change, so call this just to be safe. --- libobs/obs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libobs/obs.c b/libobs/obs.c index f74f56a81..0c261d671 100644 --- a/libobs/obs.c +++ b/libobs/obs.c @@ -531,6 +531,7 @@ static void obs_free_graphics(void) gs_effect_destroy(video->solid_effect); gs_effect_destroy(video->conversion_effect); gs_effect_destroy(video->bicubic_effect); + gs_effect_destroy(video->repeat_effect); gs_effect_destroy(video->lanczos_effect); gs_effect_destroy(video->bilinear_lowres_effect); video->default_effect = NULL;