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