diff options
author | Brian Paul <[email protected]> | 2010-01-22 18:47:23 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-22 18:47:25 -0700 |
commit | 2292c93bc0f703d1ebdc2b79b5f525efebe21f1c (patch) | |
tree | 937263778240fa5b529c4985e42feabbd2826f10 /src/mesa/glapi | |
parent | f6a49ac21721353948b03cf3ca3b5aa5c87e59e6 (diff) |
glapi: define GLfixed, GLclampx types for ES 1
I'm not 100% sure this is the best fix, but it seems OK.
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/glapi_nop.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/glapi/glapi_nop.c b/src/mesa/glapi/glapi_nop.c index e45faef72d4..0c53bd8a3f6 100644 --- a/src/mesa/glapi/glapi_nop.c +++ b/src/mesa/glapi/glapi_nop.c @@ -87,4 +87,11 @@ NoOpUnused(void) #define UNUSED_TABLE_NAME __unused_noop_functions +/* + * Types needed when generating ES 1 functions. + */ +typedef int GLfixed; +typedef int GLclampx; + + #include "glapi/glapitemp.h" |