From f1ce13999725ac068f8d3a2126708bc11c10aa58 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 9 Sep 2012 04:02:54 -0700 Subject: Use SSE to do 4 samples at once (non-HRTF direct mix), instead of to apply a matrix row MaxCHannels no longer needs to be a multiple of 4 now, either. --- OpenAL32/Include/alu.h | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'OpenAL32') diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index d55f7269..7bb579de 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -128,17 +128,16 @@ enum Resampler { enum Channel { FrontLeft = 0, - FrontRight, /* 1 */ - FrontCenter, /* 2 */ - LFE, /* 3 */ - BackLeft, /* 4 */ - BackRight, /* 5 */ - BackCenter, /* 6 */ - SideLeft, /* 7 */ - SideRight, /* 8 */ - - /* Must be a multiple of 4 */ - MaxChannels = 12, + FrontRight, + FrontCenter, + LFE, + BackLeft, + BackRight, + BackCenter, + SideLeft, + SideRight, + + MaxChannels, }; enum DistanceModel { -- cgit v1.2.3