• Home
  • Raw
  • Download

Lines Matching refs:currentEntry

224     SkPDFDevice::GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; }  in currentEntry()  function in GraphicStackState
338 if (clipStack == currentEntry()->fClipStack) { in updateClip()
344 if (clipStack == currentEntry()->fClipStack) { in updateClip()
350 currentEntry()->fClipStack = clipStack; in updateClip()
372 if (matrix == currentEntry()->fMatrix) { in updateMatrix()
376 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) { in updateMatrix()
382 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask); in updateMatrix()
390 currentEntry()->fMatrix = matrix; in updateMatrix()
396 if (state.fShaderIndex != currentEntry()->fShaderIndex) { in updateDrawingState()
398 currentEntry()->fShaderIndex = state.fShaderIndex; in updateDrawingState()
401 if (state.fColor != currentEntry()->fColor || in updateDrawingState()
402 currentEntry()->fShaderIndex >= 0) { in updateDrawingState()
407 currentEntry()->fColor = state.fColor; in updateDrawingState()
408 currentEntry()->fShaderIndex = -1; in updateDrawingState()
412 if (state.fGraphicStateIndex != currentEntry()->fGraphicStateIndex) { in updateDrawingState()
414 currentEntry()->fGraphicStateIndex = state.fGraphicStateIndex; in updateDrawingState()
418 if (state.fTextScaleX != currentEntry()->fTextScaleX) { in updateDrawingState()
422 currentEntry()->fTextScaleX = state.fTextScaleX; in updateDrawingState()
424 if (state.fTextFill != currentEntry()->fTextFill) { in updateDrawingState()
430 currentEntry()->fTextFill = state.fTextFill; in updateDrawingState()