summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-01-22 18:47:23 -0700
committerBrian Paul <brianp@vmware.com>2010-01-22 18:47:25 -0700
commit2292c93bc0f703d1ebdc2b79b5f525efebe21f1c (patch)
tree937263778240fa5b529c4985e42feabbd2826f10 /src/mesa
parentf6a49ac21721353948b03cf3ca3b5aa5c87e59e6 (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')
-rw-r--r--src/mesa/glapi/glapi_nop.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/glapi/glapi_nop.c b/src/mesa/glapi/glapi_nop.c
index e45faef72d..0c53bd8a3f 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"