Hi,
We discovered an issue and we wanted to post an issue on the github, but it seems the repository (GitHub - NVIDIA/CloudXR: CloudXR sample applications for streaming AR/VR/MR content from the cloud) doesnt allow external developers to post issues.
Specifically it is in this file:
On line 184 it is currently like this:
AddOption("enable-ir-decoder", "ird", false, "Enable experimental ImageReader decoder on Android devices (reqs sdk >= 26)",
HANDLER_LAMBDA_FN{ mDebugFlags |= cxrDebugFlags_EnableImageReaderDecoder; return ParseStatus_Success; });
When it was like that it wasn´t possible to build it.
Commenting it out didn´t help
But when changed to to:
AddOption("enable-ir-decoder", "ird", false, "Enable experimental ImageReader decoder on Android devices (reqs sdk >= 26)", HANDLER_LAMBDA_FN{ mDebugFlags |= cxrDebugFlags_EnableAImageReaderDecoder; return ParseStatus_Success; });
Then it worked on CloudXR 3.2 (From May 2022).