X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fplat%2FOpenGL.java;fp=src%2Forg%2Fibex%2Fplat%2FOpenGL.java;h=a7aa726a420899a5f5e18780a4bb825db10db997;hp=b8524375a770dc661536616143f2d5e171c34594;hb=098f2fd17df6500e8dad466c162c2e0589cc7df5;hpb=53b81e839d264d8cecdaf11bf9fae5579cc50e2c diff --git a/src/org/ibex/plat/OpenGL.java b/src/org/ibex/plat/OpenGL.java index b852437..a7aa726 100644 --- a/src/org/ibex/plat/OpenGL.java +++ b/src/org/ibex/plat/OpenGL.java @@ -58,6 +58,9 @@ abstract class OpenGL { public static abstract class GLPixelBuffer implements PixelBuffer { protected int width; protected int height; + 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 int getWidth() { return width; } public int getHeight() { return height; }