| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .TH "rtcSetNewGeometryBuffer" "3" "" "" "Embree Ray Tracing Kernels 3"
- .SS NAME
- .IP
- .nf
- \f[C]
- rtcSetNewGeometryBuffer\ \-\ creates\ and\ assigns\ a\ new\ data\ buffer\ to
- \ \ the\ geometry
- \f[]
- .fi
- .SS SYNOPSIS
- .IP
- .nf
- \f[C]
- #include\ <embree3/rtcore.h>
- void*\ rtcSetNewGeometryBuffer(
- \ \ RTCGeometry\ geometry,
- \ \ enum\ RTCBufferType\ type,
- \ \ unsigned\ int\ slot,
- \ \ enum\ RTCFormat\ format,
- \ \ size_t\ byteStride,
- \ \ size_t\ itemCount
- );
- \f[]
- .fi
- .SS DESCRIPTION
- .PP
- The \f[C]rtcSetNewGeometryBuffer\f[] function creates a new data buffer
- of specified format (\f[C]format\f[] argument), byte stride
- (\f[C]byteStride\f[] argument), and number of items (\f[C]itemCount\f[]
- argument), and assigns it to a geometry buffer slot (\f[C]type\f[] and
- \f[C]slot\f[] argument) of the specified geometry (\f[C]geometry\f[]
- argument).
- The buffer data is managed internally and automatically freed when the
- geometry is destroyed.
- .PP
- The byte stride (\f[C]byteStride\f[] argument) must be aligned to 4
- bytes; otherwise the \f[C]rtcSetNewGeometryBuffer\f[] function will
- fail.
- .PP
- The allocated buffer will be automatically over\-allocated slightly when
- used as a vertex buffer, where a requirement is that each buffer element
- should be readable using 16\-byte SSE load instructions.
- .SS EXIT STATUS
- .PP
- On failure an error code is set that can be queried using
- \f[C]rtcGetDeviceError\f[].
- .SS SEE ALSO
- .PP
- [rtcSetGeometryBuffer], [rtcSetSharedGeometryBuffer]
|