Lines Matching refs:fGraphicsStatesInt

74         this.fGraphicsStatesInt = this.fGraphicsStates.asIntBuffer();
369 IntBuffer fGraphicsStatesInt = null;
387 this.fGraphicsStatesInt.put(kBoundsXIndex, x);
388 this.fGraphicsStatesInt.put(kBoundsYIndex, y);
389 this.fGraphicsStatesInt.put(kBoundsWidthIndex, width);
390 this.fGraphicsStatesInt.put(kBoundsHeightIndex, height);
423 if ((this.fGraphicsStatesInt.get(kClipStateIndex) != kClipRect) ||
442 this.fGraphicsStatesInt.put(kClipStateIndex, kClipRect);
470 this.fGraphicsStatesInt.put(kClipNumTypesIndex, clipTypesArray.position());
471 this.fGraphicsStatesInt.put(kClipNumCoordsIndex, clipCoordinatesArray.position());
472 this.fGraphicsStatesInt.put(kClipWindingRuleIndex, windingRule);
477 this.fGraphicsStatesInt.put(kClipStateIndex, kClipShape);
535 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorTexture) || (lastPaint != sg2d.paint) || ((this.fChangeFlag & kBoundsChangedBit) != 0)) {
541 this.fGraphicsStatesInt.put(kColorStateIndex, kColorTexture);
542 this.fGraphicsStatesInt.put(kColorWidthIndex, texturePaintImage.getWidth());
543 this.fGraphicsStatesInt.put(kColorHeightIndex, texturePaintImage.getHeight());
560 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorSystem) || (index != this.lastPaintIndex)) {
563 this.fGraphicsStatesInt.put(kColorStateIndex, kColorSystem);
564 this.fGraphicsStatesInt.put(kColorIndexValueIndex, index);
573 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorSimple) || (rgb != this.lastPaintRGB)) {
576 this.fGraphicsStatesInt.put(kColorStateIndex, kColorSimple);
577 this.fGraphicsStatesInt.put(kColorRGBValueIndex, rgb);
584 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorGradient) || (lastPaint != sg2d.paint)) {
586 this.fGraphicsStatesInt.put(kColorStateIndex, kColorGradient);
587 this.fGraphicsStatesInt.put(kColorRGBValue1Index, color.getColor1().getRGB());
588 this.fGraphicsStatesInt.put(kColorRGBValue2Index, color.getColor2().getRGB());
589 this.fGraphicsStatesInt.put(kColorIsCyclicIndex, (color.isCyclic()) ? kColorCyclic : kColorNonCyclic);
604 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorLinearGradient) || (lastPaint != sg2d.paint)) {
606 this.fGraphicsStatesInt.put(kColorStateIndex, kColorLinearGradient);
638 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorRadialGradient) || (lastPaint != sg2d.paint)) {
640 this.fGraphicsStatesInt.put(kColorStateIndex, kColorRadialGradient);
671 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorTexture) || (lastPaint != sg2d.paint)) {
673 this.fGraphicsStatesInt.put(kColorStateIndex, kColorTexture);
676 this.fGraphicsStatesInt.put(kColorWidthIndex, texturePaintImage.getWidth());
677 this.fGraphicsStatesInt.put(kColorHeightIndex, texturePaintImage.getHeight());
722 this.fGraphicsStatesInt.put(kCompositeRuleIndex, alphaRule);
750 this.fGraphicsStatesInt.put(kStrokeCapIndex, stroke.getEndCap());
751 this.fGraphicsStatesInt.put(kStrokeJoinIndex, stroke.getLineJoin());
788 if (this.fGraphicsStatesInt.get(kHintsAntialiasIndex) != antialiasHint) {
789 this.fGraphicsStatesInt.put(kHintsAntialiasIndex, antialiasHint);
795 if (this.fGraphicsStatesInt.get(kHintsTextAntialiasIndex) != textAntialiasHint) {
796 this.fGraphicsStatesInt.put(kHintsTextAntialiasIndex, textAntialiasHint);
802 if (this.fGraphicsStatesInt.get(kHintsFractionalMetricsIndex) != fractionalMetricsHint) {
803 this.fGraphicsStatesInt.put(kHintsFractionalMetricsIndex, fractionalMetricsHint);
809 if (this.fGraphicsStatesInt.get(kHintsRenderingIndex) != renderHint) {
810 this.fGraphicsStatesInt.put(kHintsRenderingIndex, renderHint);
817 if (this.fGraphicsStatesInt.get(kHintsInterpolationIndex) != interpolationHint) {
818 this.fGraphicsStatesInt.put(kHintsInterpolationIndex, interpolationHint);
882 this.fGraphicsStatesInt.put(kChangeFlagIndex, this.fChangeFlag);