• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/OpenAL-54/Source/OpenAL/

Lines Matching defs:v1

2293 AL_API ALvoid AL_APIENTRY alSource3f (ALuint sid, ALenum pname, ALfloat v1, ALfloat v2, ALfloat v3)
2296 DebugMessageN5("alSource3f--> source %ld : %s : values = %.2f:%.2f:%.2f", (long int) sid, GetALAttributeString(pname), v1, v2, v3);
2308 oalSource->SetDirection(v1, v2, v3);
2313 oalSource->SetPosition(v1, v2, v3);
2316 oalSource->SetVelocity(v1, v2, v3);
2325 DebugMessageN6("ERROR: alSource3f FAILED: source %ld : %s : values = %.f2:%.f2:%.f2 error = %s", (long int) sid, GetALAttributeString(pname), v1, v2, v3, alGetString(result));
2329 DebugMessageN5("ERROR: alSource3f FAILED: source %ld : %s : values = %.f2:%.f2:%.f2", (long int) sid, GetALAttributeString(pname), v1, v2, v3);
2526 AL_API void AL_APIENTRY alSource3i( ALuint sid, ALenum pname, ALint v1, ALint v2, ALint v3 )
2529 DebugMessageN5("alSource3i--> source %ld : %s : values = %ld:%ld:%ld", (long int) sid, GetALAttributeString(pname), (long int)v1, (long int)v2, (long int)v3);
2541 oalSource->SetDirection(v1, v2, v3);
2546 oalSource->SetPosition(v1, v2, v3);
2549 oalSource->SetVelocity(v1, v2, v3);
2558 DebugMessageN6("ERROR: alSource3f FAILED: source %ld : %s : values = %ld:%ld:%ld error = %s", (long int) sid, GetALAttributeString(pname), (long int)v1, (long int)v2, (long int)v3, alGetString(result));
2562 DebugMessageN5("ERROR: alSource3f FAILED: source %ld : %s : values = %ld:%ld:%ld", (long int) sid, GetALAttributeString(pname), (long int)v1, (long int)v2, (long int)v3);
2725 AL_API ALvoid AL_APIENTRY alGetSource3f (ALuint sid, ALenum pname, ALfloat *v1, ALfloat *v2, ALfloat *v3)
2739 oalSource->GetDirection(*v1, *v2, *v3);
2744 oalSource->GetPosition(*v1, *v2, *v3);
2747 oalSource->GetVelocity(*v1, *v2, *v3);
2937 AL_API void AL_APIENTRY alGetSource3i( ALuint sid, ALenum pname, ALint* v1, ALint* v2, ALint* v3)
2951 oalSource->GetDirection((Float32&) *v1, (Float32&)*v2, (Float32&)*v3);
2956 oalSource->GetPosition((Float32&) *v1, (Float32&)*v2, (Float32&)*v3);
2959 oalSource->GetVelocity((Float32&) *v1, (Float32&)*v2, (Float32&)*v3);
3411 AL_API ALvoid AL_APIENTRY alListener3f (ALenum pname, ALfloat v1, ALfloat v2, ALfloat v3)
3414 DebugMessageN4("alListener3f--> attribute = %s : %.2f : %.2f : %.2f", GetALAttributeString(pname), v1, v2, v3);
3424 oalContext->SetListenerPosition(v1, v2, v3);
3427 oalContext->SetListenerVelocity(v1, v2, v3);
3496 AL_API void AL_APIENTRY alListener3i( ALenum pname, ALint v1, ALint v2, ALint v3 )
3499 DebugMessageN4("alListener3i--> attribute = %s : %ld : %ld : %ld", GetALAttributeString(pname), (long int) v1, (long int) v2, (long int) v3);
3509 oalContext->SetListenerPosition(v1, v2, v3);
3512 oalContext->SetListenerVelocity(v1, v2, v3);
3608 AL_API ALvoid AL_APIENTRY alGetListener3f( ALenum pname, ALfloat* v1, ALfloat* v2, ALfloat* v3 )
3621 oalContext->GetListenerPosition(v1, v2, v3);
3624 oalContext->GetListenerVelocity(v1, v2, v3);
3707 AL_API void AL_APIENTRY alGetListener3i( ALenum pname, ALint *v1, ALint *v2, ALint *v3 )
3720 oalContext->GetListenerPosition((Float32*) v1, (Float32*) v2, (Float32*) v3);
3723 oalContext->GetListenerVelocity((Float32*) v1, (Float32*) v2, (Float32*) v3);