MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ OutputMode

Enumerator
CONTAINER 

Download storage image at binding 0 into a TextureContainer.

SCALAR 

Return SSBO readback via collect_result(); no image download.

IMAGE 

Transition output image to shader-read layout; no CPU download.

Retrieve via get_output_image(0). Zero readback cost.

Definition at line 60 of file TextureExecutionContext.hpp.

60 : uint8_t {
61 CONTAINER, ///< Download storage image at binding 0 into a TextureContainer.
62 SCALAR, ///< Return SSBO readback via collect_result(); no image download.
63 IMAGE, ///< Transition output image to shader-read layout; no CPU download.
64 ///< Retrieve via get_output_image(0). Zero readback cost.
65 };
@ IMAGE
Transition output image to shader-read layout; no CPU download.
@ SCALAR
Return SSBO readback via collect_result(); no image download.
@ CONTAINER
Download storage image at binding 0 into a TextureContainer.