OWL
OptiX7 Wrapper Library
|
#include <Buffer.h>
Public Types | |
typedef std::shared_ptr< GraphicsBuffer > | SP |
![]() | |
typedef std::shared_ptr< Buffer > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
GraphicsBuffer (Context *const context, OWLDataType type, cudaGraphicsResource_t resource) | |
void | map (const int deviceID=0, CUstream stream=0) |
void | unmap (const int deviceID=0, CUstream stream=0) |
void | resize (size_t newElementCount) override |
void | upload (const void *hostPtr) override |
void | upload (const int deviceID, const void *hostPtr) override |
std::string | toString () const override |
![]() | |
Buffer (Context *const context, OWLDataType type) | |
virtual | ~Buffer () |
Buffer::DeviceData & | getDD (const DeviceContext::SP &device) const |
const void * | getPointer (const DeviceContext::SP &device) const |
size_t | getElementCount () const |
size_t | sizeInBytes () const |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
void | destroy () |
![]() | |
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 | |
cudaGraphicsResource_t | resource |
![]() | |
const OWLDataType | type |
size_t | elementCount { 0 } |
![]() | |
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 |
a special graphics resource buffer that, upon mapping, will map that graphics resource
typedef std::shared_ptr<GraphicsBuffer> owl::GraphicsBuffer::SP |
owl::GraphicsBuffer::GraphicsBuffer | ( | Context *const | context, |
OWLDataType | type, | ||
cudaGraphicsResource_t | resource | ||
) |
void owl::GraphicsBuffer::map | ( | const int | deviceID = 0 , |
CUstream | stream = 0 |
||
) |
|
overridevirtual |
resize buffer to new num elements
Implements owl::Buffer.
|
overridevirtual |
pretty-printer, for debugging
Reimplemented from owl::Buffer.
void owl::GraphicsBuffer::unmap | ( | const int | deviceID = 0 , |
CUstream | stream = 0 |
||
) |
|
overridevirtual |
upload data from host, to only given device ID
Implements owl::Buffer.
|
overridevirtual |
upload data from host, using as many bytes as required by elemnetCount and dataSize
Implements owl::Buffer.
cudaGraphicsResource_t owl::GraphicsBuffer::resource |
the cuda graphics resource to map to - note that this is probably valid on only one GPU