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