summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/es_generator.py
diff options
context:
space:
mode:
authorThierry Reding <[email protected]>2011-05-22 14:07:22 +0200
committerJosé Fonseca <[email protected]>2011-05-23 16:19:44 +0100
commit5af46e836073d2112b147b524e441bdb808cc128 (patch)
tree9c8b4b2fb5391fb13cef10ef9da5b21dd7f65341 /src/mesa/main/es_generator.py
parente8b1c6d6f55f5be3bef25084fdd8b6127517e137 (diff)
mesa: Fix remap_table setup.
Since the SET_xxx and GET_xxx macros used to initialize the remap_table have been replaced by inline functions, the missing late macro expansion leads to driDispatchRemapTable not being redefined to remap_table, which in turn causes the remap_table not to be setup properly. This commit fixes the issue by moving the table redefinition after the definition of driDispatchRemapTable but in front of the inline function definitions.
Diffstat (limited to 'src/mesa/main/es_generator.py')
-rw-r--r--src/mesa/main/es_generator.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/es_generator.py b/src/mesa/main/es_generator.py
index a56debe0170..87d8bd31682 100644
--- a/src/mesa/main/es_generator.py
+++ b/src/mesa/main/es_generator.py
@@ -687,10 +687,6 @@ print """
#define need_MESA_remap_table
#include "%sapi/main/remap_helper.h"
-/* force SET_* macros to use the local remap table */
-#define driDispatchRemapTable remap_table
-static int remap_table[driDispatchRemapTable_size];
-
static void
init_remap_table(void)
{