#include "bvhaccel.h"
#include "paramset.h"
#include "dynload.h"
#include "memory.h"
#include "error.h"
#include <functional>
Go to the source code of this file.
Functions | |
bool | bvh_ltf_x (boost::shared_ptr< BVHAccelTreeNode > n, float v) |
bool | bvh_ltf_y (boost::shared_ptr< BVHAccelTreeNode > n, float v) |
bool | bvh_ltf_z (boost::shared_ptr< BVHAccelTreeNode > n, float v) |
Variables | |
bool(*const | bvh_ltf [3])(boost::shared_ptr< BVHAccelTreeNode > n, float v) = {bvh_ltf_x, bvh_ltf_y, bvh_ltf_z} |
static DynamicLoader::RegisterAccelerator < BVHAccel > | r ("bvh") |
bool bvh_ltf_x | ( | boost::shared_ptr< BVHAccelTreeNode > | n, | |
float | v | |||
) |
Definition at line 103 of file bvhaccel.cpp.
bool bvh_ltf_y | ( | boost::shared_ptr< BVHAccelTreeNode > | n, | |
float | v | |||
) |
Definition at line 104 of file bvhaccel.cpp.
bool bvh_ltf_z | ( | boost::shared_ptr< BVHAccelTreeNode > | n, | |
float | v | |||
) |
Definition at line 105 of file bvhaccel.cpp.
bool(* const bvh_ltf[3])(boost::shared_ptr< BVHAccelTreeNode > n, float v) = {bvh_ltf_x, bvh_ltf_y, bvh_ltf_z} |
Referenced by lux::BVHAccel::BuildHierarchy().
DynamicLoader::RegisterAccelerator<BVHAccel> r("bvh") [static] |