OWL
OptiX7 Wrapper Library
|
#include <Triangles.h>
Classes | |
struct | DeviceData |
Public Types | |
typedef std::shared_ptr< TrianglesGeom > | SP |
![]() | |
typedef std::shared_ptr< Geom > | SP |
![]() | |
typedef std::shared_ptr< SBTObject > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
TrianglesGeom (Context *const context, GeomType::SP geometryType) | |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
DeviceData & | getDD (const DeviceContext::SP &device) const |
void | setVertices (const std::vector< Buffer::SP > &vertices, size_t count, size_t stride, size_t offset) |
void | setIndices (Buffer::SP indices, size_t count, size_t stride, size_t offset) |
void | computeBounds (box3f bounds[2]) |
std::string | toString () const override |
![]() | |
Geom (Context *const context, GeomType::SP geomType) | |
void | writeSBTRecord (uint8_t *const sbtRecord, const DeviceContext::SP &device, int rayTypeID) |
![]() | |
SBTObject (Context *const context, ObjectRegistry ®istry, std::shared_ptr< GeomType > 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 () |
Public Attributes | |
struct { | |
size_t count = 0 | |
size_t stride = 0 | |
size_t offset = 0 | |
Buffer::SP buffer | |
} | index |
struct { | |
size_t count = 0 | |
size_t stride = 0 | |
size_t offset = 0 | |
std::vector< Buffer::SP > buffers | |
} | vertex |
![]() | |
GeomType::SP | geomType |
![]() | |
std::shared_ptr< GeomType > 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 |
Additional Inherited Members | |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
an actual instance of a given triangle-primitmives type; this actual trianlge mesh uses the programs and SBT data associated with its associated TrianglesGeomType, and will "instantiate" these with the vertex arrays, index array, etc, specified in this Geom
typedef std::shared_ptr<TrianglesGeom> owl::TrianglesGeom::SP |
owl::TrianglesGeom::TrianglesGeom | ( | Context *const | context, |
GeomType::SP | geometryType | ||
) |
constructor - create a new (as yet without vertices, indices, etc) instance of given triangles geom type
void owl::TrianglesGeom::computeBounds | ( | box3f | bounds[2] | ) |
call a cuda kernel that computes the bounds of the vertex buffers
|
override |
creates the device-specific data for this group
|
inline |
creates the device-specific data for this group
get reference to given device-specific data for this object
get reference to given device-specific data for this object
void owl::TrianglesGeom::setIndices | ( | Buffer::SP | indices, |
size_t | count, | ||
size_t | stride, | ||
size_t | offset | ||
) |
set the index buffer; this remains one buffer even if motion blur is enabled.
void owl::TrianglesGeom::setVertices | ( | const std::vector< Buffer::SP > & | vertices, |
size_t | count, | ||
size_t | stride, | ||
size_t | offset | ||
) |
set the vertex array (if vector size is 1), or set/enable motion blur via multiple time steps, if vector size >= 0
count | the number of vertices in each time step |
|
overridevirtual |
pretty-print
Reimplemented from owl::Geom.
Buffer::SP owl::TrianglesGeom::buffer |
std::vector<Buffer::SP> owl::TrianglesGeom::buffers |
size_t owl::TrianglesGeom::count = 0 |
struct { ... } owl::TrianglesGeom::index |
size_t owl::TrianglesGeom::offset = 0 |
size_t owl::TrianglesGeom::stride = 0 |
struct { ... } owl::TrianglesGeom::vertex |