Add rectangle channel mix mode which is an alias of planar_blend.

This commit is contained in:
David Reid
2018-12-16 08:19:58 +10:00
parent 560013b89b
commit ae7097303f
+2 -1
View File
@@ -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;