File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ static bool filter_reload_effect(void *data)
111
111
112
112
params -> show_uvs =
113
113
gs_effect_get_param_by_name (effect , "show_uvs" );
114
- params -> use_linear_filtering =
115
- gs_effect_get_param_by_name ( effect , "use_linear_filtering" );
114
+ params -> use_linear_filtering = gs_effect_get_param_by_name (
115
+ effect , "use_linear_filtering" );
116
116
params -> border = gs_effect_get_param_by_name (effect , "border" );
117
117
params -> output_size =
118
118
gs_effect_get_param_by_name (effect , "output_size" );
@@ -203,7 +203,8 @@ static void filter_update(void *data, obs_data_t *settings)
203
203
context -> use_linear_filtering = use_linear_filtering ;
204
204
205
205
context -> output_pixel_scale .x = (float )output_scale_x ;
206
- context -> output_pixel_scale .y = uniform_scale ? (float ) output_scale_x : (float )output_scale_y ;
206
+ context -> output_pixel_scale .y = uniform_scale ? (float )output_scale_x
207
+ : (float )output_scale_y ;
207
208
208
209
if (uniform_scale ) {
209
210
obs_data_set_double (settings , "output_scale_y" , output_scale_x );
You can’t perform that action at this time.
0 commit comments