opengl.cfg: Fix size of 64 bit types.

This commit is contained in:
versat 2019-03-12 16:09:08 +01:00
parent 1b74bca973
commit 0a57b76c79
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@
<podtype name="GLint" sign="s" size="4"/>
<podtype name="GLuint" sign="u" size="4"/>
<!-- TODO: GLfixed -->
<podtype name="GLint64" sign="s" size="4"/>
<podtype name="GLuint64" sign="u" size="4"/>
<podtype name="GLint64" sign="s" size="8"/>
<podtype name="GLuint64" sign="u" size="8"/>
<podtype name="GLsizei" sign="u" size="4"/>
<podtype name="GLenum" sign="u" size="4"/>
<!-- TODO: GLintptr -->