Bug 901495 - GLintptr should be intptr_t, not ptrdiff_t - r=jrmuizel

This commit is contained in:
Benoit Jacob 2013-08-12 23:55:28 +02:00
parent 104993c045
commit c80763d882

View File

@ -10,6 +10,7 @@
#define __gl_h_
#include <stddef.h>
#include <stdint.h>
typedef unsigned int GLenum;
typedef unsigned int GLbitfield;
@ -31,8 +32,8 @@ typedef void GLvoid;
typedef char GLchar;
#ifndef __gl2_h_
typedef ptrdiff_t GLsizeiptr;
typedef ptrdiff_t GLintptr;
typedef intptr_t GLsizeiptr;
typedef intptr_t GLintptr;
#endif
#endif /* #if !defined(__gltypes_h_) && !defined(__gl_h_) */