1 write to _rootData
PresentationCore (1)
System\Windows\Media\Animation\Clock.cs (1)
664rootClock._rootData = new RootData(); // Create a RootData to hold root specific information.
29 references to _rootData
PresentationCore (29)
System\Windows\Media\Animation\Clock.cs (29)
555return current._rootData.CurrentAdjustedGlobalTime; 780return _rootData.InteractiveSpeedRatio; 875_rootData.PendingSeekDestination = destination; 964_rootData.PendingSpeedRatio = ratio; 992_rootData.PendingSeekDestination = effectiveDuration.Value; // Seek to the end time 1009_rootData.PendingSeekDestination = null; 1471returnValue = _rootData.DesiredFrameRate; 1800Debug.Assert(_rootData != null); 1803if (_rootData.PendingSeekDestination.HasValue && !HasDescendantsWithUnresolvedDuration) 1808_beginTime = CurrentGlobalTime - DivideTimeSpan(_rootData.PendingSeekDestination.Value, _appliedSpeedRatio); 1817_rootData.PendingSeekDestination = null; 1843else if ((IsInteractivelyPaused || _rootData.InteractiveSpeedRatio == 0) && 1864if (_rootData.PendingSpeedRatio.HasValue) 1866double pendingSpeedRatio = _rootData.PendingSpeedRatio.Value * _timeline.SpeedRatio; 1901_rootData.InteractiveSpeedRatio = _rootData.PendingSpeedRatio.Value; 1904_rootData.PendingSpeedRatio = null; 1918_rootData.LastAdjustedGlobalTime = _rootData.CurrentAdjustedGlobalTime; 1919_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 1933Debug.Assert(_rootData.DesiredFrameRate > 0); 1936TimeSpan nextDesiredTick = InternalNextTickNeededTime == TimeSpan.Zero ? _rootData.CurrentAdjustedGlobalTime 3093Debug.Assert(_rootData != null, "A root Clock must have the _rootData structure initialized."); 3094HasSeekOccuredAfterLastTick = seekedAlignedToLastTick || (_rootData.PendingSeekDestination != null); // We may have a seek request pending 3115parentTime = _rootData.CurrentAdjustedGlobalTime; 3120_rootData.LastAdjustedGlobalTime); 3530Debug.Assert(_rootData.DesiredFrameRate > 0); 3532Int64 desiredFrameRate = _rootData.DesiredFrameRate; 3603_rootData.DesiredFrameRate = desiredFrameRate.Value;