diff options
author | Emil Velikov <[email protected]> | 2017-12-07 17:07:38 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-01-25 17:42:50 +0000 |
commit | 3e3956d6ae7f2b49bf9cc08b2882bb18540a6030 (patch) | |
tree | 513243c7965139bf6b768d65dc0d504bb5893829 | |
parent | 647f40298aa877ccd65818e8fb4495fc9f9a2dce (diff) |
mapi: remove duplicate GL typedefs
Remove the instances already available in gl.h or glext.h.
Sadly GLclampx is only available in GLES(1) so we need to keep that one.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r-- | src/mapi/glapi/glapi_priv.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mapi/glapi/glapi_priv.h b/src/mapi/glapi/glapi_priv.h index 0e584f4be96..ddfc594a979 100644 --- a/src/mapi/glapi/glapi_priv.h +++ b/src/mapi/glapi/glapi_priv.h @@ -31,15 +31,8 @@ #include "GL/gl.h" #include "GL/glext.h" -#ifndef GL_OES_fixed_point -typedef int GLfixed; -#endif typedef int GLclampx; -#ifndef GL_OES_EGL_image -typedef void *GLeglImageOES; -#endif - #include "glapi/glapi.h" |