Lines Matching refs:renderer

905     public void doLine(CRenderer renderer, SunGraphics2D sg2d, float x1, float y1, float x2, float y2) {
908 renderer.doLine(this, x1, y1, x2, y2);
911 public void doRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) {
918 renderer.doRect(this, x, y, width, height, isfill);
921 public void doRoundRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) {
928 renderer.doRoundRect(this, x, y, width, height, arcW, arcH, isfill);
931 public void doOval(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) {
938 renderer.doOval(this, x, y, width, height, isfill);
941 public void doArc(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float startAngle, float arcAngle, int type, boolean isfill) {
949 renderer.doArc(this, x, y, width, height, startAngle, arcAngle, type, isfill);
952 public void doPolygon(CRenderer renderer, SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints, boolean ispolygon, boolean isfill) {
979 renderer.doPoly(this, xpoints, ypoints, npoints, ispolygon, isfill);
985 public void drawfillShape(CRenderer renderer, SunGraphics2D sg2d, GeneralPath gp, boolean isfill, boolean shouldApplyOffset) {
1007 renderer.doShape(this, shapeLength, shapeCoordinatesArray, shapeTypesArray, windingRule, isfill, shouldApplyOffset);
1010 public void blitImage(CRenderer renderer, SunGraphics2D sg2d, SurfaceData img, boolean fliph, boolean flipv, int sx, int sy, int sw, int sh, int dx, int dy, int dw, int dh, Color bgColor) {
1025 renderer.doImage(this, img, fliph, flipv, w, h, sx, sy, sw, sh, dx, dy, dw, dh);
1033 public void drawString(CTextPipe renderer, SunGraphics2D sg2d, long nativeStrikePtr, String str, double x, double y) {
1039 renderer.doDrawString(this, nativeStrikePtr, str, x, y);
1042 public void drawGlyphs(CTextPipe renderer, SunGraphics2D sg2d, long nativeStrikePtr, GlyphVector gv, float x, float y) {
1045 renderer.doDrawGlyphs(this, nativeStrikePtr, gv, x, y);
1048 public void drawUnicodes(CTextPipe renderer, SunGraphics2D sg2d, long nativeStrikePtr, char unicodes[], int offset, int length, float x, float y) {
1052 renderer.doOneUnicode(this, nativeStrikePtr, unicodes[offset], x, y);
1054 renderer.doUnicodes(this, nativeStrikePtr, unicodes, offset, length, x, y);