0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

obs-filters: Fix unused parameters

This commit is contained in:
jpark37 2021-01-29 21:50:32 -08:00
parent dd62bd05fb
commit 0e803c4443

View File

@ -137,11 +137,15 @@ static void luma_key_render_internal(void *data, bool srgb)
static void luma_key_render_v1(void *data, gs_effect_t *effect)
{
UNUSED_PARAMETER(effect);
luma_key_render_internal(data, false);
}
static void luma_key_render_v2(void *data, gs_effect_t *effect)
{
UNUSED_PARAMETER(effect);
luma_key_render_internal(data, true);
}