From 43ff833d9904e6c19bc53a81f1557921faeefafd Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Mon, 28 Apr 2003 16:41:39 +0000 Subject: [PATCH] Fixed a typo --- src/java/org/lwjgl/opengl/CoreGLConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/lwjgl/opengl/CoreGLConstants.java b/src/java/org/lwjgl/opengl/CoreGLConstants.java index df7f8c3d..8f3a0cb7 100644 --- a/src/java/org/lwjgl/opengl/CoreGLConstants.java +++ b/src/java/org/lwjgl/opengl/CoreGLConstants.java @@ -1166,7 +1166,7 @@ public interface CoreGLConstants { /* ClientAttribMask */ public static final int CLIENT_PIXEL_STORE_BIT = 0x00000001; public static final int CLIENT_VERTEX_ARRAY_BIT = 0x00000002; - public static final int CLIENT_ALL_ATTRIB_BITS = 0xffffffff; + public static final int ALL_CLIENT_ATTRIB_BITS = 0xffffffff; /* polygon_offset */ public static final int POLYGON_OFFSET_FACTOR = 0x8038;