Make blend mode the default for channel mixing.

This commit is contained in:
David Reid
2018-03-31 14:47:54 +10:00
parent 4558800991
commit 72b28cc0bb
+3 -2
View File
@@ -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