add gpu_sat

This commit is contained in:
erwin coumans
2013-03-12 21:11:46 -07:00
parent ecdb0e52ca
commit 9612c2cd3d
19 changed files with 8283 additions and 76 deletions

View File

@@ -0,0 +1,35 @@
#ifndef BT_INT2_H
#define BT_INT2_H
struct btUnsignedInt2
{
union
{
struct
{
unsigned int x,y;
};
struct
{
unsigned int s[2];
};
};
};
struct btInt2
{
union
{
struct
{
int x,y;
};
struct
{
int s[2];
};
};
};
#endif