Package org.jnode.driver.video.cursor

Examples of org.jnode.driver.video.cursor.SoftwareCursor


                    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 {
View Full Code Here

TOP

Related Classes of org.jnode.driver.video.cursor.SoftwareCursor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.