1 write to _rootData
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (1)
666rootClock._rootData = new RootData(); // Create a RootData to hold root specific information.
29 references to _rootData
PresentationCore (29)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (29)
557return current._rootData.CurrentAdjustedGlobalTime; 783return _rootData.InteractiveSpeedRatio; 878_rootData.PendingSeekDestination = destination; 967_rootData.PendingSpeedRatio = ratio; 995_rootData.PendingSeekDestination = effectiveDuration.Value; // Seek to the end time 1012_rootData.PendingSeekDestination = null; 1474returnValue = _rootData.DesiredFrameRate; 1803Debug.Assert(_rootData != null); 1806if (_rootData.PendingSeekDestination.HasValue && !HasDescendantsWithUnresolvedDuration) 1811_beginTime = CurrentGlobalTime - DivideTimeSpan(_rootData.PendingSeekDestination.Value, _appliedSpeedRatio); 1820_rootData.PendingSeekDestination = null; 1846else if ((IsInteractivelyPaused || _rootData.InteractiveSpeedRatio == 0) && 1867if (_rootData.PendingSpeedRatio.HasValue) 1869double pendingSpeedRatio = _rootData.PendingSpeedRatio.Value * _timeline.SpeedRatio; 1904_rootData.InteractiveSpeedRatio = _rootData.PendingSpeedRatio.Value; 1907_rootData.PendingSpeedRatio = null; 1921_rootData.LastAdjustedGlobalTime = _rootData.CurrentAdjustedGlobalTime; 1922_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 1936Debug.Assert(_rootData.DesiredFrameRate > 0); 1939TimeSpan nextDesiredTick = InternalNextTickNeededTime == TimeSpan.Zero ? _rootData.CurrentAdjustedGlobalTime 3095Debug.Assert(_rootData != null, "A root Clock must have the _rootData structure initialized."); 3096HasSeekOccuredAfterLastTick = seekedAlignedToLastTick || (_rootData.PendingSeekDestination != null); // We may have a seek request pending 3117parentTime = _rootData.CurrentAdjustedGlobalTime; 3125_rootData.LastAdjustedGlobalTime); 3538Debug.Assert(_rootData.DesiredFrameRate > 0); 3540Int64 desiredFrameRate = _rootData.DesiredFrameRate; 3611_rootData.DesiredFrameRate = desiredFrameRate.Value;