aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/drawable/MacSunJDK13GLDrawableFactory.java
blob: 7cf368dac50111237cb10d6aeb9ecd2814617c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package gl4java.drawable;

import sun.awt.*;
import gl4java.*;

public class MacSunJDK13GLDrawableFactory 
	extends SunJDK13GLDrawableFactory 
{

    public MacSunJDK13GLDrawableFactory() { }

    public GraphicsConfiguration
        getGraphicsConfiguration(GLCapabilities capabilities,
                                 GraphicsDevice device) 
    {
        return null;
    }

  // Needs to return an XVisualID which can be wrapped in an
  // X11GraphicsConfig object
  //public static native long glXChooseVisual(int screen,
  //                                         GLCapabilities capabilities);
}