A user CUDA stream or OpenCL command queue, selected by which member is populated.
Namespace:
Zivid.NET
Assembly:
ZividCoreNET (in ZividCoreNET.dll) Version: 2.18.0.0
Syntaxpublic struct StreamOrQueue
Public Structure StreamOrQueue
public value class StreamOrQueue
The StreamOrQueue type exposes the following members.
Operators
Fields|
| Name | Description |
|---|
 | CommandQueue | The OpenCL command queue wrapper (used on OpenCL builds) |
 | Stream | The CUDA stream wrapper (used on CUDA builds) |
Top
Remarks
Mirrors the native Zivid::StreamOrQueue. A CUDAStreamPtr or OpenCLCommandQueuePtr converts
implicitly. On a CUDA build the Stream member is used (a zero handle means the CUDA default
stream) and CommandQueue must be zero; on an OpenCL build the CommandQueue member is used
(must be non-zero) and Stream must be zero.
See Also