Rename VOICE_IS_HRTF to VOICE_HAS_HRTF

This commit is contained in:
Chris Robinson 2017-05-02 04:25:08 -07:00
parent 2f8d597f4e
commit 1e5334176e
3 changed files with 6 additions and 6 deletions

View File

@ -522,7 +522,7 @@ static void CalcNonAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *p
break;
}
voice->Flags &= ~(VOICE_IS_HRTF | VOICE_HAS_NFC);
voice->Flags &= ~(VOICE_HAS_HRTF | VOICE_HAS_NFC);
if(isbformat)
{
ALfloat N[3], V[3], U[3];
@ -682,7 +682,7 @@ static void CalcNonAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *p
}
}
voice->Flags |= VOICE_IS_HRTF;
voice->Flags |= VOICE_HAS_HRTF;
}
else
{
@ -1098,7 +1098,7 @@ static void CalcAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *prop
BsincPrepare(voice->Step, &voice->ResampleState.bsinc);
voice->Resampler = SelectResampler(props->Resampler);
voice->Flags &= ~(VOICE_IS_HRTF | VOICE_HAS_NFC);
voice->Flags &= ~(VOICE_HAS_HRTF | VOICE_HAS_NFC);
if(Device->Render_Mode == HrtfRender)
{
/* Full HRTF rendering. Skip the virtual channels and render to the
@ -1151,7 +1151,7 @@ static void CalcAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *prop
voice->Send[i].Params[0].Gains.Target[j] = 0.0f;
}
voice->Flags |= VOICE_IS_HRTF;
voice->Flags |= VOICE_HAS_HRTF;
}
else
{

View File

@ -445,7 +445,7 @@ ALboolean MixSource(ALvoice *voice, ALsource *Source, ALCdevice *Device, ALsizei
&parms->LowPass, &parms->HighPass, Device->FilteredData,
ResampledData, DstBufferSize, parms->FilterType
);
if(!(voice->Flags&VOICE_IS_HRTF))
if(!(voice->Flags&VOICE_HAS_HRTF))
{
if(!Counter)
memcpy(parms->Gains.Current, parms->Gains.Target,

View File

@ -223,7 +223,7 @@ struct ALvoiceProps {
/* If not 'fading', gain targets are used directly without fading. */
#define VOICE_IS_FADING (1<<0)
#define VOICE_IS_HRTF (1<<1)
#define VOICE_HAS_HRTF (1<<1)
#define VOICE_HAS_NFC (1<<2)
typedef struct ALvoice {