Lines Matching refs:setupGraphicsState

750     void setupGraphicsState(SunGraphics2D sg2d, int primitiveType) {
751 setupGraphicsState(sg2d, primitiveType, sg2d.font, 0, 0, fBounds.width, fBounds.height); // deviceBounds into userBounds
754 void setupGraphicsState(SunGraphics2D sg2d, int primitiveType, int x, int y, int w, int h) {
755 setupGraphicsState(sg2d, primitiveType, sg2d.font, x, y, w, h);
760 void setupGraphicsState(SunGraphics2D sg2d, int primitiveType, Font font, int x, int y, int w, int h) {
907 setupGraphicsState(sg2d, kLine, sg2d.font, 0, 0, fBounds.width, fBounds.height);
914 setupGraphicsState(sg2d, kRect, (int) x, (int) y, (int) width, (int) height);
916 setupGraphicsState(sg2d, kRect, sg2d.font, 0, 0, fBounds.width, fBounds.height);
924 setupGraphicsState(sg2d, kRoundRect, (int) x, (int) y, (int) width, (int) height);
926 setupGraphicsState(sg2d, kRoundRect, sg2d.font, 0, 0, fBounds.width, fBounds.height);
934 setupGraphicsState(sg2d, kOval, (int) x, (int) y, (int) width, (int) height);
936 setupGraphicsState(sg2d, kOval, sg2d.font, 0, 0, fBounds.width, fBounds.height);
944 setupGraphicsState(sg2d, kArc, (int) x, (int) y, (int) width, (int) height);
946 setupGraphicsState(sg2d, kArc, sg2d.font, 0, 0, fBounds.width, fBounds.height);
975 setupGraphicsState(sg2d, kPolygon, minx, miny, maxx - minx, maxy - miny);
977 setupGraphicsState(sg2d, kPolygon, sg2d.font, 0, 0, fBounds.width, fBounds.height);
990 setupGraphicsState(sg2d, kShape, bounds.x, bounds.y, bounds.width, bounds.height);
992 setupGraphicsState(sg2d, kShape, sg2d.font, 0, 0, fBounds.width, fBounds.height);
1018 setupGraphicsState(sg2d, kImage, sg2d.font, 0, 0, fBounds.width, fBounds.height);
1038 setupGraphicsState(sg2d, kString, sg2d.font, 0, 0, fBounds.width, fBounds.height);
1044 setupGraphicsState(sg2d, kGlyphs, gv.getFont(), 0, 0, fBounds.width, fBounds.height);
1050 setupGraphicsState(sg2d, kUnicodes, sg2d.font, 0, 0, fBounds.width, fBounds.height);