Mac OS X: Fixed an issue where pbuffer contexts could not share with the display context.

This commit is contained in:
Elias Naur 2005-11-04 12:38:59 +00:00
parent be343cf334
commit a9bd41f12e
5 changed files with 16 additions and 8 deletions

View file

@ -44,8 +44,8 @@ import org.lwjgl.LWJGLException;
final class MacOSXDisplayPeerInfo extends MacOSXCanvasPeerInfo {
private boolean locked = false;
public MacOSXDisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException {
super(pixel_format);
public MacOSXDisplayPeerInfo(PixelFormat pixel_format, boolean support_pbuffer) throws LWJGLException {
super(pixel_format, support_pbuffer);
}
protected void doLockAndInitHandle() throws LWJGLException {