glx: fix correct sizeof GL unsigned int
Signed-off-by: Herman Semenov <GermanAizek@yandex.ru>
This commit is contained in:
parent
4e1515f793
commit
604582d179
|
@ -347,7 +347,7 @@ __glXTypeSize(GLenum enm)
|
|||
case GL_INT:
|
||||
return sizeof(GLint);
|
||||
case GL_UNSIGNED_INT:
|
||||
return sizeof(GLint);
|
||||
return sizeof(GLuint);
|
||||
case GL_FLOAT:
|
||||
return sizeof(GLfloat);
|
||||
case GL_DOUBLE:
|
||||
|
|
Loading…
Reference in New Issue