Delegate Sys platform dependent methods into SysImplementation instances

This commit is contained in:
Elias Naur 2005-01-18 20:23:05 +00:00
parent 87ce7a85af
commit 66181d1486
14 changed files with 253 additions and 365 deletions

View file

@ -126,11 +126,4 @@ final class Win32Display implements DisplayImplementation {
public native void setPbufferAttrib(ByteBuffer handle, int attrib, int value);
public native void bindTexImageToPbuffer(ByteBuffer handle, int buffer);
public native void releaseTexImageFromPbuffer(ByteBuffer handle, int buffer);
public boolean openURL(String url) {
nOpenURL(url);
return true;
}
private native void nOpenURL(String url);
}