this.blueMask = 0x000000FF; // TODO get from modeInfoBlock
break;
default:
throw new DriverException("Unknown bits/pixel value " + bitsPerPixel);
}
bitmapGraphics = new SoftwareCursor(graphics);
String transparency = SystemProperties.getProperty("org.jnode.awt.transparency");
if ((bitsPerPixel == 32) && (transparency != null) && "true".equals(transparency)) {
this.alphaMask = 0xff000000; // - transparency enabled
} else {