X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fplat%2FWin32.java;h=d30ea04d9fe53d781d897b67c22cad0de3bac374;hb=0db1ff365b2acfa1be6420aca33a27dd01eb78f2;hp=86f79a3940a08e40bd953a2befe65de37cd37ef5;hpb=297fdbde87e6db4732448a0950d1141c7265c169;p=org.ibex.core.git diff --git a/src/org/ibex/plat/Win32.java b/src/org/ibex/plat/Win32.java index 86f79a3..d30ea04 100644 --- a/src/org/ibex/plat/Win32.java +++ b/src/org/ibex/plat/Win32.java @@ -87,7 +87,7 @@ public class Win32 extends GCJ { if (container[2] != null) { // FIXME //ret.proxyAutoConfigFunction = HTTP.Proxy.getProxyAutoConfigFunction(container[2]); - if (ret.proxyAutoConfigFunction != null) return ret; + //if (ret.proxyAutoConfigFunction != null) return ret; } if (container[0] == null) return null; @@ -236,11 +236,15 @@ public class Win32 extends GCJ { // Win32PixelBuffer ////////////////////////////////////////////////////////////////////////// public static class Win32PixelBuffer 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 w = 0; int h = 0;