Searched defs:sg2d (Results 1 - 25 of 73) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAATextRenderer.java40 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
41 sg2d.loops.drawGlyphListAALoop.DrawGlyphListAA(sg2d, sg2d.surfaceData,
H A DLCDTextRenderer.java40 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
41 sg2d.loops.drawGlyphListLCDLoop.
42 DrawGlyphListLCD(sg2d, sg2d.surfaceData, gl);
H A DSolidTextRenderer.java41 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
42 sg2d.loops.drawGlyphListLoop.DrawGlyphList(sg2d, sg2d.surfaceData, gl);
H A DGlyphListLoopPipe.java42 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl, argument
46 sg2d.loops.drawGlyphListLoop.
47 DrawGlyphList(sg2d, sg2d.surfaceData, gl);
50 sg2d.loops.drawGlyphListAALoop.
51 DrawGlyphListAA(sg2d, sg2d.surfaceData, gl);
55 sg2d.loops.drawGlyphListLCDLoop.
56 DrawGlyphListLCD(sg2d,sg2d
[all...]
H A DTextRenderer.java48 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
50 Region clipRegion = sg2d.getCompClip();
61 Shape s = sg2d.untransformShape(r);
62 ctx = outpipe.startSequence(sg2d, s, r, bounds);
H A DGlyphListPipe.java47 public void drawString(SunGraphics2D sg2d, String s, argument
50 FontInfo info = sg2d.getFontInfo();
52 SurfaceData.outlineTextRenderer.drawString(sg2d, s, x, y);
57 if (sg2d.transformState >= sg2d.TRANSFORM_TRANSLATESCALE) {
59 sg2d.transform.transform(origin, 0, origin, 0, 1);
63 devx = (float)(x + info.originX + sg2d.transX);
64 devy = (float)(y + info.originY + sg2d.transY);
72 drawGlyphList(sg2d, gl);
76 TextLayout tl = new TextLayout(s, sg2d
82 drawChars(SunGraphics2D sg2d, char data[], int offset, int length, int ix, int iy) argument
116 drawGlyphVector(SunGraphics2D sg2d, GlyphVector gv, float x, float y) argument
141 drawGlyphList(SunGraphics2D sg2d, GlyphList gl) argument
143 drawGlyphList(SunGraphics2D sg2d, GlyphList gl, int aaHint) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DPaints.java64 static boolean isValid(SunGraphics2D sg2d) { argument
65 D3DPaints impl = impls.get(sg2d.paintState);
66 return (impl != null && impl.isPaintValid(sg2d));
74 abstract boolean isPaintValid(SunGraphics2D sg2d); argument
88 boolean isPaintValid(SunGraphics2D sg2d) { argument
89 D3DSurfaceData dstData = (D3DSurfaceData)sg2d.surfaceData;
112 public boolean isPaintValid(SunGraphics2D sg2d) { argument
113 TexturePaint paint = (TexturePaint)sg2d.paint;
114 D3DSurfaceData dstData = (D3DSurfaceData)sg2d.surfaceData;
134 dstData.getSourceSurfaceData(bi, sg2d
183 isPaintValid(SunGraphics2D sg2d) argument
207 isPaintValid(SunGraphics2D sg2d) argument
[all...]
H A DD3DMaskFill.java67 protected void validateContext(SunGraphics2D sg2d, argument
70 D3DSurfaceData dstData = (D3DSurfaceData)sg2d.surfaceData;
72 sg2d.getCompClip(), comp,
73 null, sg2d.paint, sg2d, ctxflags);
H A DD3DTextRenderer.java49 protected void validateContext(SunGraphics2D sg2d, Composite comp) { argument
51 D3DSurfaceData d3dDst = (D3DSurfaceData)sg2d.surfaceData;
53 sg2d.getCompClip(), comp,
54 null, sg2d.paint, sg2d,
66 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
68 super.drawGlyphList(sg2d, gl);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DFillRect.c38 jobject sg2d, jobject sData,
45 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d);
56 GrPrim_Sg2dGetCompInfo(env, sg2d, pPrim, &compInfo);
64 GrPrim_Sg2dGetClip(env, sg2d, &rasInfo.bounds);
36 Java_sun_java2d_loops_FillRect_FillRect(JNIEnv *env, jobject self, jobject sg2d, jobject sData, jint x, jint y, jint w, jint h) argument
H A DFillSpans.c41 jobject sg2d, jobject sData, jint pixel, jlong pIterator, jobject si)
62 GrPrim_Sg2dGetCompInfo(env, sg2d, pPrim, &compInfo);
39 Java_sun_java2d_loops_FillSpans_FillSpans(JNIEnv *env, jobject self, jobject sg2d, jobject sData, jint pixel, jlong pIterator, jobject si) argument
H A DDrawRect.c39 jobject sg2d, jobject sData,
47 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d);
58 GrPrim_Sg2dGetCompInfo(env, sg2d, pPrim, &compInfo);
77 GrPrim_Sg2dGetClip(env, sg2d, &rasInfo.bounds);
37 Java_sun_java2d_loops_DrawRect_DrawRect(JNIEnv *env, jobject self, jobject sg2d, jobject sData, jint x, jint y, jint w, jint h) argument
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLPaints.java67 static boolean isValid(SunGraphics2D sg2d) { argument
68 OGLPaints impl = impls.get(sg2d.paintState);
69 return (impl != null && impl.isPaintValid(sg2d));
77 abstract boolean isPaintValid(SunGraphics2D sg2d); argument
89 boolean isPaintValid(SunGraphics2D sg2d) { argument
109 boolean isPaintValid(SunGraphics2D sg2d) { argument
110 TexturePaint paint = (TexturePaint)sg2d.paint;
111 OGLSurfaceData dstData = (OGLSurfaceData)sg2d.surfaceData;
126 dstData.getSourceSurfaceData(bi, sg2d.TRANSFORM_ISIDENT,
133 dstData.getSourceSurfaceData(bi, sg2d
164 isPaintValid(SunGraphics2D sg2d) argument
188 isPaintValid(SunGraphics2D sg2d) argument
[all...]
H A DOGLMaskFill.java67 protected void validateContext(SunGraphics2D sg2d, argument
70 OGLSurfaceData dstData = (OGLSurfaceData)sg2d.surfaceData;
72 sg2d.getCompClip(), comp,
73 null, sg2d.paint, sg2d, ctxflags);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DX11TextRenderer.java50 public void drawGlyphVector(SunGraphics2D sg2d, GlyphVector g, argument
54 FontInfo info = sg2d.getGVFontInfo(g.getFont(), frc);
57 super.drawGlyphVector(sg2d, g, x, y);
60 sg2d.surfaceData.aaTextRenderer.drawGlyphVector(sg2d, g, x, y);
64 sg2d.surfaceData.lcdTextRenderer.drawGlyphVector(sg2d, g, x, y);
73 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
76 X11SurfaceData x11sd = (X11SurfaceData)sg2d.surfaceData;
77 Region clip = sg2d
[all...]
H A DXRTextRenderer.java53 protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) { argument
61 XRSurfaceData x11sd = (XRSurfaceData) sg2d.surfaceData;
62 x11sd.validateAsDestination(null, sg2d.getCompClip());
63 x11sd.maskBuffer.validateCompositeState(sg2d.composite, sg2d.transform, sg2d.paint, sg2d);
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesShapePipe.java47 private final void validateSurface(SunGraphics2D sg2d) { argument
48 XRSurfaceData xrsd = (XRSurfaceData) sg2d.surfaceData;
49 xrsd.validateAsDestination(sg2d, sg2d.getCompClip());
50 xrsd.maskBuffer.validateCompositeState(sg2d.composite, sg2d.transform,
51 sg2d.paint, sg2d);
54 public void draw(SunGraphics2D sg2d, Shape s) { argument
57 validateSurface(sg2d);
86 fill(SunGraphics2D sg2d, Shape s) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawGlyphListLCD.java72 public native void DrawGlyphListLCD(SunGraphics2D sg2d, SurfaceData dest, argument
110 public void DrawGlyphListLCD(SunGraphics2D sg2d, SurfaceData dest, argument
114 target.DrawGlyphListLCD(sg2d, dest, glyphs);
H A DDrawPath.java76 public native void DrawPath(SunGraphics2D sg2d, SurfaceData sData, argument
106 public void DrawPath(SunGraphics2D sg2d, SurfaceData sData, argument
111 target.DrawPath(sg2d, sData, transX, transY, p2df);
H A DFillPath.java76 public native void FillPath(SunGraphics2D sg2d, SurfaceData sData, argument
106 public void FillPath(SunGraphics2D sg2d, SurfaceData sData, argument
111 target.FillPath(sg2d, sData, transX, transY, p2df);
H A DFillSpans.java76 private native void FillSpans(SunGraphics2D sg2d, SurfaceData dest, argument
82 public void FillSpans(SunGraphics2D sg2d, SurfaceData dest, argument
85 FillSpans(sg2d, dest, sg2d.pixel, si.getNativeIterator(), si);
115 public void FillSpans(SunGraphics2D sg2d, SurfaceData dest, argument
119 target.FillSpans(sg2d, dest, si);
H A DDrawGlyphList.java71 public native void DrawGlyphList(SunGraphics2D sg2d, SurfaceData dest, argument
97 public void DrawGlyphList(SunGraphics2D sg2d, SurfaceData dest, argument
102 Region clip = sg2d.getCompClip();
128 maskop.MaskFill(sg2d, dest, sg2d.composite,
154 public void DrawGlyphList(SunGraphics2D sg2d, SurfaceData dest, argument
158 target.DrawGlyphList(sg2d, dest, glyphs);
H A DDrawGlyphListAA.java70 public native void DrawGlyphListAA(SunGraphics2D sg2d, SurfaceData dest, argument
95 public void DrawGlyphListAA(SunGraphics2D sg2d, SurfaceData dest, argument
100 Region clip = sg2d.getCompClip();
126 maskop.MaskFill(sg2d, dest, sg2d.composite,
152 public void DrawGlyphListAA(SunGraphics2D sg2d, SurfaceData dest, argument
156 target.DrawGlyphListAA(sg2d, dest, glyphs);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFocus.java44 public void draw(final Graphics2D sg2d); argument
51 final SunGraphics2D sg2d = (SunGraphics2D)g;
53 final SurfaceData surfaceData = sg2d.getSurfaceData();
57 ((OSXSurfaceData)surfaceData).performCocoaDrawing(sg2d, new OSXSurfaceData.CGContextDrawable() {
62 drawable.draw(sg2d);
67 sg2d.dispose();
101 public void draw(SunGraphics2D sg2d) {
102 icon.paintIcon(c, sg2d, x + slack, y + slack);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DNullSurfaceData.java68 public void validatePipe(SunGraphics2D sg2d) { argument
69 sg2d.drawpipe = nullpipe;
70 sg2d.fillpipe = nullpipe;
71 sg2d.shapepipe = nullpipe;
72 sg2d.textpipe = nullpipe;
73 sg2d.imagepipe = nullpipe;
147 public boolean copyArea(SunGraphics2D sg2d, argument

Completed in 77 milliseconds

123