diff options
author | Chia-I Wu <olv@lunarg.com> | 2010-03-31 12:44:26 +0800 |
---|---|---|
committer | Chia-I Wu <olv@lunarg.com> | 2010-05-12 12:30:22 +0800 |
commit | cc289e22213c5f5fe72602ce81db992bc8f7b1ad (patch) | |
tree | 759c035088d88d808704f43335c84dc0d01a318d /src/mesa/main/api_exec.c | |
parent | 1975208919a273018a2cda87e765870c5f86d01f (diff) |
mesa/es: Update sources.mak and fix the build.
Remove sources that are feature-aware from the omit list. x86 -O0 build
is ~12KiB smaller afther making those sources feature-aware.
Also, remove get.c from the omit list as get_es[12].c have been merged
to it.
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 8fa8887a6c9..ad18472dea3 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -107,6 +107,10 @@ #endif #include "main/dispatch.h" + +#if FEATURE_GL + + #ifdef _GLAPI_USE_REMAP_TABLE #define need_MESA_remap_table @@ -816,3 +820,5 @@ _mesa_create_exec_table(void) return exec; } + +#endif /* FEATURE_GL */ |