2003/09/19 08:33:47
[org.ibex.core.git] / src / org / xwt / plat / Darwin.java
index 34030ca..17877c1 100644 (file)
@@ -32,7 +32,7 @@ public class Darwin extends POSIX {
     private native static int cgScreenWidth();
     private native static int cgScreenHeight();
     protected native void   _newBrowserWindow(String url);
-    protected native Proxy   natDetectProxy();
+    protected native HTTP.Proxy   natDetectProxy();
     private   native void    natInit();
     protected native void   _exit();
 
@@ -81,7 +81,7 @@ public class Darwin extends POSIX {
         }
     }
     
-    protected synchronized Proxy _detectProxy() {
+    protected synchronized HTTP.Proxy _detectProxy() {
         return natDetectProxy();
     }
     
@@ -196,7 +196,7 @@ public class Darwin extends POSIX {
         public void reshape(int w, int h) { }
     }
     
-    static class GLCarbonPixelBuffer extends OpenGL.GLDoubleBuffer {
+    static class GLCarbonPixelBuffer extends OpenGL.GLPixelBuffer {
         RawData rawCTX;
         RawData rawWindowRef;
         int textureName;
@@ -267,7 +267,7 @@ public class Darwin extends POSIX {
         public native void natDispose();
     }
 
-    /*private class QZCarbonPixelBuffer extends DoubleBuffer {
+    /*private class QZCarbonPixelBuffer extends PixelBuffer {
         
         public QZCarbonPixelBuffer(int width, int height) {
         }
@@ -292,7 +292,7 @@ public class Darwin extends POSIX {
         }
     }*/
     
-    protected PixelBuffer _createDoubleBuffer(int w, int h, Surface owner) {
+    protected PixelBuffer _createPixelBuffer(int w, int h, Surface owner) {
         if(openGL != null)
             return new GLCarbonPixelBuffer(w,h,openGL);
         else