From 6b82b5758d63f4cdb1028e07fc84c5f7a45d3d70 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 1 Aug 2011 15:35:50 +0200 Subject: Revert commit 96cbe03a943f3189531a7ec9baf680bdf1417929: Capabilities: default rgb 555 -> 888 ; Turns out such a default value change would cause too many regressions --- src/nativewindow/classes/javax/media/nativewindow/Capabilities.java | 6 +++--- 1 file 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 -- cgit v1.2.3