diff options
Diffstat (limited to 'src/mesh.h')
-rw-r--r-- | src/mesh.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -16,10 +16,9 @@ __device__ unsigned int g_first_node; texture<float4, 1, cudaReadModeElementType> upper_bounds; texture<float4, 1, cudaReadModeElementType> lower_bounds; -/* map to child nodes/triangles and the number of child nodes/triangles */ +/* map to child node/triangle indices */ texture<unsigned int, 1, cudaReadModeElementType> node_map; texture<unsigned int, 1, cudaReadModeElementType> node_map_end; -//texture<unsigned int, 1, cudaReadModeElementType> node_length; __device__ float3 make_float3(const float4 &a) { |