add GPU incremental 3d sap (not enabled by default)

This commit is contained in:
erwin coumans
2013-07-20 21:16:24 -07:00
parent 01fbe80f8f
commit 5991eef749
5 changed files with 1017 additions and 31 deletions

View File

@@ -8,14 +8,15 @@ struct b3SortData
{
union
{
int m_key;
int x;
unsigned int m_key;
unsigned int x;
};
union
{
int m_value;
int y;
unsigned int m_value;
unsigned int y;
};
};
#include "b3BufferInfoCL.h"