Lines Matching refs:state

385 int PDFOutDev::parseFont( long long nNewId, GfxFont* gfxFont, GfxState* state ) const  in parseFont()
406 aNewFont.size = state->getTransformedFontSize(); in parseFont()
469 void PDFOutDev::startPage(int /*pageNum*/, GfxState* state) in startPage() argument
471 assert(state); in startPage()
473 normalize(state->getPageWidth()), in startPage()
474 normalize(state->getPageHeight())); in startPage()
530 void PDFOutDev::updateCTM(GfxState* state, in updateCTM() argument
535 assert(state); in updateCTM()
537 const double* const pMat = state->getCTM(); in updateCTM()
549 void PDFOutDev::updateLineDash(GfxState *state) in updateLineDash() argument
551 assert(state); in updateLineDash()
554 state->getLineDash(&dashArray, &arrayLen, &startOffset); in updateLineDash()
566 void PDFOutDev::updateFlatness(GfxState *state) in updateFlatness() argument
568 assert(state); in updateFlatness()
569 printf( "updateFlatness %d\n", state->getFlatness() ); in updateFlatness()
572 void PDFOutDev::updateLineJoin(GfxState *state) in updateLineJoin() argument
574 assert(state); in updateLineJoin()
575 printf( "updateLineJoin %d\n", state->getLineJoin() ); in updateLineJoin()
578 void PDFOutDev::updateLineCap(GfxState *state) in updateLineCap() argument
580 assert(state); in updateLineCap()
581 printf( "updateLineCap %d\n", state->getLineCap() ); in updateLineCap()
584 void PDFOutDev::updateMiterLimit(GfxState *state) in updateMiterLimit() argument
586 assert(state); in updateMiterLimit()
587 printf( "updateMiterLimit %f\n", normalize(state->getMiterLimit()) ); in updateMiterLimit()
590 void PDFOutDev::updateLineWidth(GfxState *state) in updateLineWidth() argument
592 assert(state); in updateLineWidth()
593 printf( "updateLineWidth %f\n", normalize(state->getLineWidth()) ); in updateLineWidth()
596 void PDFOutDev::updateFillColor(GfxState *state) in updateFillColor() argument
598 assert(state); in updateFillColor()
601 state->getFillRGB( &aRGB ); in updateFillColor()
607 normalize(state->getFillOpacity()) ); in updateFillColor()
610 void PDFOutDev::updateStrokeColor(GfxState *state) in updateStrokeColor() argument
612 assert(state); in updateStrokeColor()
615 state->getStrokeRGB( &aRGB ); in updateStrokeColor()
621 normalize(state->getFillOpacity()) ); in updateStrokeColor()
624 void PDFOutDev::updateFillOpacity(GfxState *state) in updateFillOpacity() argument
626 updateFillColor(state); in updateFillOpacity()
629 void PDFOutDev::updateStrokeOpacity(GfxState *state) in updateStrokeOpacity() argument
631 updateStrokeColor(state); in updateStrokeOpacity()
638 void PDFOutDev::updateFont(GfxState *state) in updateFont() argument
640 assert(state); in updateFont()
642 GfxFont *gfxFont = state->getFont(); in updateFont()
655 nEmbedSize = parseFont( fontID, gfxFont, state ); in updateFont()
673 normalize(state->getTransformedFontSize()), in updateFont()
684 void PDFOutDev::updateRender(GfxState *state) in updateRender() argument
686 assert(state); in updateRender()
688 printf( "setTextRenderMode %d\n", state->getRender() ); in updateRender()
691 void PDFOutDev::stroke(GfxState *state) in stroke() argument
693 assert(state); in stroke()
696 printPath( state->getPath() ); in stroke()
700 void PDFOutDev::fill(GfxState *state) in fill() argument
702 assert(state); in fill()
705 printPath( state->getPath() ); in fill()
709 void PDFOutDev::eoFill(GfxState *state) in eoFill() argument
711 assert(state); in eoFill()
714 printPath( state->getPath() ); in eoFill()
718 void PDFOutDev::clip(GfxState *state) in clip() argument
720 assert(state); in clip()
723 printPath( state->getPath() ); in clip()
727 void PDFOutDev::eoClip(GfxState *state) in eoClip() argument
729 assert(state); in eoClip()
732 printPath( state->getPath() ); in eoClip()
755 void PDFOutDev::drawChar(GfxState *state, double x, double y, in drawChar() argument
760 assert(state); in drawChar()
768 state->textTransformDelta( 0.0, in drawChar()
769 state->getFont()->getAscent(), in drawChar()
771 const double fFontSize(state->getFontSize()); in drawChar()
781 const double* pTextMat=state->getTextMat(); in drawChar()