Lines Matching refs:fGraphicsStatesInt

72         this.fGraphicsStatesInt = this.fGraphicsStates.asIntBuffer();
358 IntBuffer fGraphicsStatesInt = null;
376 this.fGraphicsStatesInt.put(kBoundsXIndex, x);
377 this.fGraphicsStatesInt.put(kBoundsYIndex, y);
378 this.fGraphicsStatesInt.put(kBoundsWidthIndex, width);
379 this.fGraphicsStatesInt.put(kBoundsHeightIndex, height);
412 if ((this.fGraphicsStatesInt.get(kClipStateIndex) != kClipRect) ||
431 this.fGraphicsStatesInt.put(kClipStateIndex, kClipRect);
459 this.fGraphicsStatesInt.put(kClipNumTypesIndex, clipTypesArray.position());
460 this.fGraphicsStatesInt.put(kClipNumCoordsIndex, clipCoordinatesArray.position());
461 this.fGraphicsStatesInt.put(kClipWindingRuleIndex, windingRule);
466 this.fGraphicsStatesInt.put(kClipStateIndex, kClipShape);
527 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorSystem) || (index != this.lastPaintIndex)) {
530 this.fGraphicsStatesInt.put(kColorStateIndex, kColorSystem);
531 this.fGraphicsStatesInt.put(kColorIndexValueIndex, index);
540 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorSimple) || (rgb != this.lastPaintRGB)) {
543 this.fGraphicsStatesInt.put(kColorStateIndex, kColorSimple);
544 this.fGraphicsStatesInt.put(kColorRGBValueIndex, rgb);
551 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorGradient) || (lastPaint != sg2d.paint)) {
553 this.fGraphicsStatesInt.put(kColorStateIndex, kColorGradient);
554 this.fGraphicsStatesInt.put(kColorRGBValue1Index, color.getColor1().getRGB());
555 this.fGraphicsStatesInt.put(kColorRGBValue2Index, color.getColor2().getRGB());
556 this.fGraphicsStatesInt.put(kColorIsCyclicIndex, (color.isCyclic()) ? kColorCyclic : kColorNonCyclic);
569 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorTexture) || (lastPaint != sg2d.paint)) {
571 this.fGraphicsStatesInt.put(kColorStateIndex, kColorTexture);
574 this.fGraphicsStatesInt.put(kColorWidthIndex, texturePaintImage.getWidth());
575 this.fGraphicsStatesInt.put(kColorHeightIndex, texturePaintImage.getHeight());
588 if ((this.fGraphicsStatesInt.get(kColorStateIndex) != kColorTexture) || (lastPaint != sg2d.paint) || ((this.fChangeFlag & kBoundsChangedBit) != 0)) {
594 this.fGraphicsStatesInt.put(kColorStateIndex, kColorTexture);
595 this.fGraphicsStatesInt.put(kColorWidthIndex, texturePaintImage.getWidth());
596 this.fGraphicsStatesInt.put(kColorHeightIndex, texturePaintImage.getHeight());
640 this.fGraphicsStatesInt.put(kCompositeRuleIndex, alphaRule);
668 this.fGraphicsStatesInt.put(kStrokeCapIndex, stroke.getEndCap());
669 this.fGraphicsStatesInt.put(kStrokeJoinIndex, stroke.getLineJoin());
706 if (this.fGraphicsStatesInt.get(kHintsAntialiasIndex) != antialiasHint) {
707 this.fGraphicsStatesInt.put(kHintsAntialiasIndex, antialiasHint);
713 if (this.fGraphicsStatesInt.get(kHintsTextAntialiasIndex) != textAntialiasHint) {
714 this.fGraphicsStatesInt.put(kHintsTextAntialiasIndex, textAntialiasHint);
720 if (this.fGraphicsStatesInt.get(kHintsFractionalMetricsIndex) != fractionalMetricsHint) {
721 this.fGraphicsStatesInt.put(kHintsFractionalMetricsIndex, fractionalMetricsHint);
727 if (this.fGraphicsStatesInt.get(kHintsRenderingIndex) != renderHint) {
728 this.fGraphicsStatesInt.put(kHintsRenderingIndex, renderHint);
735 if (this.fGraphicsStatesInt.get(kHintsInterpolationIndex) != interpolationHint) {
736 this.fGraphicsStatesInt.put(kHintsInterpolationIndex, interpolationHint);
800 this.fGraphicsStatesInt.put(kChangeFlagIndex, this.fChangeFlag);