From 2c35779129e50fbf9ed6a7ab793ff64dfd3a670d Mon Sep 17 00:00:00 2001 From: Ioannis Tsakpinis Date: Sat, 1 May 2010 09:19:00 +0000 Subject: [PATCH] Fixed PolygonStipple check. --- src/templates/org/lwjgl/opengl/GL11.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/org/lwjgl/opengl/GL11.java b/src/templates/org/lwjgl/opengl/GL11.java index 59515365..de7b60b5 100644 --- a/src/templates/org/lwjgl/opengl/GL11.java +++ b/src/templates/org/lwjgl/opengl/GL11.java @@ -1147,7 +1147,7 @@ public interface GL11 { String glGetString(int name); @DeprecatedGL - void glGetPolygonStipple(@OutParameter @BufferObject(BufferKind.PackPBO) @Check("1024") @GLubyte ByteBuffer mask); + void glGetPolygonStipple(@OutParameter @BufferObject(BufferKind.PackPBO) @Check("128") @GLubyte ByteBuffer mask); @DeprecatedGL boolean glIsList(@GLuint int list); @@ -1252,7 +1252,7 @@ public interface GL11 { void glMatrixMode(@GLenum int mode); @DeprecatedGL - void glPolygonStipple(@BufferObject(BufferKind.UnpackPBO) @Check("1024") @Const @GLubyte ByteBuffer mask); + void glPolygonStipple(@BufferObject(BufferKind.UnpackPBO) @Check("128") @Const @GLubyte ByteBuffer mask); void glPolygonOffset(float factor, float units);