jedioutcast/utils/Assimilate/matcomp.h

29 lines
550 B
C
Raw Permalink Normal View History

2013-04-04 18:02:27 +00:00
#ifndef __MATCOMP__
#define __MATCOMP__
#ifdef __cplusplus
extern "C"
{
#endif
#define MC_BITS_X (15)
#define MC_BITS_Y (15)
#define MC_BITS_Z (16)
#define MC_BITS_VECT (14)
#define MC_SCALE_X (1.0f/32)
#define MC_SCALE_Y (1.0f/32)
#define MC_SCALE_Z (1.0f/64)
// currently 11
#define MC_COMP_BYTES (((MC_BITS_X+MC_BITS_Y+MC_BITS_Z+MC_BITS_VECT*3)+7)/8)
void MC_Compress(const float mat[3][4],unsigned char * comp);
void MC_UnCompress(float mat[3][4],const unsigned char * comp);
#ifdef __cplusplus
}
#endif
#endif