OWL
OptiX7 Wrapper Library
|
#include <UserGeom.h>
Classes | |
struct | DeviceData |
Public Types | |
typedef std::shared_ptr< UserGeomType > | SP |
![]() | |
typedef std::shared_ptr< GeomType > | SP |
![]() | |
typedef std::shared_ptr< SBTObjectType > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
UserGeomType (Context *const context, size_t varStructSize, const std::vector< OWLVarDecl > &varDecls) | |
void | setIntersectProg (int rayType, Module::SP module, const std::string &progName) |
void | setBoundsProg (Module::SP module, const std::string &progName) |
void | buildBoundsProg () |
std::string | toString () const override |
virtual std::shared_ptr< Geom > | createGeom () override |
DeviceData & | getDD (const DeviceContext::SP &device) const |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
![]() | |
GeomType (Context *const context, size_t varStructSize, const std::vector< OWLVarDecl > &varDecls) | |
DeviceData & | getDD (const DeviceContext::SP &device) const |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
void | setAnyHitProgram (int rayType, Module::SP module, const std::string &progName) |
void | setClosestHitProgram (int rayType, Module::SP module, const std::string &progName) |
![]() | |
SBTObjectType (Context *const context, ObjectRegistry ®istry, size_t varStructSize, const std::vector< OWLVarDecl > &varDecls) | |
int | getVariableIdx (const std::string &varName) |
bool | hasVariable (const std::string &varName) |
void | declareVariable (const std::string &varName, OWLDataType type, size_t offset) |
std::vector< Variable::SP > | instantiateVariables () |
![]() | |
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 () |
Public Attributes | |
ProgramDesc | boundsProg |
std::vector< ProgramDesc > | intersectProg |
![]() | |
std::vector< ProgramDesc > | anyHit |
std::vector< ProgramDesc > | closestHit |
![]() | |
const size_t | varStructSize |
const std::vector< OWLVarDecl > | varDecls |
![]() | |
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 |
Describes a geometry type for "User Geometries" or, as they area also known in OptiX land, "Custom Primitives" - ie, primitives where the user specifies bounding box program and intersection program. This "Type" class describes these programs; the "UserGeom" class then creates objects of this type and stores the respective data that describe that object
typedef std::shared_ptr<UserGeomType> owl::UserGeomType::SP |
owl::UserGeomType::UserGeomType | ( | Context *const | context, |
size_t | varStructSize, | ||
const std::vector< OWLVarDecl > & | varDecls | ||
) |
constructor, using the variable declaratoins that the user supplied
void owl::UserGeomType::buildBoundsProg | ( | ) |
build the CUDA bounds program kernel (if bounds prog is set)
|
overridevirtual |
create an instance of this geometry that the user can then parameterize and attach to a group
Implements owl::GeomType.
|
override |
create this object's device-specific data for the device
|
inline |
get reference to given device-specific data for this object
void owl::UserGeomType::setBoundsProg | ( | Module::SP | module, |
const std::string & | progName | ||
) |
set bounding box program to run for this type
void owl::UserGeomType::setIntersectProg | ( | int | rayType, |
Module::SP | module, | ||
const std::string & | progName | ||
) |
set intersection program to run for this type and given ray type
|
overridevirtual |
pretty-printer, for printf-debugging
Reimplemented from owl::GeomType.
ProgramDesc owl::UserGeomType::boundsProg |
the bounds prog to run for this type
std::vector<ProgramDesc> owl::UserGeomType::intersectProg |
the vector of intersect programs to run for this type, one per ray type