mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-06 08:49:56 +01:00
applied patch to move ID tag
This commit is contained in:
parent
0c539252b4
commit
8a3bee6b1c
|
|
@ -39,7 +39,6 @@ import java.nio.IntBuffer;
|
|||
import java.nio.ShortBuffer;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>A class to check buffer boundaries in general. If there is unsufficient space
|
||||
* in the buffer when the call is made then a buffer overflow would otherwise
|
||||
* occur and cause unexpected behaviour, a crash, or worse, a security risk.
|
||||
|
|
@ -47,6 +46,7 @@ import java.nio.ShortBuffer;
|
|||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class BufferChecks {
|
||||
/** Static methods only! */
|
||||
|
|
|
|||
|
|
@ -42,12 +42,11 @@ import java.nio.LongBuffer;
|
|||
import java.nio.ShortBuffer;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* Some often-used Buffer code for creating native buffers of the appropriate size.
|
||||
|
||||
*
|
||||
* @author $Author$
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
public final class BufferUtils {
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl;
|
|||
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class DefaultSysImplementation implements SysImplementation {
|
||||
/** The native library name */
|
||||
|
|
|
|||
|
|
@ -35,11 +35,11 @@ import javax.swing.JOptionPane;
|
|||
import javax.swing.UIManager;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* A SysImplementation which delegates as much as it can to J2SE.
|
||||
* <p>
|
||||
* @author $Author$
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class J2SESysImplementation extends DefaultSysImplementation {
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,6 @@
|
|||
package org.lwjgl;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* This exception is supplied to make exception handling more generic for LWJGL
|
||||
* specific exceptions
|
||||
|
|
@ -40,6 +39,7 @@ package org.lwjgl;
|
|||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class LWJGLException extends Exception {
|
||||
|
||||
|
|
|
|||
|
|
@ -43,13 +43,13 @@ import java.util.List;
|
|||
import java.util.StringTokenizer;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* Internal library methods
|
||||
* </p>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class LWJGLUtil {
|
||||
public static final int PLATFORM_LINUX = 1;
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.security.PrivilegedActionException;
|
|||
import java.security.PrivilegedExceptionAction;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
class LinuxSysImplementation extends J2SESysImplementation {
|
||||
static {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.security.AccessController;
|
|||
import java.security.PrivilegedExceptionAction;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
class MacOSXSysImplementation extends J2SESysImplementation {
|
||||
public String[] getNativeLibraryNames() {
|
||||
|
|
|
|||
|
|
@ -32,11 +32,11 @@
|
|||
package org.lwjgl;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* A SysImplementation that uses native calls only.
|
||||
* <p>
|
||||
* @author $Author$
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
class NativeSysImplementation extends DefaultSysImplementation {
|
||||
|
||||
|
|
|
|||
|
|
@ -41,12 +41,12 @@ import java.security.PrivilegedExceptionAction;
|
|||
import org.lwjgl.input.Mouse;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* System class (named Sys so as not to conflict with java.lang.System)
|
||||
* </p>
|
||||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public final class Sys {
|
||||
|
||||
|
|
|
|||
|
|
@ -32,13 +32,13 @@
|
|||
package org.lwjgl;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* System class platform specific method interface
|
||||
*
|
||||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
interface SysImplementation {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@
|
|||
package org.lwjgl;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* Win32 SysImplementation. This is just a straightforward NativsSysImplementation.
|
||||
* </p>
|
||||
* @author $Author$
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
class Win32SysImplementation extends NativeSysImplementation {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,6 @@ import org.lwjgl.BufferChecks;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* The core DevIL API.
|
||||
* </p>
|
||||
|
|
@ -51,6 +50,7 @@ import org.lwjgl.LWJGLException;
|
|||
* @author captainjester <captainjester@users.sourceforge.net>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class IL {
|
||||
|
||||
|
|
|
|||
|
|
@ -35,13 +35,13 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.LWJGLUtil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* Native interface for DevIL
|
||||
* </p>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
class ILNative {
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ import org.lwjgl.BufferChecks;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* The DevIL ILU API.
|
||||
* </p>
|
||||
|
|
@ -45,6 +44,7 @@ import org.lwjgl.LWJGLException;
|
|||
* @author captainjester <captainjester@users.sourceforge.net>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class ILU {
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ import java.nio.IntBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* The DevIL ILUT API.
|
||||
* </p>
|
||||
|
|
@ -45,6 +44,7 @@ import org.lwjgl.LWJGLException;
|
|||
* @author captainjester <captainjester@users.sourceforge.net>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class ILUT {
|
||||
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@
|
|||
package org.lwjgl.devil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* ILinfo information holding class.
|
||||
*
|
||||
* @author captainjester <captainjester@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class ILinfo {
|
||||
public int id; // the image's id
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@
|
|||
package org.lwjgl.devil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* ILpointf information holding class.
|
||||
*
|
||||
* @author captainjester <captainjester@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class ILpointf {
|
||||
public float x;
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@
|
|||
package org.lwjgl.devil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* ILpointi information holding class.
|
||||
*
|
||||
* @author captainjester <captainjester@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class ILpointi {
|
||||
public int x;
|
||||
|
|
|
|||
|
|
@ -38,12 +38,12 @@ import org.lwjgl.opengl.Display;
|
|||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* This is a <em>very basic</em> skeleton to init a game and run it.
|
||||
*
|
||||
* @author $Author$
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class Game {
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,6 @@ import org.lwjgl.util.WaveData;
|
|||
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* Simple sound manager for OpenAL using n sources accessed in
|
||||
* a round robin schedule. Source n is reserved for a single buffer and checking for
|
||||
|
|
@ -49,6 +48,7 @@ import org.lwjgl.util.WaveData;
|
|||
* </p>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class SoundManager {
|
||||
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.LWJGLUtil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FMOD {
|
||||
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import org.lwjgl.LWJGLException;
|
|||
|
||||
/**
|
||||
* FMOD Exception specific for FMOD exceptions (duh!)
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FMODException extends LWJGLException {
|
||||
|
||||
|
|
|
|||
|
|
@ -39,10 +39,10 @@ import java.util.ArrayList;
|
|||
import org.lwjgl.fmod3.callbacks.FMusicCallback;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FMusic {
|
||||
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
|
|||
|
||||
/**
|
||||
* This class is a representation of a Module in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FMusicModule {
|
||||
/** Handle to module */
|
||||
|
|
|
|||
|
|
@ -48,10 +48,10 @@ import org.lwjgl.fmod3.callbacks.FSoundStreamCallback;
|
|||
import org.lwjgl.fmod3.callbacks.FSoundTellCallback;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSound {
|
||||
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
|
|||
|
||||
/**
|
||||
* This class is a representation of a DSPUnit in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundDSPUnit {
|
||||
/** Opaque handle to dsp unit */
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
|
|||
|
||||
/**
|
||||
* This class is a representation of a Reverb channel property object in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundReverbChannelProperties {
|
||||
/** Handle to stream */
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
|
|||
|
||||
/**
|
||||
* This class is a representation of a Reverb property object in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundReverbProperties {
|
||||
/** Handle to stream */
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
|
|||
|
||||
/**
|
||||
* This class is a representation of a Sound Sample in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundSample {
|
||||
/** Handle to sample */
|
||||
|
|
|
|||
|
|
@ -34,10 +34,10 @@ package org.lwjgl.fmod3;
|
|||
import java.nio.ByteBuffer;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundSampleLock {
|
||||
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
|
|||
|
||||
/**
|
||||
* This class is a representation of a Sound stream in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundStream {
|
||||
/** Handle to stream */
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
|
|||
|
||||
/**
|
||||
* This class is a representation of a SyncPoint in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundSyncPoint {
|
||||
/** Opaque handle to syncpoint */
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
|
|||
|
||||
/**
|
||||
* This class defines attributes in a tag field
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundTagField {
|
||||
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
|
|||
|
||||
/**
|
||||
* This class is a representation of a FSOUND_TOC_TAG property object in FMod.
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class FSoundTocTag {
|
||||
/** Handle to toc */
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import org.lwjgl.fmod3.FMusicModule;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FMusicCallback {
|
||||
public void FMUSIC_CALLBACK(FMusicModule module, int param);
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundCloseCallback {
|
||||
public void FSOUND_CLOSECALLBACK(int handle);
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundDSPCallback {
|
||||
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundMetaDataCallback {
|
||||
public void FSOUND_METADATACALLBACK(ByteBuffer name, ByteBuffer value);
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundOpenCallback {
|
||||
public int FSOUND_OPENCALLBACK(String name);
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundReadCallback {
|
||||
public int FSOUND_READCALLBACK(ByteBuffer buffer, int size, int handle);
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundSeekCallback {
|
||||
public int FSOUND_SEEKCALLBACK(int handle, int pos, int mode);
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import org.lwjgl.fmod3.FSoundStream;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundStreamCallback {
|
||||
public void FSOUND_STREAMCALLBACK(FSoundStream stream, ByteBuffer buff, int len);
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
|
|||
|
||||
/**
|
||||
* This interface describes a callback interface to Fmod music
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface FSoundTellCallback {
|
||||
public int FSOUND_TELLCALLBACK(int handle);
|
||||
|
|
|
|||
|
|
@ -41,13 +41,13 @@ import org.lwjgl.Sys;
|
|||
import org.lwjgl.opengl.Display;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* A class representing a native cursor. Instances of this
|
||||
* class can be used with Mouse.setCursor(), if available.
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
public class Cursor {
|
||||
|
|
|
|||
|
|
@ -44,7 +44,6 @@ import org.lwjgl.Sys;
|
|||
import org.lwjgl.opengl.Display;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* A raw Keyboard interface. This can be used to poll the current state of the
|
||||
* keys, or read all the keyboard presses / releases since the last read.
|
||||
|
|
@ -53,6 +52,7 @@ import org.lwjgl.opengl.Display;
|
|||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class Keyboard {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -43,7 +43,6 @@ import org.lwjgl.Sys;
|
|||
import org.lwjgl.opengl.Display;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* A raw Mouse interface. This can be used to poll the current state of the
|
||||
* mouse buttons, and determine the mouse movement delta since the last poll.
|
||||
|
|
@ -57,6 +56,7 @@ import org.lwjgl.opengl.Display;
|
|||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class Mouse {
|
||||
/** Has the mouse been created? */
|
||||
|
|
|
|||
|
|
@ -38,12 +38,12 @@ import org.lwjgl.LWJGLUtil;
|
|||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* This is the OpenAL class. It extends the latest core.
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public final class AL {
|
||||
/** ALCdevice instance. */
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* <p>
|
||||
* This is the context class for OpenAL. This class implements functions
|
||||
|
|
@ -66,6 +65,7 @@ import org.lwjgl.Sys;
|
|||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public final class ALC {
|
||||
/** Bad value */
|
||||
|
|
|
|||
|
|
@ -36,12 +36,12 @@ import java.nio.IntBuffer;
|
|||
import org.lwjgl.BufferUtils;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Wrapper class, to make ALC contexts behave like the orginal api.
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class ALCcontext {
|
||||
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@
|
|||
package org.lwjgl.openal;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Wrapper class, to make ALC devices behave like the orginal api.
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class ALCdevice {
|
||||
|
||||
|
|
|
|||
|
|
@ -32,13 +32,13 @@
|
|||
package org.lwjgl.openal;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Thrown by the debug build library of the LWJGL if any OpenAL operation
|
||||
* causes an error.
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class OpenALException extends RuntimeException {
|
||||
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import java.awt.GraphicsDevice;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
interface AWTCanvasImplementation {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -47,12 +47,12 @@ import org.lwjgl.LWJGLUtil;
|
|||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>
|
||||
* An AWT rendering context.
|
||||
* <p>
|
||||
* @version $Revision$
|
||||
* @author $Author$
|
||||
* $Id$
|
||||
*/
|
||||
public class AWTGLCanvas extends Canvas implements Drawable, ComponentListener, HierarchyListener {
|
||||
private final static AWTCanvasImplementation implementation;
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.LWJGLUtil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class AWTSurfaceLock {
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,6 @@ import org.lwjgl.LWJGLUtil;
|
|||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p/>
|
||||
* Context encapsulates an OpenGL context.
|
||||
* <p/>
|
||||
|
|
@ -47,6 +46,7 @@ import org.lwjgl.Sys;
|
|||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class Context {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -36,13 +36,13 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p/>
|
||||
* Context implementation interface.
|
||||
* <p/>
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
interface ContextImplementation {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -32,7 +32,6 @@
|
|||
package org.lwjgl.opengl;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* This class encapsulates the properties for a given display mode.
|
||||
* This class is not instantiable, and is aquired from the <code>Display.
|
||||
|
|
@ -40,6 +39,7 @@ package org.lwjgl.opengl;
|
|||
*
|
||||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
public final class DisplayMode {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ import java.nio.IntBuffer;
|
|||
import org.lwjgl.BufferUtils;
|
||||
|
||||
/**
|
||||
* $Id$ A class to check buffer boundaries in GL methods. Many GL
|
||||
* A class to check buffer boundaries in GL methods. Many GL
|
||||
* methods read data from the GL into a native Buffer at its current position. If there is unsufficient space in the buffer when
|
||||
* the call is made then a buffer overflow would otherwise occur and cause unexpected behaviour, a crash, or worse, a security
|
||||
* risk. Therefore in those methods where GL reads data back into a buffer, we will call a bounds check method from this class
|
||||
|
|
@ -47,6 +47,7 @@ import org.lwjgl.BufferUtils;
|
|||
*
|
||||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
class GLChecks {
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,6 @@ import org.lwjgl.LWJGLUtil;
|
|||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p/>
|
||||
* Manages GL contexts. Before any rendering is done by a LWJGL system, a call should be made to GLContext.useContext() with a
|
||||
* context. This will ensure that GLContext has an accurate reflection of the current context's capabilities and function
|
||||
|
|
@ -58,6 +57,7 @@ import org.lwjgl.Sys;
|
|||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public final class GLContext {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@
|
|||
package org.lwjgl.opengl;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p/>
|
||||
* GLU constants.
|
||||
*
|
||||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public interface GLUConstants {
|
||||
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.LWJGLUtil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class LinuxAWTGLCanvasPeerInfo extends LinuxPeerInfo {
|
||||
private final AWTGLCanvas canvas;
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.LWJGLUtil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class LinuxCanvasImplementation implements AWTCanvasImplementation {
|
||||
static int getScreenFromDevice(final GraphicsDevice device) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class LinuxContextImplementation implements ContextImplementation {
|
||||
public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class LinuxDisplayPeerInfo extends LinuxPeerInfo {
|
||||
public LinuxDisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class LinuxPbufferPeerInfo extends LinuxPeerInfo {
|
||||
public LinuxPbufferPeerInfo(int width, int height, PixelFormat pixel_format) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -34,10 +34,10 @@ package org.lwjgl.opengl;
|
|||
import java.nio.ByteBuffer;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class LinuxPeerInfo extends PeerInfo {
|
||||
public LinuxPeerInfo() {
|
||||
|
|
|
|||
|
|
@ -34,10 +34,10 @@ package org.lwjgl.opengl;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class MacOSXAWTGLCanvasPeerInfo extends MacOSXCanvasPeerInfo {
|
||||
private final AWTGLCanvas canvas;
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import java.awt.GraphicsDevice;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class MacOSXCanvasImplementation implements AWTCanvasImplementation {
|
||||
public PeerInfo createPeerInfo(AWTGLCanvas canvas, PixelFormat pixel_format) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class MacOSXCanvasPeerInfo extends MacOSXPeerInfo {
|
||||
private final AWTSurfaceLock awt_surface = new AWTSurfaceLock();
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class MacOSXContextImplementation implements ContextImplementation {
|
||||
public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.awt.Canvas;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class MacOSXDisplayPeerInfo extends MacOSXCanvasPeerInfo {
|
||||
private boolean locked = false;
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class MacOSXPbufferPeerInfo extends MacOSXPeerInfo {
|
||||
public MacOSXPbufferPeerInfo(int width, int height, PixelFormat pixel_format) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class MacOSXPeerInfo extends PeerInfo {
|
||||
public MacOSXPeerInfo(PixelFormat pixel_format, boolean use_display_bpp, boolean support_window, boolean support_pbuffer, boolean double_buffered) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -34,12 +34,12 @@ package org.lwjgl.opengl;
|
|||
import org.lwjgl.opengl.glu.GLU;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p/>
|
||||
* Thrown by the debug build library of the LWJGL if any OpenGL operation causes an error.
|
||||
*
|
||||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class OpenGLException extends RuntimeException {
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ import org.lwjgl.LWJGLUtil;
|
|||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p/>
|
||||
* Pbuffer encapsulates an OpenGL pbuffer.
|
||||
* <p/>
|
||||
|
|
@ -48,6 +47,7 @@ import org.lwjgl.Sys;
|
|||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public final class Pbuffer implements Drawable {
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import org.lwjgl.LWJGLException;
|
|||
import org.lwjgl.LWJGLUtil;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class PeerInfo {
|
||||
private final ByteBuffer handle;
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class Win32AWTGLCanvasPeerInfo extends Win32PeerInfo {
|
||||
private final AWTGLCanvas canvas;
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import java.awt.GraphicsDevice;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class Win32CanvasImplementation implements AWTCanvasImplementation {
|
||||
static {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class Win32ContextImplementation implements ContextImplementation {
|
||||
public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class Win32DisplayPeerInfo extends Win32PeerInfo {
|
||||
public Win32DisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import java.nio.IntBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
final class Win32PbufferPeerInfo extends Win32PeerInfo {
|
||||
public Win32PbufferPeerInfo(int width, int height, PixelFormat pixel_format, IntBuffer pixelFormatCaps, IntBuffer pBufferAttribs) throws LWJGLException {
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ import java.nio.IntBuffer;
|
|||
import org.lwjgl.LWJGLException;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* @author elias_naur <elias_naur@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
abstract class Win32PeerInfo extends PeerInfo {
|
||||
public Win32PeerInfo() {
|
||||
|
|
|
|||
|
|
@ -36,12 +36,12 @@ import org.lwjgl.opengl.Display;
|
|||
import org.lwjgl.opengl.DisplayMode;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Test class for Display & DisplayMode
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class DisplayTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -37,12 +37,12 @@ import org.lwjgl.Sys;
|
|||
import org.lwjgl.opengl.Display;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Test class for Sys
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class SysTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -42,11 +42,11 @@ import org.lwjgl.devil.ILUT;
|
|||
import org.lwjgl.devil.ILinfo;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <p>The core DevIL and ILU API.</p>
|
||||
*
|
||||
* @author Mark Bernard <captainjester@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class BasicTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ import org.lwjgl.fmod3.FSound;
|
|||
import org.lwjgl.fmod3.FSoundStream;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class CDDAPlayer {
|
||||
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ import org.lwjgl.fmod3.FMODException;
|
|||
import org.lwjgl.fmod3.FSound;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class CDPlayer {
|
||||
|
||||
|
|
|
|||
|
|
@ -44,10 +44,10 @@ import org.lwjgl.fmod3.callbacks.FSoundDSPCallback;
|
|||
import org.lwjgl.fmod3.callbacks.FSoundStreamCallback;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class DSPTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ import org.lwjgl.fmod3.FMusicModule;
|
|||
import org.lwjgl.fmod3.FSound;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class MusicPlayer {
|
||||
|
||||
|
|
|
|||
|
|
@ -61,10 +61,10 @@ import org.lwjgl.fmod3.FSound;
|
|||
import org.lwjgl.fmod3.FSoundStream;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class NetTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ import org.lwjgl.fmod3.FSound;
|
|||
import org.lwjgl.fmod3.FSoundStream;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class StreamPlayer {
|
||||
|
||||
|
|
|
|||
|
|
@ -42,10 +42,10 @@ import org.lwjgl.fmod3.FSound;
|
|||
import org.lwjgl.fmod3.FSoundStream;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class StreamPlayerMemory {
|
||||
|
||||
|
|
|
|||
|
|
@ -39,10 +39,10 @@ import org.lwjgl.fmod3.FMODException;
|
|||
import org.lwjgl.fmod3.FSound;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class StreamTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -44,10 +44,10 @@ import org.lwjgl.fmod3.FSound;
|
|||
import org.lwjgl.fmod3.callbacks.FMusicCallback;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class SyncTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -42,10 +42,10 @@ import org.lwjgl.fmod3.FSoundStream;
|
|||
import org.lwjgl.fmod3.FSoundTagField;
|
||||
|
||||
/**
|
||||
* $Id$ <br>
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$ <br>
|
||||
*/
|
||||
public class TagFieldTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -44,12 +44,12 @@ import org.lwjgl.opengl.GL11;
|
|||
import org.lwjgl.opengl.glu.GLU;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
*
|
||||
* Tests switching between windowed and fullscreen - including hardware cursor test
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class HWCursorTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -39,12 +39,12 @@ import org.lwjgl.opengl.glu.GLU;
|
|||
import org.lwjgl.util.vector.Vector2f;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Keyboard test
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class KeyboardTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -39,12 +39,12 @@ import org.lwjgl.opengl.GL11;
|
|||
import org.lwjgl.util.vector.Vector2f;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Mouse test
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class MouseCreationTest {
|
||||
/** position of quad to draw */
|
||||
|
|
|
|||
|
|
@ -40,12 +40,12 @@ import org.lwjgl.util.vector.Vector2f;
|
|||
import org.lwjgl.util.vector.Vector3f;
|
||||
|
||||
/**
|
||||
* $Id$
|
||||
* <br>
|
||||
* Mouse test
|
||||
*
|
||||
* @author Brian Matzon <brian@matzon.dk>
|
||||
* @version $Revision$
|
||||
* $Id$
|
||||
*/
|
||||
public class MouseTest {
|
||||
/** Direction mouse has moved */
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue