X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fplat%2FX11.java;h=72120f7f275fc52a36892136f7489ec15bf9c0e8;hp=cc1bea642b6d67f54fdf8e4aa29208fd2ce6daaf;hb=531e31402f74fa636b2d9a2a367305bfd0777cdc;hpb=297fdbde87e6db4732448a0950d1141c7265c169 diff --git a/src/org/ibex/plat/X11.java b/src/org/ibex/plat/X11.java index cc1bea6..72120f7 100644 --- a/src/org/ibex/plat/X11.java +++ b/src/org/ibex/plat/X11.java @@ -142,11 +142,15 @@ public class X11 extends POSIX { * (since they are only written to once. */ public static class X11PixelBuffer implements PixelBuffer { + public void fillTriangle(int x1, int y1, int x2, int y2, int x3, int y3, int argb) { throw new Error("not implemented"); } + + public void drawPicture(Picture p, Affine a, Mesh h) { throw new Error("drawPicture() not implemented"); } + public void drawGlyph(Font.Glyph source,Affine a,Mesh h,int rgb,int bg) { throw new Error("drawGlyph() not implemented"); } public void drawLine(int x1, int y1, int x2, int y2, int color) { } public void drawGlyph(Font.Glyph source, int dx1, int dy1, int cx1, int cy1, int cx2, int cy2, int rgb, int pc){} - public void stroke(Polygon p, int color){} - public void fill(Polygon p, Paint paint){} + public void stroke(Mesh p, int color){} + public void fill(Mesh p, Paint paint){} int clipx, clipy, clipw, cliph; int width;