summaryrefslogtreecommitdiffstats
path: root/src/newt/classes
diff options
context:
space:
mode:
authorsg215889 <[email protected]>2009-07-28 15:49:12 -0700
committersg215889 <[email protected]>2009-07-28 15:49:12 -0700
commit0a92a47567cfa36b33590bacf4c782c0ec4f9eaf (patch)
tree4c58089864de1b938027305bcfb25869089c456d /src/newt/classes
parentb6d75cac68340878b20d35b23c8449c97ad9d819 (diff)
Fix BroadcomEGL: Proper EGLGraphicsConfiguration at creation time
Diffstat (limited to 'src/newt/classes')
-rwxr-xr-xsrc/newt/classes/com/sun/javafx/newt/opengl/broadcom/BCEGLWindow.java12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/newt/classes/com/sun/javafx/newt/opengl/broadcom/BCEGLWindow.java b/src/newt/classes/com/sun/javafx/newt/opengl/broadcom/BCEGLWindow.java
index a91a91598..9b790bd1f 100755
--- a/src/newt/classes/com/sun/javafx/newt/opengl/broadcom/BCEGLWindow.java
+++ b/src/newt/classes/com/sun/javafx/newt/opengl/broadcom/BCEGLWindow.java
@@ -50,8 +50,12 @@ public class BCEGLWindow extends Window {
}
protected void createNative(Capabilities caps) {
- // just save the GLProfile here, create window later ..
- glProfile = ((GLCapabilities)caps).getGLProfile();
+ // query a good configuration .. even thought we drop this one
+ // and reuse the EGLUtil choosen one later.
+ config = GraphicsConfigurationFactory.getFactory(getScreen().getDisplay().getGraphicsDevice()).chooseGraphicsConfiguration(caps, null, getScreen().getGraphicsScreen());
+ if (config == null) {
+ throw new NativeWindowException("Error choosing GraphicsConfiguration creating window: "+this);
+ }
}
protected void closeNative() {
@@ -115,12 +119,12 @@ public class BCEGLWindow extends Window {
private void windowCreated(int cfgID, int width, int height) {
this.width = width;
this.height = height;
- config = EGLGraphicsConfiguration.create(glProfile, screen.getGraphicsScreen(), cfgID);
+ GLCapabilities capsReq = (GLCapabilities) config.getRequestedCapabilities();
+ config = EGLGraphicsConfiguration.create(capsReq, screen.getGraphicsScreen(), cfgID);
if (config == null) {
throw new NativeWindowException("Error creating EGLGraphicsConfiguration from id: "+cfgID+", "+this);
}
}
private long windowHandleClose;
- private GLProfile glProfile;
}