OWL
OptiX7 Wrapper Library
|
#include <SBTObject.h>
Public Member Functions | |
SBTObjectBase (Context *const context, ObjectRegistry ®istry, std::shared_ptr< SBTObjectType > type) | |
bool | hasVariable (const std::string &name) |
Variable::SP | getVariable (const std::string &name) |
void | writeVariables (uint8_t *sbtEntry, 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 | |
const std::vector< Variable::SP > | variables |
std::shared_ptr< SBTObjectType > const | type |
![]() | |
int | ID |
ObjectRegistry & | registry |
![]() | |
Context *const | context |
![]() | |
const size_t | uniqueID |
std::vector< DeviceData::SP > | deviceData |
Additional Inherited Members | |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
abstract base classs for any object that can store variables and write itself into a device-side shader binding table (ie, raygen programs, closest hit programs, etc. Each SBTObjectBase has a type that describes its variables, but the actual work for subclasses of this type will be done in the subclass.
owl::SBTObjectBase::SBTObjectBase | ( | Context *const | context, |
ObjectRegistry & | registry, | ||
std::shared_ptr< SBTObjectType > | type | ||
) |
create a new SBTOBject with this type descriptor, and register it in that registry
|
inline |
return shared-ptr to this variable - should only be called for variables that we actually own
|
inline |
returns whether this object has a variable of this name
void owl::SBTObjectBase::writeVariables | ( | uint8_t * | sbtEntryBase, |
const DeviceContext::SP & | device | ||
) | const |
this function is arguably the heart of the owl variable layer: given an SBT Object's set of variables, create the SBT entry that writes the given variables' values into the specified format, prorperly translating per-device data (buffers, traversable) while doing so (also works for launch params, even though those, strictly speaking, are not part of the SBT)
std::shared_ptr<SBTObjectType> const owl::SBTObjectBase::type |
our own type description, that tells us which variables (of which type, etc) we have
const std::vector<Variable::SP> owl::SBTObjectBase::variables |
the actual variable values