mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-07 07:24:20 +00:00
Added private constructors to OpenAL and OpenGL static classes
This commit is contained in:
parent
c46ad444ea
commit
5966d7b6b6
108 changed files with 336 additions and 105 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue