Made glBitmap buffer parameter nullable.

This commit is contained in:
Ioannis Tsakpinis 2013-03-22 21:31:22 +02:00
parent 5738477a7b
commit ead1abc2b8
1 changed files with 1 additions and 1 deletions

View File

@ -742,7 +742,7 @@ public interface GL11 {
@DeprecatedGL
void glBitmap(@GLsizei int width, @GLsizei int height, float xorig, float yorig, float xmove, float ymove,
@BufferObject(BufferKind.UnpackPBO)
@Check("(((width + 7)/8)*height)")
@Check(value = "(((width + 7)/8)*height)", canBeNull = true)
@Const
@GLubyte ByteBuffer bitmap);