23 lines
516 B
C++
23 lines
516 B
C++
|
|
#ifndef __MATH_SIMD_3DNOW_H__
|
|
#define __MATH_SIMD_3DNOW_H__
|
|
|
|
/*
|
|
===============================================================================
|
|
|
|
3DNow! implementation of idSIMDProcessor
|
|
|
|
===============================================================================
|
|
*/
|
|
|
|
class idSIMD_3DNow : public idSIMD_MMX {
|
|
#ifdef _WIN32
|
|
public:
|
|
virtual const char * VPCALL GetName( void ) const;
|
|
|
|
virtual void VPCALL Memcpy( void *dst, const void *src, const int count );
|
|
|
|
#endif
|
|
};
|
|
|
|
#endif /* !__MATH_SIMD_3DNOW_H__ */
|