lwjgl2-arm64/src/java/org/lwjgl/opengl/Pbuffer.java

315 lines
10 KiB
Java
Raw Normal View History

2004-11-09 22:29:17 +01:00
/*
2004-06-12 22:28:34 +02:00
* Copyright (c) 2002-2004 LWJGL Project
2003-08-17 18:38:57 +02:00
* All rights reserved.
2004-11-09 22:29:17 +01:00
*
2003-08-17 18:38:57 +02:00
* Redistribution and use in source and binary forms, with or without
2004-11-09 22:29:17 +01:00
* modification, are permitted provided that the following conditions are
2003-08-17 18:38:57 +02:00
* met:
2004-11-09 22:29:17 +01:00
*
* * Redistributions of source code must retain the above copyright
2003-08-17 18:38:57 +02:00
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
2004-11-09 22:29:17 +01:00
* * Neither the name of 'LWJGL' nor the names of
* its contributors may be used to endorse or promote products derived
2003-08-17 18:38:57 +02:00
* from this software without specific prior written permission.
2004-11-09 22:29:17 +01:00
*
2003-08-17 18:38:57 +02:00
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2004-11-09 22:29:17 +01:00
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2003-08-17 18:38:57 +02:00
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2004-11-09 22:29:17 +01:00
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2003-08-17 18:38:57 +02:00
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.lwjgl.opengl;
2005-01-22 01:34:50 +01:00
import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil;
2005-01-22 01:34:50 +01:00
import org.lwjgl.Sys;
2003-08-17 18:38:57 +02:00
/**
* $Id$
2004-03-02 02:59:32 +01:00
* <p/>
2003-08-17 18:38:57 +02:00
* Pbuffer encapsulates an OpenGL pbuffer.
2004-03-02 02:59:32 +01:00
* <p/>
*
* This class is thread-safe.
2004-02-15 22:46:58 +01:00
*
2003-08-17 18:38:57 +02:00
* @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$
*/
public final class Pbuffer implements Drawable {
2004-03-02 02:59:32 +01:00
/**
* Indicates that Pbuffers can be created.
*/
public static final int PBUFFER_SUPPORTED = 1 << 0;
/**
* Indicates that Pbuffers can be used as render-textures.
*/
public static final int RENDER_TEXTURE_SUPPORTED = 1 << 1;
/**
* Indicates that Pbuffers can be used as non-power-of-two render-textures.
*/
public static final int RENDER_TEXTURE_RECTANGLE_SUPPORTED = 1 << 2;
/**
* Indicates that Pbuffers can be used as depth render-textures.
*/
public static final int RENDER_DEPTH_TEXTURE_SUPPORTED = 1 << 3;
/**
* The render-to-texture mipmap level attribute.
*/
public static final int MIPMAP_LEVEL = RenderTexture.WGL_MIPMAP_LEVEL_ARB;
/**
* The render-to-texture cube map face attribute.
*/
public static final int CUBE_MAP_FACE = RenderTexture.WGL_CUBE_MAP_FACE_ARB;
/**
* The render-to-texture cube map positive X face value.
*/
public static final int TEXTURE_CUBE_MAP_POSITIVE_X = RenderTexture.WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB;
2004-02-15 22:46:58 +01:00
2004-03-02 02:59:32 +01:00
/**
* The render-to-texture cube map negative X face value.
*/
public static final int TEXTURE_CUBE_MAP_NEGATIVE_X = RenderTexture.WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB;
/**
* The render-to-texture cube map positive Y face value.
*/
public static final int TEXTURE_CUBE_MAP_POSITIVE_Y = RenderTexture.WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB;
/**
* The render-to-texture cube map negative Y face value.
*/
public static final int TEXTURE_CUBE_MAP_NEGATIVE_Y = RenderTexture.WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB;
/**
* The render-to-texture cube map positive Z face value.
*/
public static final int TEXTURE_CUBE_MAP_POSITIVE_Z = RenderTexture.WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB;
/**
* The render-to-texture cube map negative Z face value.
*/
public static final int TEXTURE_CUBE_MAP_NEGATIVE_Z = RenderTexture.WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB;
/**
* The Pbuffer front left buffer.
*/
public static final int FRONT_LEFT_BUFFER = RenderTexture.WGL_FRONT_LEFT_ARB;
/**
* The Pbuffer front right buffer.
*/
public static final int FRONT_RIGHT_BUFFER = RenderTexture.WGL_FRONT_RIGHT_ARB;
/**
* The Pbuffer back left buffer.
*/
public static final int BACK_LEFT_BUFFER = RenderTexture.WGL_BACK_LEFT_ARB;
/**
* The Pbuffer back right buffer.
*/
public static final int BACK_RIGHT_BUFFER = RenderTexture.WGL_BACK_RIGHT_ARB;
/**
* The Pbuffer depth buffer.
*/
public static final int DEPTH_BUFFER = RenderTexture.WGL_DEPTH_COMPONENT_NV;
/**
* Handle to the native GL rendering context
*/
private final PeerInfo peer_info;
2003-08-17 18:38:57 +02:00
2004-03-02 02:59:32 +01:00
/**
* Width
*/
2004-02-18 18:48:26 +01:00
private final int width;
2004-03-02 02:59:32 +01:00
/**
* Height
*/
2004-02-18 18:48:26 +01:00
private final int height;
2003-08-17 18:38:57 +02:00
private final Context context;
private boolean destroyed;
2003-08-17 18:38:57 +02:00
static {
2004-03-27 14:48:58 +01:00
Sys.initialize();
2003-08-17 18:38:57 +02:00
}
2004-02-15 22:46:58 +01:00
2004-07-24 21:50:50 +02:00
/**
* Create an instance of a Pbuffer with a unique OpenGL context. The buffer is single-buffered.
2004-03-02 02:59:32 +01:00
* <p/>
* NOTE: The Pbuffer will have its own context that shares display lists and textures with <code>shared_context</code>,
* or, if <code>shared_context</code> is <code>null</code>, the Display context if it is created. The Pbuffer
* will have its own OpenGL state. Therefore, state changes to a pbuffer will not be seen in the window context and vice versa.
2004-03-02 02:59:32 +01:00
* <p/>
* The renderTexture parameter defines the necessary state for enabling render-to-texture. When this parameter is null,
* render-to-texture is not available. Before using render-to-texture, the Pbuffer capabilities must be queried to ensure that
* it is supported.
* <p/>
2003-08-17 18:38:57 +02:00
*
2004-03-02 02:59:32 +01:00
* @param width Pbuffer width
* @param height Pbuffer height
* @param pixel_format Minimum Pbuffer context properties
2004-03-02 02:59:32 +01:00
* @param renderTexture
* @param shared_drawable If non-null the Pbuffer will share display lists and textures with it. Otherwise, the Pbuffer will share
* with the Display context (if created).
2004-03-02 02:59:32 +01:00
*/
public Pbuffer(int width, int height, PixelFormat pixel_format, RenderTexture renderTexture, Drawable shared_drawable) throws LWJGLException {
2004-02-18 18:48:26 +01:00
this.width = width;
this.height = height;
this.peer_info = createPbuffer(width, height, pixel_format, renderTexture);
Context shared_context = null;
if (shared_drawable != null) {
shared_context = shared_drawable.getContext();
} else {
Drawable display_drawable = Display.getDrawable();
if (display_drawable != null)
shared_context = display_drawable.getContext();
}
this.context = new Context(peer_info, shared_context);
}
2004-03-02 02:59:32 +01:00
private static PeerInfo createPbuffer(int width, int height, PixelFormat pixel_format, RenderTexture renderTexture) throws LWJGLException {
if ( renderTexture == null )
return Display.getImplementation().createPbuffer(width, height, pixel_format, null, null);
else
return Display.getImplementation().createPbuffer(width, height, pixel_format,
renderTexture.pixelFormatCaps,
renderTexture.pBufferAttribs);
}
public Context getContext() {
return context;
}
private void checkDestroyed() {
if (destroyed)
throw new IllegalStateException("Pbuffer is destroyed");
2003-08-17 18:38:57 +02:00
}
/**
2004-03-02 02:59:32 +01:00
* Method to test for validity of the buffer. If this function returns true, the buffer contents is lost. The buffer can still
* be used, but the results are undefined. The application is expected to release the buffer if needed, destroy it and recreate
* a new buffer.
2003-08-17 18:38:57 +02:00
*
* @return true if the buffer is lost and destroyed, false if the buffer is valid.
*/
public synchronized boolean isBufferLost() {
checkDestroyed();
return Display.getImplementation().isBufferLost(peer_info);
2003-08-17 18:38:57 +02:00
}
/**
2004-03-02 02:59:32 +01:00
* Method to make the Pbuffer context current. All subsequent OpenGL calls will go to this buffer.
* @throws LWJGLException if the context could not be made current
2003-08-17 18:38:57 +02:00
*/
public synchronized void makeCurrent() throws LWJGLException {
checkDestroyed();
context.makeCurrent();
2003-08-17 18:38:57 +02:00
}
/**
2004-03-02 02:59:32 +01:00
* Gets the Pbuffer capabilities.
2003-08-17 18:38:57 +02:00
*
* @return a bitmask of Pbuffer capabilities.
*/
public static int getCapabilities() {
return Display.getImplementation().getPbufferCapabilities();
}
2004-02-15 22:46:58 +01:00
2003-08-17 18:38:57 +02:00
/**
2004-03-02 02:59:32 +01:00
* Destroys the Pbuffer. After this call, there will be no valid GL rendering context - regardless of whether this Pbuffer was
* the current rendering context or not.
2003-08-17 18:38:57 +02:00
*/
public synchronized void destroy() {
if (destroyed)
return;
try {
context.forceDestroy();
peer_info.destroy();
destroyed = true;
} catch (LWJGLException e) {
LWJGLUtil.log("Exception occurred while destroying pbuffer: " + e);
}
2003-08-17 18:38:57 +02:00
}
2004-03-02 02:59:32 +01:00
// -----------------------------------------------------------------------------------------
// ------------------------------- Render-to-Texture Methods -------------------------------
// -----------------------------------------------------------------------------------------
/**
* Sets a render-to-texture attribute.
* <p/>
* The attrib parameter can be one of MIPMAP_LEVEL and CUBE_MAP_FACE. When the attrib parameter is CUBE_MAP_FACE then the value
* parameter can be on of the following:
* <p/>
* TEXTURE_CUBE_MAP_POSITIVE_X TEXTURE_CUBE_MAP_NEGATIVE_X TEXTURE_CUBE_MAP_POSITIVE_Y TEXTURE_CUBE_MAP_NEGATIVE_Y
* TEXTURE_CUBE_MAP_POSITIVE_Z TEXTURE_CUBE_MAP_NEGATIVE_Z
*
* @param attrib
* @param value
*/
public synchronized void setAttrib(int attrib, int value) {
checkDestroyed();
Display.getImplementation().setPbufferAttrib(peer_info, attrib, value);
2004-03-02 02:59:32 +01:00
}
/**
* Binds the currently bound texture to the buffer specified. The buffer can be one of the following:
* <p/>
* FRONT_LEFT_BUFFER FRONT_RIGHT_BUFFER BACK_LEFT_BUFFER BACK_RIGHT_BUFFER DEPTH_BUFFER
*
* @param buffer
*/
public synchronized void bindTexImage(int buffer) {
checkDestroyed();
Display.getImplementation().bindTexImageToPbuffer(peer_info, buffer);
2004-03-02 02:59:32 +01:00
}
/**
* Releases the currently bound texture from the buffer specified.
*
* @param buffer
*/
public synchronized void releaseTexImage(int buffer) {
checkDestroyed();
Display.getImplementation().releaseTexImageFromPbuffer(peer_info, buffer);
2004-03-02 02:59:32 +01:00
}
2004-02-18 18:48:26 +01:00
/**
* @return Returns the height.
*/
public synchronized int getHeight() {
checkDestroyed();
2004-02-18 18:48:26 +01:00
return height;
}
2004-03-02 02:59:32 +01:00
2004-02-18 18:48:26 +01:00
/**
* @return Returns the width.
*/
public synchronized int getWidth() {
checkDestroyed();
2004-02-18 18:48:26 +01:00
return width;
}
2003-08-17 18:38:57 +02:00
}