implement compound versus compound BVH acceleration (quantized tree-versus-tree, using subtrees and quantization) on host

This commit is contained in:
erwin coumans
2013-08-16 08:58:52 -07:00
parent b32ae0c75c
commit ef224370ab
4 changed files with 340 additions and 18 deletions

View File

@@ -46,5 +46,11 @@ struct b3Int2
};
};
inline b3Int2 b3MakeInt2(int x, int y)
{
b3Int2 v;
v.s[0] = x; v.s[1] = y;
return v;
}
#endif