在试图弄清楚如何在 OpenGL/GLSL 中实现 kd-tree 一天之后,我感到非常沮丧......
我在 GLSL 中这样声明我的 KD 节点:
layout(std140) uniform node{
ivec4 splitPoint;
int dataPtr;
} nodes[1024];
SplitPoint 保存 kd-tree 分裂点,向量的第四个元素保存 splitDirection 在 3d 空间中形成一个平面。DataPtr 当前仅在树的叶子中保存随机值。
整个数组形成一个Ahnentafel List。
在 C++ 中,结构如下所示:
struct Node{
glm::ivec4 splitPoint;
GLint dataPtr;
GLint padding[3];
};
我相信这是正确的,我将构建的树上传到缓冲区中。作为检查,我将缓冲区映射到主内存并检查值:
0x08AB6890 +0 +256 +0 +1 -1 -858993460 -858993460 -858993460
0x08AB68B0 +256 +0 +0 +0 -1 -858993460 -858993460 -858993460
0x08AB68D0 +256 +256 +0 +0 -1 -858993460 -858993460 -858993460
[...]
0x08AB7070 +0 +0 +0 +0 +2362 -858993460 -858993460 -858993460
到目前为止看起来不错(它实际上表示体积在节点 0 的 y 方向上在 (0,256,0) 处拆分,-1 是没有数据的标志)。
现在对于树遍历,我尝试了这个:
float distanceFromSplitPlane;
while(nodes[n].dataPtr == -1){
// get split direction
vec3 splitDir = vec3(0,0,0);
if(nodes[n].splitDir == 0)
splitDir.x = 1;
else if(nodes[n].splitDir == 1)
splitDir.y = 1;
else
splitDir.z = 1;
// calculate distance of ray starting point to the split plane
distanceFromSplitPlane = dot(startP.xyz-(nodes[n].splitPoint.xyz/511.0), splitDir);
// depending on the side advance in the tree
if(distanceFromSplitPlane >= 0)
n = 2 * n + 1;
else
n = 2 * n + 2;
}
// we should new be located in a leaf node and therefor have a value in dataPtr
gl_FragColor = vec4(dataPtr/6000.0, 0,1,1);
此时屏幕上应该有一个随机颜色的图案。但在大多数情况下,什么都看不到。
我试图直接从节点获取值并获得正确的结果......所以我相信统一块数据的动态索引有问题。
我希望有人可以在这里帮助我......因为我的想法不多了:/
弗洛里安