OWL
OptiX7 Wrapper Library
|
#include <RayGen.h>
Classes | |
struct | DeviceData |
Public Types | |
typedef std::shared_ptr< RayGen > | SP |
![]() | |
typedef std::shared_ptr< SBTObject > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
RayGen (Context *const context, RayGenType::SP type) | |
virtual | ~RayGen () |
std::string | toString () const override |
void | launch (const vec2i &dims) |
void | launchAsync (const vec2i &dims, const LaunchParams::SP &launchParams) |
void | writeSBTRecord (uint8_t *const sbtRecord, const DeviceContext::SP &device) |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
DeviceData & | getDD (const DeviceContext::SP &device) const |
![]() | |
SBTObject (Context *const context, ObjectRegistry ®istry, std::shared_ptr< RayGenType > type) | |
virtual std::string | toString () const |
![]() | |
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) | |
![]() | |
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 () |
Additional Inherited Members | |
![]() | |
std::shared_ptr< RayGenType > const | type |
![]() | |
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 |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
an actual instance of a raygen program - defined by its type and variable values
typedef std::shared_ptr<RayGen> owl::RayGen::SP |
owl::RayGen::RayGen | ( | Context *const | context, |
RayGenType::SP | type | ||
) |
create new raygen of given type
|
virtual |
clean up...
|
override |
creates the device-specific data for this group
|
inline |
get reference to given device-specific data for this object
void owl::RayGen::launch | ( | const vec2i & | dims | ) |
execute a synchronous launch of this raygen program, of given dimensions - this will wait for the program to complete
void owl::RayGen::launchAsync | ( | const vec2i & | dims, |
const LaunchParams::SP & | lp | ||
) |
launch this raygen prog with given launch params, but do NOT wait for completion - this means the SBT shuld NOT be changed or rebuild until a launchParams->sync() has been done
|
overridevirtual |
pretty-printer, for printf-debugging
Reimplemented from owl::ContextObject.
void owl::RayGen::writeSBTRecord | ( | uint8_t *const | sbtRecord, |
const DeviceContext::SP & | device | ||
) |
write the given SBT record, using the given device's corresponding device-side data represenataion