From 72b28cc0bb421af023206b6a258916279ab0fa21 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 31 Mar 2018 14:47:54 +1000 Subject: [PATCH] Make blend mode the default for channel mixing. --- mini_al.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mini_al.h b/mini_al.h index 85540bba..288f758c 100644 --- a/mini_al.h +++ b/mini_al.h @@ -620,9 +620,10 @@ typedef enum typedef enum { - mal_channel_mix_mode_simple = 0, // Drop excess channels; zeroed out extra channels. - mal_channel_mix_mode_planar_blend, // Simple averaging based on the plane(s) the channel is sitting on. + mal_channel_mix_mode_planar_blend = 0, // Simple averaging based on the plane(s) the channel is sitting on. + mal_channel_mix_mode_simple, // Drop excess channels; zeroed out extra channels. //mal_channel_mix_mode_spatial, // Blend channels based on spatial locality. + mal_channel_mix_mode_default = mal_channel_mix_mode_planar_blend } mal_channel_mix_mode; typedef enum