diff options
author | Sven Gothel <[email protected]> | 2011-08-01 15:35:50 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-01 15:35:50 +0200 |
commit | 6b82b5758d63f4cdb1028e07fc84c5f7a45d3d70 (patch) | |
tree | 4f89cae6d2bf02676a34ea36fa40a8d4dbc15dd1 | |
parent | 077e6fc0d3e025f1c7b2467ca13fd5858c2a4e3c (diff) |
Revert commit 96cbe03a943f3189531a7ec9baf680bdf1417929: Capabilities: default rgb 555 -> 888 ; Turns out such a default value change would cause too many regressions
-rw-r--r-- | src/nativewindow/classes/javax/media/nativewindow/Capabilities.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nativewindow/classes/javax/media/nativewindow/Capabilities.java b/src/nativewindow/classes/javax/media/nativewindow/Capabilities.java index 7104eb027..79d69c703 100644 --- a/src/nativewindow/classes/javax/media/nativewindow/Capabilities.java +++ b/src/nativewindow/classes/javax/media/nativewindow/Capabilities.java @@ -45,9 +45,9 @@ package javax.media.nativewindow; contains the minimal number of routines which allow configuration on all supported window systems. */ public class Capabilities implements CapabilitiesImmutable, Cloneable, Comparable { - private int redBits = 5; - private int greenBits = 5; - private int blueBits = 5; + private int redBits = 8; + private int greenBits = 8; + private int blueBits = 8; private int alphaBits = 0; // Support for transparent windows containing OpenGL content |