small cleanup

This commit is contained in:
Brian Matzon 2005-03-25 01:15:26 +00:00
parent ed3dacf6a3
commit 822013ef33
3 changed files with 9 additions and 7 deletions

View File

@ -50,10 +50,12 @@ import org.lwjgl.Sys;
/**
* $Id$
*
* <p>
* The core DevIL API.
* </p>
*
* @author captainjester <captainjester@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk>
* @version $Revision$
*/
public class IL {
@ -81,8 +83,6 @@ public class IL {
public static final int IL_VENDOR = 0x1F00;
// IL-specific public const's
public static final int IL_VERSION_1_6_0 = 1;
public static final int IL_VERSION = 160;
public static final int IL_LOAD_EXT = 0x1F01;
public static final int IL_SAVE_EXT = 0x1F02;
@ -301,8 +301,7 @@ public class IL {
public static final int IL_EOF = -1;
/** Have we been created? */
protected static boolean created;
protected static boolean created;
public static native boolean ilActiveImage(int Number);
public static native boolean ilActiveLayer(int Number);

View File

@ -44,8 +44,9 @@ import org.lwjgl.Sys;
/**
* $Id$
*
* <p>
* The DevIL ILU API.
* </p>
*
* @author captainjester <captainjester@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk>

View File

@ -42,8 +42,9 @@ import org.lwjgl.Sys;
/**
* $Id$
*
* <p>
* The DevIL ILUT API.
* </p>
*
* @author captainjester <captainjester@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk>
@ -83,6 +84,7 @@ public class ILUT {
public static final int ILUT_OPENGL = 0;
public static final int ILUT_VENDOR = IL.IL_VENDOR;
public static final int ILUT_VERSION_NUM = IL.IL_VERSION_NUM;
/** Have we been created? */
protected static boolean created;