1 write to _rootData
PresentationCore (1)
System\Windows\Media\Animation\Clock.cs (1)
651rootClock._rootData = new RootData(); // Create a RootData to hold root specific information.
29 references to _rootData
PresentationCore (29)
System\Windows\Media\Animation\Clock.cs (29)
542return current._rootData.CurrentAdjustedGlobalTime; 767return _rootData.InteractiveSpeedRatio; 862_rootData.PendingSeekDestination = destination; 951_rootData.PendingSpeedRatio = ratio; 979_rootData.PendingSeekDestination = effectiveDuration.Value; // Seek to the end time 996_rootData.PendingSeekDestination = null; 1458returnValue = _rootData.DesiredFrameRate; 1787Debug.Assert(_rootData != null); 1790if (_rootData.PendingSeekDestination.HasValue && !HasDescendantsWithUnresolvedDuration) 1795_beginTime = CurrentGlobalTime - DivideTimeSpan(_rootData.PendingSeekDestination.Value, _appliedSpeedRatio); 1804_rootData.PendingSeekDestination = null; 1830else if ((IsInteractivelyPaused || _rootData.InteractiveSpeedRatio == 0) && 1851if (_rootData.PendingSpeedRatio.HasValue) 1853double pendingSpeedRatio = _rootData.PendingSpeedRatio.Value * _timeline.SpeedRatio; 1888_rootData.InteractiveSpeedRatio = _rootData.PendingSpeedRatio.Value; 1891_rootData.PendingSpeedRatio = null; 1905_rootData.LastAdjustedGlobalTime = _rootData.CurrentAdjustedGlobalTime; 1906_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 1920Debug.Assert(_rootData.DesiredFrameRate > 0); 1923TimeSpan nextDesiredTick = InternalNextTickNeededTime == TimeSpan.Zero ? _rootData.CurrentAdjustedGlobalTime 3080Debug.Assert(_rootData != null, "A root Clock must have the _rootData structure initialized."); 3081HasSeekOccuredAfterLastTick = seekedAlignedToLastTick || (_rootData.PendingSeekDestination != null); // We may have a seek request pending 3102parentTime = _rootData.CurrentAdjustedGlobalTime; 3107_rootData.LastAdjustedGlobalTime); 3517Debug.Assert(_rootData.DesiredFrameRate > 0); 3519Int64 desiredFrameRate = _rootData.DesiredFrameRate; 3590_rootData.DesiredFrameRate = desiredFrameRate.Value;