applied patch to move ID tag

This commit is contained in:
Brian Matzon 2006-03-23 19:32:21 +00:00
parent 0c539252b4
commit 8a3bee6b1c
244 changed files with 246 additions and 251 deletions

View file

@ -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! */

View file

@ -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 {

View file

@ -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 */

View file

@ -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 {

View file

@ -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 {

View file

@ -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;

View file

@ -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 {

View file

@ -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() {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {
/**

View file

@ -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 {
}

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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

View file

@ -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;

View file

@ -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;

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 */

View file

@ -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 {

View file

@ -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 */

View file

@ -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 */

View file

@ -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 */

View file

@ -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 */

View file

@ -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 {

View file

@ -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 */

View file

@ -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 */

View file

@ -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 {

View file

@ -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 */

View file

@ -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);

View file

@ -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);

View file

@ -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 {

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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 {

View file

@ -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 {
/**

View file

@ -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? */

View file

@ -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. */

View file

@ -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 */

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {
/**

View file

@ -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;

View file

@ -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 {

View file

@ -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 {
/**

View file

@ -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 {
/**

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {
/**

View file

@ -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 {

View file

@ -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;

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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() {

View file

@ -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;

View file

@ -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 {

View file

@ -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();

View file

@ -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 {

View file

@ -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;

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {
/**

View file

@ -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;

View file

@ -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;

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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() {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 */

View file

@ -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