remove unused pimpl method

This commit is contained in:
Mamadou Babaei
2024-08-16 18:01:37 +02:00
parent 852f19eb92
commit 33b0e8a167
@@ -459,7 +459,6 @@ struct FSGXRTracker::FImpl
FSGXRHandState& GetLeftHandState(); FSGXRHandState& GetLeftHandState();
FSGXRHandState& GetRightHandState(); FSGXRHandState& GetRightHandState();
void AddKeys();
void BuildMotionSourceToKeypointMap(); void BuildMotionSourceToKeypointMap();
bool CanOutputTrackingData(EControllerHand Hand) const; bool CanOutputTrackingData(EControllerHand Hand) const;
@@ -882,7 +881,6 @@ FSGXRTracker::FSGXRTracker(const TSharedRef<FGenericApplicationMessageHandler>&
static_cast<IMotionController*>(this)); static_cast<IMotionController*>(this));
IModularFeatures::Get().RegisterModularFeature(IOpenXRExtensionPlugin::GetModularFeatureName(), IModularFeatures::Get().RegisterModularFeature(IOpenXRExtensionPlugin::GetModularFeatureName(),
static_cast<IOpenXRExtensionPlugin*>(this)); static_cast<IOpenXRExtensionPlugin*>(this));
Pimpl->AddKeys();
// We're implicitly requiring that the OpenXRPlugin has been loaded and initialized at this point. // We're implicitly requiring that the OpenXRPlugin has been loaded and initialized at this point.
if (!IOpenXRHMDModule::Get().IsAvailable()) if (!IOpenXRHMDModule::Get().IsAvailable())
@@ -1435,10 +1433,6 @@ FSGXRHandState& FSGXRTracker::FImpl::GetRightHandState()
return HandStates[1]; return HandStates[1];
} }
void FSGXRTracker::FImpl::AddKeys()
{
}
void FSGXRTracker::FImpl::BuildMotionSourceToKeypointMap() void FSGXRTracker::FImpl::BuildMotionSourceToKeypointMap()
{ {
if (!MotionSourceToKeypointMap.IsEmpty()) if (!MotionSourceToKeypointMap.IsEmpty())