Commit 72b28cc0 authored by David Reid's avatar David Reid

Make blend mode the default for channel mixing.

parent 45588009
...@@ -620,9 +620,10 @@ typedef enum ...@@ -620,9 +620,10 @@ typedef enum
typedef enum typedef enum
{ {
mal_channel_mix_mode_simple = 0, // Drop excess channels; zeroed out extra channels. mal_channel_mix_mode_planar_blend = 0, // Simple averaging based on the plane(s) the channel is sitting on.
mal_channel_mix_mode_planar_blend, // 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_spatial, // Blend channels based on spatial locality.
mal_channel_mix_mode_default = mal_channel_mix_mode_planar_blend
} mal_channel_mix_mode; } mal_channel_mix_mode;
typedef enum typedef enum
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment