diff options
author | Brian Nguyen <brnguyen@nvidia.com> | 2013-11-24 14:22:15 -0800 |
---|---|---|
committer | brnguyen <brnguyen@nvidia.com> | 2013-11-25 15:32:11 -0800 |
commit | 09300ed6b1b828d5878761c63523da73e0dc02db (patch) | |
tree | e156524b14e2596105a2d9cb1adcf4bcf172d865 /include | |
parent | d076d453585cd1e3f89adae290b2c8bc8d1cb866 (diff) |
Remove redundant GLfixed typedef
This typedef is already defined in GL/glext.h and GLES/gl.h; including
this redundant typedef may lead to build errors.
Signed-off-by: Brian Nguyen <brnguyen@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/glheader.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/glheader.h b/include/glheader.h index e93ca30..2ae24ea 100644 --- a/include/glheader.h +++ b/include/glheader.h @@ -60,9 +60,8 @@ extern "C" { /** - * GL_FIXED is defined in glext.h version 64 but these typedefs aren't (yet). + * GL_FIXED is defined in glext.h version 64 but this typedef isn't (yet). */ -typedef int GLfixed; typedef int GLclampx; |