OpenXR-SDK-Source
OpenXR-SDK-Source copied to clipboard
Typo in hello_xr writes memory address rather than actual lost event count
In openxr_program.cpp
(for hello xr), the following line is flawed:
Log::Write(Log::Level::Warning, Fmt("%d events lost", eventsLost));
eventsLost
is a pointer to a XrEventDataEventsLost
, and should probably be replaced with eventsLost->lostEventCount
?
An issue (number 1681) has been filed to correspond to this issue in the internal Khronos GitLab (Khronos members only: KHR:openxr/openxr#1681 ), to facilitate working group processes.
This GitHub issue will continue to be the main site of discussion.