3 writes to _cachePointers
PresentationCore (3)
MS\Internal\Shaping\OpenTypeLayout.cs (3)
1170
_cachePointers
= null;
1290
_cachePointers
= new ushort[glyphRunLength];
1321
_cachePointers
= tmp;
8 references to _cachePointers
PresentationCore (8)
MS\Internal\Shaping\OpenTypeLayout.cs (8)
1288
if (
_cachePointers
!= null &&
_cachePointers
.Length >= glyphRunLength) return;
1314
if (
_cachePointers
.Length < newLength)
1318
Array.Copy(
_cachePointers
, tmp, firstGlyphChanged);
1319
Array.Copy(
_cachePointers
, oldAfterLastGlyphChanged, tmp, afterLastGlyphChanged, oldLength - oldAfterLastGlyphChanged);
1325
Array.Copy(
_cachePointers
, oldAfterLastGlyphChanged,
_cachePointers
, afterLastGlyphChanged, oldLength - oldAfterLastGlyphChanged);
1332
get { return
_cachePointers
; }