Files
itgmania212121/stepmania/src/archutils/Darwin/VectorHelper.h
T

50 lines
2.1 KiB
C++
Raw Normal View History

2006-05-14 07:04:28 +00:00
#ifndef VECTOR_HELPER_H
#define VECTOR_HELPER_H
#if defined(__VEC__)
namespace Vector
{
bool CheckForVector();
/* The dest parameter needs to be 16 byte aligned. This is unlikely
* to be the case for the src so we handle it correctly but it does need to be at
* least aligned to its data type (which gcc should ensure). */
2006-05-14 07:04:28 +00:00
void FastSoundWrite( int32_t *dest, const int16_t *src, unsigned size, short volume );
/* For both FastSoundRead(), dest and src need to be 16 byte aligned. The audio HAL
* will provide a 16-byte aligned buffer and RageSoundMixBuffer's buffer is also
* 16-byte aligned since it lives on the heap. */
2006-05-14 07:04:28 +00:00
void FastSoundRead( int16_t *dest, const int32_t *src, unsigned size );
void FastSoundRead( float *dest, const int32_t *src, unsigned size );
}
// XXX Fix FastSoundWrite to handle unaligned dest.
//#define USE_VEC
2006-05-14 07:04:28 +00:00
#endif
#endif
/*
* (c) 2006 Steve Checkoway
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/