diff options
author | Tapani Pälli <[email protected]> | 2012-10-02 14:50:31 +0300 |
---|---|---|
committer | Chad Versace <[email protected]> | 2012-10-12 11:42:09 -0700 |
commit | 60565b564bc969ce47fb8417c79050c261e5aec9 (patch) | |
tree | 8a45d9ac5c86f8cff3ff37465d6f5af3ab996cf7 /src/mesa/Android.gen.mk | |
parent | bf2edc776b02a2a63862bf69a23adf666ecfcc57 (diff) |
android: generate matching remap_helper to dispatch table
commit a010215463c63680c69e90202fe3fcd2e5b25fa6 removed ES2 specific dispatch
table and remap_helper, since now we are using dispatch.h which is generated
from gl_and_es_API.xml we need to generate a matching remap_helper using the
same xml.
Note: This is a candidate for the 9.0 branch.
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/Android.gen.mk')
-rw-r--r-- | src/mesa/Android.gen.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Android.gen.mk b/src/mesa/Android.gen.mk index a8e4f356464..893fa41991a 100644 --- a/src/mesa/Android.gen.mk +++ b/src/mesa/Android.gen.mk @@ -137,7 +137,7 @@ $(intermediates)/main/dispatch.h: $(es_hdr_deps) $(call es-gen, $* -m remap_table) $(intermediates)/main/remap_helper.h: PRIVATE_SCRIPT := $(MESA_PYTHON2) $(glapi)/remap_helper.py -$(intermediates)/main/remap_helper.h: PRIVATE_XML := -f $(glapi)/gl_API.xml +$(intermediates)/main/remap_helper.h: PRIVATE_XML := -f $(glapi)/gl_and_es_API.xml $(intermediates)/main/remap_helper.h: $(es_hdr_deps) $(call es-gen, $*) |