aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2008-05-30 07:39:06 +0000
committerKenneth Russel <[email protected]>2008-05-30 07:39:06 +0000
commitb5aed7df3ac9ebd87498247882d0c874891c0ce9 (patch)
treee2389c6a3688f76c3f2d330c0e7b84e8e132483e /src/classes/com/sun/opengl
parent10052f96bb3c29f2fb38787e71caa63825c18be2 (diff)
Changes to WindowsWindow.c to compile on Windows CE. Slight changes to
config selection to match C code -- no semantic difference, however. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1649 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl')
-rwxr-xr-xsrc/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java b/src/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java
index be594ce46..2a8b8fbae 100755
--- a/src/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java
+++ b/src/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java
@@ -197,7 +197,7 @@ public class EGLDrawableFactory extends GLDrawableFactoryImpl {
EGL.EGL_RED_SIZE, caps.getRedBits(),
EGL.EGL_GREEN_SIZE, caps.getGreenBits(),
EGL.EGL_BLUE_SIZE, caps.getBlueBits(),
- EGL.EGL_ALPHA_SIZE, caps.getAlphaBits(),
+ EGL.EGL_ALPHA_SIZE, (caps.getAlphaBits() > 0 ? caps.getAlphaBits() : EGL.EGL_DONT_CARE),
EGL.EGL_STENCIL_SIZE, (caps.getStencilBits() > 0 ? caps.getStencilBits() : EGL.EGL_DONT_CARE),
EGL.EGL_NONE, EGL.EGL_NONE,
EGL.EGL_NONE