OWL
OptiX7 Wrapper Library
|
#include <Group.h>
Public Types | |
typedef std::shared_ptr< GeomGroup > | SP |
![]() | |
typedef std::shared_ptr< Group > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
GeomGroup (Context *const context, size_t numChildren) | |
virtual | ~GeomGroup () |
void | setChild (int childID, Geom::SP child) |
int | getSBTOffset () const override |
std::string | toString () const |
![]() | |
Group (Context *const context, ObjectRegistry ®istry) | |
virtual void | buildAccel ()=0 |
virtual void | refitAccel ()=0 |
DeviceData & | getDD (const DeviceContext::SP &device) const |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
OptixTraversableHandle | getTraversable (const DeviceContext::SP &device) const |
![]() | |
RegisteredObject (Context *const context, ObjectRegistry ®istry) | |
~RegisteredObject () | |
![]() | |
ContextObject (Context *const context) | |
std::string | toString () const override |
![]() | |
Object () | |
virtual DeviceData::SP | createOn (const std::shared_ptr< DeviceContext > &device) |
void | createDeviceData (const std::vector< std::shared_ptr< DeviceContext >> &devices) |
template<typename T > | |
std::shared_ptr< T > | as () |
Public Attributes | |
std::vector< Geom::SP > | geometries |
const int | sbtOffset |
![]() | |
box3f | bounds [2] |
![]() | |
int | ID |
ObjectRegistry & | registry |
![]() | |
Context *const | context |
![]() | |
const size_t | uniqueID |
std::vector< DeviceData::SP > | deviceData |
Additional Inherited Members | |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
a group containing geometries (ie, BLASes, whereas the InstanceGroup is a IAS
typedef std::shared_ptr<GeomGroup> owl::GeomGroup::SP |
owl::GeomGroup::GeomGroup | ( | Context *const | context, |
size_t | numChildren | ||
) |
constructor for given number of chilren, will allocate the SBT range for those children
|
virtual |
destructor that releases the SBT range used by this group
|
inlineoverridevirtual |
return the SBT offset (ie, the offset at which the geometries within this group will be written into the Shader Binding Table)
Implements owl::Group.
void owl::GeomGroup::setChild | ( | int | childID, |
Geom::SP | child | ||
) |
set given child ID to given geometry
|
virtual |
pretty-printer, for printf-debugging
Reimplemented from owl::Group.
Reimplemented in owl::TrianglesGeomGroup, and owl::UserGeomGroup.
std::vector<Geom::SP> owl::GeomGroup::geometries |
list of child geometries to use in this BVH
const int owl::GeomGroup::sbtOffset |