Fixed PolygonStipple check.

This commit is contained in:
Ioannis Tsakpinis 2010-05-01 09:19:00 +00:00
parent 4dcf4df209
commit 2c35779129
1 changed files with 2 additions and 2 deletions

View File

@ -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);