The enhanced function contains this code
XrPlaneDetectionStateEXT state_tmp;
PlaneDetectionStateEXT state;
Result result = static_cast<Result>(
d.xrGetPlaneDetectionStateEXT(this->get(), state_tmp));
But the dispatcher call here expects a XrPlaneDetectionStateEXT* as it's second argument, not a XrPlaneDetectionStateEXT.
The enhanced function contains this code
But the dispatcher call here expects a
XrPlaneDetectionStateEXT*as it's second argument, not aXrPlaneDetectionStateEXT.