Added private constructors to OpenAL and OpenGL static classes

This commit is contained in:
Elias Naur 2004-07-31 09:34:09 +00:00
parent c46ad444ea
commit 5966d7b6b6
108 changed files with 336 additions and 105 deletions

View file

@ -40,8 +40,7 @@ import java.nio.ShortBuffer;
import org.lwjgl.LWJGLException;
import org.lwjgl.BufferChecks;
public final class ARBTextureCompression
{
public final class ARBTextureCompression {
public static final int GL_COMPRESSED_ALPHA_ARB = 0x84E9;
public static final int GL_COMPRESSED_LUMINANCE_ARB = 0x84EA;
public static final int GL_COMPRESSED_LUMINANCE_ALPHA_ARB = 0x84EB;
@ -54,6 +53,9 @@ public final class ARBTextureCompression
public static final int GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A2;
public static final int GL_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A3;
private ARBTextureCompression() {
}
static native void initNativeStubs() throws LWJGLException;
public static void glCompressedTexImage1DARB(int target, int level, int internalformat, int width, int border, int imageSize, ByteBuffer pData) {