mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:15:36 +00:00
29 lines
650 B
Plaintext
29 lines
650 B
Plaintext
# ARB and NV types (these should come before normal types to guard against double translation).
|
|
GLsizeiptrARB, IntPtr
|
|
GLintptrARB, IntPtr
|
|
GLhandleARB, Int32 #UInt32
|
|
GLhalfARB, Int16 #UInt16
|
|
GLhalfNV, Int16 #UInt16
|
|
GLcharARB, Char
|
|
|
|
# Normal types.
|
|
GLsizei, Int32
|
|
GLsizeiptr, IntPtr
|
|
GLintptr, IntPtr
|
|
GLenum, Int32
|
|
GLboolean, Boolean
|
|
GLbitfield, Int32 #UInt32
|
|
# GLvoid*, IntPtr
|
|
# GLvoid, void
|
|
GLchar, Char
|
|
GLbyte, Byte #SByte
|
|
GLubyte, Byte
|
|
GLshort, Int16
|
|
GLushort, Int16 #UInt16
|
|
GLint, Int32
|
|
GLuint, Int32 #UInt32
|
|
GLfloat, Single
|
|
GLclampf, Single
|
|
GLdouble, Double
|
|
GLclampd, Double
|
|
GLstring, String |