Initial commit.

This commit is contained in:
Jim Gray
2013-04-04 14:32:05 -07:00
parent ba5c81da32
commit d71d53e8ec
2180 changed files with 1393544 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
// Filename: mc_compress2.h
//
#ifndef MC_COMPRESS2_H
#define MC_COMPRESS2_H
#ifdef __cplusplus
extern "C"
{
#endif
#pragma optimize( "p", on ) // improve floating-point consistancy (makes release do bone-pooling as good as debug)
void MC_Compress2(const float mat[3][4],unsigned char * comp);
void MC_UnCompress2(float mat[3][4],const unsigned char * comp);
void QuatSlerpCompTo3x4( float fLerp01,
const unsigned char *pComp0,
const unsigned char *pComp1,
float fDestMat[3][4]
);
#ifdef __cplusplus
}
#endif
#endif // #ifndef MC_COMPRESS2_H
///////////// eof /////////////