001: /*
002: * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: package sun.java2d.opengl;
027:
028: import java.awt.GraphicsConfiguration;
029: import java.awt.GraphicsDevice;
030: import java.awt.GraphicsEnvironment;
031: import java.awt.Image;
032: import java.awt.Rectangle;
033: import java.awt.Transparency;
034: import java.awt.image.ColorModel;
035: import sun.awt.X11ComponentPeer;
036: import sun.java2d.SurfaceData;
037: import sun.java2d.loops.SurfaceType;
038:
039: public abstract class GLXSurfaceData extends OGLSurfaceData {
040:
041: protected X11ComponentPeer peer;
042: private GLXGraphicsConfig graphicsConfig;
043:
044: private native void initOps(X11ComponentPeer peer, long aData);
045:
046: protected native boolean initPbuffer(long pData, long pConfigInfo,
047: boolean isOpaque, int width, int height);
048:
049: protected GLXSurfaceData(X11ComponentPeer peer,
050: GLXGraphicsConfig gc, ColorModel cm, int type) {
051: super (gc, cm, type);
052: this .peer = peer;
053: this .graphicsConfig = gc;
054: initOps(peer, graphicsConfig.getAData());
055: }
056:
057: public GraphicsConfiguration getDeviceConfiguration() {
058: return graphicsConfig;
059: }
060:
061: /**
062: * Creates a SurfaceData object representing the primary (front) buffer
063: * of an on-screen Window.
064: */
065: public static GLXWindowSurfaceData createData(X11ComponentPeer peer) {
066: GLXGraphicsConfig gc = getGC(peer);
067: return new GLXWindowSurfaceData(peer, gc);
068: }
069:
070: /**
071: * Creates a SurfaceData object representing the back buffer of a
072: * double-buffered on-screen Window.
073: */
074: public static GLXOffScreenSurfaceData createData(
075: X11ComponentPeer peer, Image image) {
076: GLXGraphicsConfig gc = getGC(peer);
077: Rectangle r = peer.getBounds();
078: return new GLXOffScreenSurfaceData(peer, gc, r.width, r.height,
079: image, peer.getColorModel(), FLIP_BACKBUFFER);
080: }
081:
082: /**
083: * Creates a SurfaceData object representing an off-screen buffer (either
084: * a Pbuffer or Texture).
085: */
086: public static GLXOffScreenSurfaceData createData(
087: GLXGraphicsConfig gc, int width, int height, ColorModel cm,
088: Image image, int type) {
089: return new GLXOffScreenSurfaceData(null, gc, width, height,
090: image, cm, type);
091: }
092:
093: public static GLXGraphicsConfig getGC(X11ComponentPeer peer) {
094: if (peer != null) {
095: return (GLXGraphicsConfig) peer.getGraphicsConfiguration();
096: } else {
097: // REMIND: this should rarely (never?) happen, but what if
098: // default config is not GLX?
099: GraphicsEnvironment env = GraphicsEnvironment
100: .getLocalGraphicsEnvironment();
101: GraphicsDevice gd = env.getDefaultScreenDevice();
102: return (GLXGraphicsConfig) gd.getDefaultConfiguration();
103: }
104: }
105:
106: public static class GLXWindowSurfaceData extends GLXSurfaceData {
107:
108: public GLXWindowSurfaceData(X11ComponentPeer peer,
109: GLXGraphicsConfig gc) {
110: super (peer, gc, peer.getColorModel(), WINDOW);
111: }
112:
113: public SurfaceData getReplacement() {
114: return peer.getSurfaceData();
115: }
116:
117: public Rectangle getBounds() {
118: Rectangle r = peer.getBounds();
119: r.x = r.y = 0;
120: return r;
121: }
122:
123: /**
124: * Returns destination Component associated with this SurfaceData.
125: */
126: public Object getDestination() {
127: return peer.getTarget();
128: }
129: }
130:
131: public static class GLXOffScreenSurfaceData extends GLXSurfaceData {
132:
133: private Image offscreenImage;
134: private int width, height;
135:
136: public GLXOffScreenSurfaceData(X11ComponentPeer peer,
137: GLXGraphicsConfig gc, int width, int height,
138: Image image, ColorModel cm, int type) {
139: super (peer, gc, cm, type);
140:
141: this .width = width;
142: this .height = height;
143: offscreenImage = image;
144:
145: initSurface(width, height);
146: }
147:
148: public SurfaceData getReplacement() {
149: return restoreContents(offscreenImage);
150: }
151:
152: public Rectangle getBounds() {
153: if (type == FLIP_BACKBUFFER) {
154: Rectangle r = peer.getBounds();
155: r.x = r.y = 0;
156: return r;
157: } else {
158: return new Rectangle(width, height);
159: }
160: }
161:
162: /**
163: * Returns destination Image associated with this SurfaceData.
164: */
165: public Object getDestination() {
166: return offscreenImage;
167: }
168: }
169: }
|