OWL
OptiX7 Wrapper Library
|
#include <Object.h>
Classes | |
struct | DeviceData |
Public Types | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
Object () | |
virtual std::string | toString () const |
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 size_t | uniqueID |
std::vector< DeviceData::SP > | deviceData |
Static Public Attributes | |
static std::atomic< uint64_t > | nextAvailableID |
common "root" abstraction for every object this library creates
typedef std::shared_ptr<Object> owl::Object::SP |
owl::Object::Object | ( | ) |
constructor
|
inline |
pretty-typecase to all derived classes
void owl::Object::createDeviceData | ( | const std::vector< std::shared_ptr< DeviceContext >> & | devices | ) |
creates the actual device data for all devies,by calling
|
virtual |
creates the device-specific data for this group
|
virtual |
pretty-printer, for printf-debugging
Reimplemented in owl::UserGeom, owl::UserGeomType, owl::TrianglesGeomGroup, owl::TrianglesGeom, owl::TrianglesGeomType, owl::Texture, owl::SBTObjectType, owl::RayGen, owl::RayGenType, owl::ContextObject, owl::Module, owl::MissProg, owl::MissProgType, owl::LaunchParams, owl::InstanceGroup, owl::Group, owl::Geom, owl::GeomType, owl::GraphicsBuffer, owl::ManagedMemoryBuffer, owl::HostPinnedBuffer, owl::DeviceBuffer, owl::Buffer, owl::Variable, owl::UserGeomGroup, owl::SBTObject< ObjectType >, owl::LaunchParamsType, and owl::GeomGroup.
std::vector<DeviceData::SP> owl::Object::deviceData |
the list of per-device data for this object - should be exactly one per GPU in the context
|
static |
atomic counter that always describes the next not yet used unique ID, which we can use to fill in the Object::uniquID values
const size_t owl::Object::uniqueID |
a unique ID we assign to each newly created object - this allows any caching algorithms to check if a given object was replaced with another, even if in some internal array it ends up with the same array index as a previous other object