X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Fplat%2FDarwin.java;h=a4f533e409f92429439add71f01ff0e1b1e4bf28;hb=e1da86ef35e219b79c3de0c099cf82b2500dc448;hp=a3e4141e34b19c6e2942b4f1f063f8f524db15ac;hpb=745fb6aad79e10eb8c402b8fa6a591769c0fcdfb;p=org.ibex.core.git diff --git a/src/org/xwt/plat/Darwin.java b/src/org/xwt/plat/Darwin.java index a3e4141..a4f533e 100644 --- a/src/org/xwt/plat/Darwin.java +++ b/src/org/xwt/plat/Darwin.java @@ -77,41 +77,43 @@ public class Darwin extends POSIX { private static native final boolean isJaguar(); - // Called by main thread after initialization, this is the event handler - protected native void runApplicationEventLoop(); - - public void init() { - super.init(); + public void postInit() { jaguar = isJaguar(); try { openGL = new CarbonOpenGL(); openGL.init(); } catch(OpenGL.NotSupportedException e) { - Log.log(this,"WARNING: OpenGL support not available: " + e); + Log.info(this,"WARNING: OpenGL support not available: " + e); // FEATURE: fall back to quartz 2d throw new Error("No OpenGL support"); } natInit(); } - public void _running() { runApplicationEventLoop(); } + protected native void runApplicationEventLoop(); + private class DarwinScheduler extends org.xwt.Scheduler { + public void run() { + new Thread() { public void run() { defaultRun(); } }.start(); + runApplicationEventLoop(); + } + } private final class CarbonOpenGL extends OpenGL { public RawData rawPixelFormat; - public RawData rawSharedContext; + public RawData rawSharedInterpreter; public int maxAglSurfaceTexSize; public int maxSurfaceWidth; public int maxSurfaceHeight; private native boolean initPixelFormat(); - private native void initSharedContext(); + private native void initSharedInterpreter(); public CarbonOpenGL() throws NotSupportedException { if(!jaguar) throw new NotSupportedException("OpenGL requires Mac OS X 10.2 or greater"); if(!initPixelFormat()) throw new NotSupportedException("Couldn't get an acceptable pixel format"); - initSharedContext(); + initSharedInterpreter(); } public void init() throws NotSupportedException { @@ -119,11 +121,11 @@ public class Darwin extends POSIX { maxAglSurfaceTexSize = rectangularTextures ? maxRectTexSize : maxTexSize; if(renderer.startsWith("ATI Radeon 7500")) { maxAglSurfaceTexSize = Math.min(rectangularTextures ? 1600 : 1024,maxAglSurfaceTexSize); - Log.log(this,"Working around Radeon 7500 bug: maxAglSurfaceTexSize: " + maxAglSurfaceTexSize); + Log.info(this,"Working around Radeon 7500 bug: maxAglSurfaceTexSize: " + maxAglSurfaceTexSize); } maxSurfaceWidth = maxSurfaceHeight = maxAglSurfaceTexSize; } - protected native void activateSharedContext(); + protected native void activateSharedInterpreter(); } static abstract class CarbonSurface extends Surface.DoubleBufferedSurface { @@ -145,7 +147,7 @@ public class Darwin extends POSIX { private native void natSetTitleBarText(String s); public void setTitleBarText(final String s) { CarbonMessage.add(new CarbonMessage() { public void perform() { natSetTitleBarText(s); } }); } private native void natSetSize(int w, int h); - public void setSize(final int w, final int h) { CarbonMessage.add(new CarbonMessage() { public void perform() { natSetSize(w,h); } }); } + public void _setSize(final int w, final int h) { CarbonMessage.add(new CarbonMessage() { public void perform() { natSetSize(w,h); } }); } private native void natSetLocation(); public void setLocation() { CarbonMessage.add(new CarbonMessage() { public void perform() { natSetLocation(); } }); } private native void natToFront(); @@ -216,7 +218,7 @@ public class Darwin extends POSIX { CarbonMessage.add(new CarbonMessage() { public void perform() { GLCarbonPixelBuffer.this.natInit(); sem.release(); } }); sem.block(); } - public native void activateContext(); + public native void activateInterpreter(); protected void finalize() { CarbonMessage.add(new CarbonMessage() { public void perform() { natCleanup(rawWindowRef,rawCTX); } }); gl.deleteTexture(textureName); @@ -244,10 +246,10 @@ public class Darwin extends POSIX { super.setLimits(mnw,mnh,mxw,mxh); } - public void setSize(int w, int h) { + public void _setSize(int w, int h) { w = Math.min(w,gl.maxSurfaceWidth); h = Math.min(h,gl.maxSurfaceWidth); - super.setSize(w,h); + super._setSize(w,h); } private native void natBlit(GLCarbonPixelBuffer db, int sx, int sy, int dx, int dy, int dx2, int dy2); @@ -257,7 +259,7 @@ public class Darwin extends POSIX { // The blit_lock ensures the window size does not change through the entire blit operation. - public void render_() { + public void render() { blitLock(); while(pendingResize) blitWait(); if(needsReshape) { @@ -265,9 +267,10 @@ public class Darwin extends POSIX { reshape(winWidth,winHeight); clear(); - Dirty(0,0,getWidth(),getHeight()); + Dirty(0,0,winWidth,winHeight); + //Dirty(0,0,getWidth(),getHeight()); } - super.render_(); + super.render(); flush(); blitUnlock(); } @@ -316,17 +319,17 @@ public class Darwin extends POSIX { else return /*new QZCarbonSufrace(b,framed)*/ null; } - protected Picture _createPicture(int[] data, int w, int h) { + protected Picture _createPicture() { if(openGL != null) - return openGL.createPicture(data,w,h); + return openGL._createPicture(true); else return /*new QZCarbonPicture(data,w,h);*/ null; } - protected Picture _createAlphaOnlyPicture(byte[] data, int w, int h) { + protected org.xwt.Font.Glyph _createGlyph(org.xwt.Font f, char c) { if(openGL != null) - return openGL.createAlphaOnlyPicture(data,w,h); + return openGL._createGlyph(f, c); else - return super.createAlphaOnlyPicture(data,w,h); + return super.createGlyph(f, c); } /* A message that is sent through the carbon event queue */