OWL
OptiX7 Wrapper Library
|
#include <DeviceContext.h>
Classes | |
struct | FreedRange |
Public Member Functions | |
int | alloc (size_t size) |
void | release (size_t begin, size_t size) |
Public Attributes | |
size_t | maxAllocedID = 0 |
Private Attributes | |
std::vector< FreedRange > | freedRanges |
tracks which ID regions in the SBT have already been used - newly created groups allocate ranges of IDs in the SBT (to allow its geometries to be in successive SBT regions), and this struct keeps track of whats already used, and what is available
int owl::RangeAllocator::alloc | ( | size_t | size | ) |
allocate 'size' consecutive SBT entries, and return index of first of those
void owl::RangeAllocator::release | ( | size_t | begin, |
size_t | size | ||
) |
a given group has died, and tells us to release given range (starting at begin, with 'siez' elements', to be re-used when appropriate
|
private |
size_t owl::RangeAllocator::maxAllocedID = 0 |