1 write to _rootData
PresentationCore (1)
System\Windows\Media\Animation\Clock.cs (1)
650rootClock._rootData = new RootData(); // Create a RootData to hold root specific information.
29 references to _rootData
PresentationCore (29)
System\Windows\Media\Animation\Clock.cs (29)
541return current._rootData.CurrentAdjustedGlobalTime; 766return _rootData.InteractiveSpeedRatio; 861_rootData.PendingSeekDestination = destination; 950_rootData.PendingSpeedRatio = ratio; 978_rootData.PendingSeekDestination = effectiveDuration.Value; // Seek to the end time 995_rootData.PendingSeekDestination = null; 1454returnValue = _rootData.DesiredFrameRate; 1783Debug.Assert(_rootData != null); 1786if (_rootData.PendingSeekDestination.HasValue && !HasDescendantsWithUnresolvedDuration) 1791_beginTime = CurrentGlobalTime - DivideTimeSpan(_rootData.PendingSeekDestination.Value, _appliedSpeedRatio); 1800_rootData.PendingSeekDestination = null; 1826else if ((IsInteractivelyPaused || _rootData.InteractiveSpeedRatio == 0) && 1847if (_rootData.PendingSpeedRatio.HasValue) 1849double pendingSpeedRatio = _rootData.PendingSpeedRatio.Value * _timeline.SpeedRatio; 1884_rootData.InteractiveSpeedRatio = _rootData.PendingSpeedRatio.Value; 1887_rootData.PendingSpeedRatio = null; 1901_rootData.LastAdjustedGlobalTime = _rootData.CurrentAdjustedGlobalTime; 1902_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 1916Debug.Assert(_rootData.DesiredFrameRate > 0); 1919TimeSpan nextDesiredTick = InternalNextTickNeededTime == TimeSpan.Zero ? _rootData.CurrentAdjustedGlobalTime 3072Debug.Assert(_rootData != null, "A root Clock must have the _rootData structure initialized."); 3073HasSeekOccuredAfterLastTick = seekedAlignedToLastTick || (_rootData.PendingSeekDestination != null); // We may have a seek request pending 3094parentTime = _rootData.CurrentAdjustedGlobalTime; 3099_rootData.LastAdjustedGlobalTime); 3509Debug.Assert(_rootData.DesiredFrameRate > 0); 3511Int64 desiredFrameRate = _rootData.DesiredFrameRate; 3582_rootData.DesiredFrameRate = desiredFrameRate.Value;