Java Code Examples for sun.java2d.loops.GraphicsPrimitive#tracePrimitive()

The following examples show how to use sun.java2d.loops.GraphicsPrimitive#tracePrimitive() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: X11Renderer.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
void XFillRoundRect(long pXSData, long xgc,
                    int x, int y, int w, int h,
                    int arcW, int arcH)
{
    GraphicsPrimitive.tracePrimitive("X11FillRoundRect");
    super.XFillRoundRect(pXSData, xgc, x, y, w, h, arcW, arcH);
}
 
Example 2
Source File: X11Renderer.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
void XFillRoundRect(long pXSData, long xgc,
                    int x, int y, int w, int h,
                    int arcW, int arcH)
{
    GraphicsPrimitive.tracePrimitive("X11FillRoundRect");
    super.XFillRoundRect(pXSData, xgc, x, y, w, h, arcW, arcH);
}
 
Example 3
Source File: OGLRenderer.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
protected void drawPoly(SunGraphics2D sg2d,
                        int[] xPoints, int[] yPoints,
                        int nPoints, boolean isClosed)
{
    GraphicsPrimitive.tracePrimitive("OGLDrawPoly");
    oglr.drawPoly(sg2d, xPoints, yPoints, nPoints, isClosed);
}
 
Example 4
Source File: X11Renderer.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
void XDoPath(SunGraphics2D sg2d, long pXSData, long xgc,
             int transX, int transY, Path2D.Float p2df,
             boolean isFill)
{
    GraphicsPrimitive.tracePrimitive(isFill ?
                                     "X11FillPath" :
                                     "X11DrawPath");
    super.XDoPath(sg2d, pXSData, xgc, transX, transY, p2df, isFill);
}
 
Example 5
Source File: GDIRenderer.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
void doDrawRect(GDIWindowSurfaceData sData,
                Region clip, Composite comp, int color,
                int x, int y, int w, int h)
{
    GraphicsPrimitive.tracePrimitive("GDIDrawRect");
    super.doDrawRect(sData, clip, comp, color, x, y, w, h);
}
 
Example 6
Source File: GDIRenderer.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
void doShape(GDIWindowSurfaceData sData,
             Region clip, Composite comp, int color,
             int transX, int transY,
             Path2D.Float p2df, boolean isfill)
{
    GraphicsPrimitive.tracePrimitive(isfill
                                     ? "GDIFillShape"
                                     : "GDIDrawShape");
    super.doShape(sData, clip, comp, color,
                  transX, transY, p2df, isfill);
}
 
Example 7
Source File: GDIRenderer.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
void doShape(GDIWindowSurfaceData sData,
             Region clip, Composite comp, int color,
             int transX, int transY,
             Path2D.Float p2df, boolean isfill)
{
    GraphicsPrimitive.tracePrimitive(isfill
                                     ? "GDIFillShape"
                                     : "GDIDrawShape");
    super.doShape(sData, clip, comp, color,
                  transX, transY, p2df, isfill);
}
 
Example 8
Source File: X11Renderer.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
void XFillSpans(long pXSData, long xgc,
                SpanIterator si, long iterator, int transx, int transy)
{
    GraphicsPrimitive.tracePrimitive("X11FillSpans");
    super.XFillSpans(pXSData, xgc,
                     si, iterator, transx, transy);
}
 
Example 9
Source File: X11Renderer.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
void XFillArc(long pXSData, long xgc,
              int x, int y, int w, int h,
              int angleStart, int angleExtent)
{
    GraphicsPrimitive.tracePrimitive("X11FillArc");
    super.XFillArc(pXSData, xgc,
                   x, y, w, h, angleStart, angleExtent);
}
 
Example 10
Source File: OGLRenderer.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
protected void fillPath(SunGraphics2D sg2d,
                        Path2D.Float p2df, int transx, int transy)
{
    GraphicsPrimitive.tracePrimitive("OGLFillPath");
    oglr.fillPath(sg2d, p2df, transx, transy);
}
 
Example 11
Source File: D3DRenderer.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
protected void fillPath(SunGraphics2D sg2d,
                        Path2D.Float p2df, int transx, int transy)
{
    GraphicsPrimitive.tracePrimitive("D3DFillPath");
    d3dr.fillPath(sg2d, p2df, transx, transy);
}
 
Example 12
Source File: OGLRenderer.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public void fillRect(SunGraphics2D sg2d, int x, int y, int w, int h) {
    GraphicsPrimitive.tracePrimitive("OGLFillRect");
    oglr.fillRect(sg2d, x, y, w, h);
}
 
Example 13
Source File: D3DTextRenderer.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) {
    GraphicsPrimitive.tracePrimitive("D3DDrawGlyphs");
    super.drawGlyphList(sg2d, gl);
}
 
Example 14
Source File: OGLRenderer.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public void drawLine(SunGraphics2D sg2d,
                     int x1, int y1, int x2, int y2)
{
    GraphicsPrimitive.tracePrimitive("OGLDrawLine");
    oglr.drawLine(sg2d, x1, y1, x2, y2);
}
 
Example 15
Source File: X11Renderer.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
void XDrawLine(long pXSData, long xgc,
               int x1, int y1, int x2, int y2)
{
    GraphicsPrimitive.tracePrimitive("X11DrawLine");
    super.XDrawLine(pXSData, xgc, x1, y1, x2, y2);
}
 
Example 16
Source File: OGLRenderer.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public void fillRect(SunGraphics2D sg2d, int x, int y, int w, int h) {
    GraphicsPrimitive.tracePrimitive("OGLFillRect");
    oglr.fillRect(sg2d, x, y, w, h);
}
 
Example 17
Source File: X11Renderer.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
void XFillOval(long pXSData, long xgc,
               int x, int y, int w, int h)
{
    GraphicsPrimitive.tracePrimitive("X11FillOval");
    super.XFillOval(pXSData, xgc, x, y, w, h);
}
 
Example 18
Source File: D3DTextRenderer.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) {
    GraphicsPrimitive.tracePrimitive("D3DDrawGlyphs");
    super.drawGlyphList(sg2d, gl);
}
 
Example 19
Source File: X11Renderer.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
void XDrawLine(long pXSData, long xgc,
               int x1, int y1, int x2, int y2)
{
    GraphicsPrimitive.tracePrimitive("X11DrawLine");
    super.XDrawLine(pXSData, xgc, x1, y1, x2, y2);
}
 
Example 20
Source File: X11Renderer.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
void XFillOval(long pXSData, long xgc,
               int x, int y, int w, int h)
{
    GraphicsPrimitive.tracePrimitive("X11FillOval");
    super.XFillOval(pXSData, xgc, x, y, w, h);
}