OWL
OptiX7 Wrapper Library
owl::InstanceGroup Struct Reference

#include <InstanceGroup.h>

Inheritance diagram for owl::InstanceGroup:
owl::Group owl::RegisteredObject owl::ContextObject owl::Object

Classes

struct  DeviceData
 

Public Types

typedef std::shared_ptr< InstanceGroupSP
 
- Public Types inherited from owl::Group
typedef std::shared_ptr< GroupSP
 
- Public Types inherited from owl::ContextObject
typedef std::shared_ptr< ContextObjectSP
 
- Public Types inherited from owl::Object
typedef std::shared_ptr< ObjectSP
 

Public Member Functions

 InstanceGroup (Context *const context, size_t numChildren, Group::SP *groups)
 
std::string toString () const override
 
void setChild (int childID, Group::SP child)
 
void setTransform (int childID, const affine3f &xfm)
 
void setTransforms (uint32_t timeStep, const float *floatsForThisStimeStep, OWLMatrixFormat matrixFormat)
 
void setInstanceIDs (const uint32_t *instanceIDs)
 
void buildAccel () override
 
void refitAccel () override
 
RegisteredObject::DeviceData::SP createOn (const DeviceContext::SP &device) override
 
DeviceDatagetDD (const DeviceContext::SP &device) const
 
template<bool FULL_REBUILD>
void staticBuildOn (const DeviceContext::SP &device)
 
template<bool FULL_REBUILD>
void motionBlurBuildOn (const DeviceContext::SP &device)
 
int getSBTOffset () const override
 
- Public Member Functions inherited from owl::Group
 Group (Context *const context, ObjectRegistry &registry)
 
DeviceDatagetDD (const DeviceContext::SP &device) const
 
RegisteredObject::DeviceData::SP createOn (const DeviceContext::SP &device) override
 
OptixTraversableHandle getTraversable (const DeviceContext::SP &device) const
 
- Public Member Functions inherited from owl::RegisteredObject
 RegisteredObject (Context *const context, ObjectRegistry &registry)
 
 ~RegisteredObject ()
 
- Public Member Functions inherited from owl::ContextObject
 ContextObject (Context *const context)
 
std::string toString () const override
 
- Public Member Functions inherited from owl::Object
 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< Group::SPchildren
 
std::vector< affine3ftransforms [2]
 
std::vector< uint32_t > instanceIDs
 
- Public Attributes inherited from owl::Group
box3f bounds [2]
 
- Public Attributes inherited from owl::RegisteredObject
int ID
 
ObjectRegistryregistry
 
- Public Attributes inherited from owl::ContextObject
Context *const context
 
- Public Attributes inherited from owl::Object
const size_t uniqueID
 
std::vector< DeviceData::SPdeviceData
 

Additional Inherited Members

- Static Public Attributes inherited from owl::Object
static std::atomic< uint64_t > nextAvailableID
 

Detailed Description

a OWL Group / BVH over instances (i.e., a IAS)

Member Typedef Documentation

◆ SP

typedef std::shared_ptr<InstanceGroup> owl::InstanceGroup::SP

Constructor & Destructor Documentation

◆ InstanceGroup()

owl::InstanceGroup::InstanceGroup ( Context *const  context,
size_t  numChildren,
Group::SP groups 
)

construct with given array of groups - transforms can be specified later

Member Function Documentation

◆ buildAccel()

void owl::InstanceGroup::buildAccel ( )
overridevirtual

re*build* this accel - actual work depens on subclass

Implements owl::Group.

◆ createOn()

RegisteredObject::DeviceData::SP owl::InstanceGroup::createOn ( const DeviceContext::SP device)
override

creates the device-specific data for this group

◆ getDD()

InstanceGroup::DeviceData & owl::InstanceGroup::getDD ( const DeviceContext::SP device) const
inline

get reference to given device-specific data for this object

◆ getSBTOffset()

int owl::InstanceGroup::getSBTOffset ( ) const
inlineoverridevirtual

return the SBT offset to use for this group - SBT offsets for instnace groups are always 0

Implements owl::Group.

◆ motionBlurBuildOn()

template<bool FULL_REBUILD>
void owl::InstanceGroup::motionBlurBuildOn ( const DeviceContext::SP device)

the N build inputs that go into the builder

◆ refitAccel()

void owl::InstanceGroup::refitAccel ( )
overridevirtual

re*fit* this accel - actual work depens on subclass

Implements owl::Group.

◆ setChild()

void owl::InstanceGroup::setChild ( int  childID,
Group::SP  child 
)

set given child to given group

◆ setInstanceIDs()

void owl::InstanceGroup::setInstanceIDs ( const uint32_t *  instanceIDs)

◆ setTransform()

void owl::InstanceGroup::setTransform ( int  childID,
const affine3f xfm 
)

set transformation matrix of given child

◆ setTransforms()

void owl::InstanceGroup::setTransforms ( uint32_t  timeStep,
const float *  floatsForThisStimeStep,
OWLMatrixFormat  matrixFormat 
)

set transformation matrix of given child

◆ staticBuildOn()

template<bool FULL_REBUILD>
void owl::InstanceGroup::staticBuildOn ( const DeviceContext::SP device)

the N build inputs that go into the builder

◆ toString()

std::string owl::InstanceGroup::toString ( ) const
overridevirtual

pretty-printer, for printf-debugging

Reimplemented from owl::Group.

Member Data Documentation

◆ children

std::vector<Group::SP> owl::InstanceGroup::children

the list of children - note we do have to keep them both in the ll layer and here for the refcounting to work; the transforms are only stored once, on the ll layer

◆ instanceIDs

std::vector<uint32_t> owl::InstanceGroup::instanceIDs

vector of instnace IDs to use for these instances - if not specified we/optix will fill in automatically using instanceID=childID

◆ transforms

std::vector<affine3f> owl::InstanceGroup::transforms[2]

set of transform matrices for t=0 and t=1, respectively. if we don't use motion blur, the second one may be unused


The documentation for this struct was generated from the following files: