summaryrefslogtreecommitdiff
path: root/src/mesa/main/es_generator.py
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-10-26 16:16:14 +0800
committerChia-I Wu <olv@lunarg.com>2010-11-02 14:17:56 +0800
commitfdede1efaae32d23caf3b351cc766df12e3c5f8d (patch)
tree6ed18ed5ab8fc375b5cc9aed1d5f8d22422b8b79 /src/mesa/main/es_generator.py
parent6b999c89ce1a5bf2d5e8533929b8f2101beaa481 (diff)
mesa: Select FEATURE_remap_table when multiple APIs are enabled.
Core mesa should query glapi for the positions of the functions in _glapi_table when multiple APIs are supported. It does not know which glapitable.h glapi used.
Diffstat (limited to 'src/mesa/main/es_generator.py')
-rw-r--r--src/mesa/main/es_generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/es_generator.py b/src/mesa/main/es_generator.py
index 8f28da16df..bd25acd07c 100644
--- a/src/mesa/main/es_generator.py
+++ b/src/mesa/main/es_generator.py
@@ -212,7 +212,7 @@ extern void _mesa_error(void *ctx, GLenum error, const char *fmtString, ... );
#include "main/remap.h"
/* cannot include main/dispatch.h here */
-#ifdef IN_DRI_DRIVER
+#if FEATURE_remap_table
#define _GLAPI_USE_REMAP_TABLE
#endif
/* glapi uses GLAPIENTRY while GLES headers define GL_APIENTRY */