OWL
OptiX7 Wrapper Library
|
#include <Module.h>
Classes | |
struct | DeviceData |
Public Types | |
typedef std::shared_ptr< Module > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
Module (Context *context, const std::string &ptxCode) | |
virtual | ~Module () |
std::string | toString () const override |
DeviceData & | getDD (const DeviceContext::SP &device) const |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
![]() | |
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::string | ptxCode |
![]() | |
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 |
captures the concept of a module that contains one or more programs.
typedef std::shared_ptr<Module> owl::Module::SP |
owl::Module::Module | ( | Context * | context, |
const std::string & | ptxCode | ||
) |
constructor - ptxCode contains the prec-ompiled ptx code with the compiled functions
|
virtual |
destructor, to release data if required
|
override |
create this object's device-specific data for the device
|
inline |
get reference to given device-specific data for this object
|
overridevirtual |
pretty-printer, for printf-debugging
Reimplemented from owl::Object.
const std::string owl::Module::ptxCode |
the precompiled PTX code supplied by the user