diff options
author | Brian Paul <brianp@vmware.com> | 2009-05-12 13:23:56 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-05-12 13:23:56 -0600 |
commit | 38fb77fdf246da69ec4d65d2c95a083810b55d96 (patch) | |
tree | cad43ccc49d21ecca6d6a8ff160c307dfb9bd855 | |
parent | 272572afd248838aa0e62c1dd208242a83c9bd54 (diff) |
mesa: add typedef for GLfixed
-rw-r--r-- | src/mesa/main/varray.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index a9c9162be1..509feedaf6 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -35,6 +35,11 @@ #include "glapi/dispatch.h" +#if FEATURE_fixedpt +typedef GLint GLfixed; +#endif + + /** * Update the fields of a vertex array object. * We need to do a few special things for arrays that live in |