Skip to content

Commit

Permalink
Fixed ios compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
SoylentGraham committed Oct 6, 2024
1 parent d7061fa commit 01e4731
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ArkitCapture.mm
Original file line number Diff line number Diff line change
Expand Up @@ -1102,8 +1102,8 @@ void GetGeometry(ARMeshAnchor* Anchor,Arkit::TAnchorGeometry& Geometry)
void Arkit::TFrameDevice::PushFrame(ARFrame* Frame,ArFrameSource::Type Source)
{
auto* ColourStreamName = GetColourStreamName(Source);
auto FrameTime = Soy::Platform::GetTime( Frame.timestamp );
auto CapDepthTime = Soy::Platform::GetTime( Frame.capturedDepthDataTimestamp );
auto FrameTime = SoyTime( Soy::Platform::GetTime( Frame.timestamp ) );
auto CapDepthTime = SoyTime( Soy::Platform::GetTime( Frame.capturedDepthDataTimestamp ) );

//std::Debug << "Arkit frame: Time=" << FrameTime << " Depth=" << CapDepthTime << " Delta=" << (FrameTime-mPreviousFrameTime) << " capdepth=" << (Frame.capturedDepthData?"true":"false") << std::endl;

Expand Down

0 comments on commit 01e4731

Please sign in to comment.