From ae7097303f662983b193a5de5ab292309915954c Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 16 Dec 2018 08:19:58 +1000 Subject: [PATCH] Add rectangle channel mix mode which is an alias of planar_blend. --- mini_al.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mini_al.h b/mini_al.h index 08210c15..a2a9ea7d 100644 --- a/mini_al.h +++ b/mini_al.h @@ -575,8 +575,9 @@ typedef enum typedef enum { - mal_channel_mix_mode_planar_blend = 0, // Simple averaging based on the plane(s) the channel is sitting on. + mal_channel_mix_mode_rectangular = 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_planar_blend = mal_channel_mix_mode_rectangular, mal_channel_mix_mode_default = mal_channel_mix_mode_planar_blend } mal_channel_mix_mode;