diff options
author | Chia-I Wu <[email protected]> | 2011-06-08 22:24:32 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-06-08 23:19:01 +0800 |
commit | 4bb748b609288205ddea750550185d7642025bff (patch) | |
tree | 30b031eaaccb8ee29b25ffad9916422706377f9b /src/mapi/glapi/gen-es/Makefile | |
parent | 0dc45374f2c62e33680f3a5729a18ba9ee40cd4d (diff) |
mesa: merge glapidispatch.h into dispatch.h
glapidispatch.h was located in glapi and shared with mesa core. Because
the way it was shared, mesa core must include it indirectly via
main/dispatch.h.
Now that it is no longer needed by glapi and is located in core mesa,
merging it with main/dispatch.h to avoid wrong uses.
Diffstat (limited to 'src/mapi/glapi/gen-es/Makefile')
-rw-r--r-- | src/mapi/glapi/gen-es/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen-es/Makefile b/src/mapi/glapi/gen-es/Makefile index 7a5bb35ca11..bf66ec037cf 100644 --- a/src/mapi/glapi/gen-es/Makefile +++ b/src/mapi/glapi/gen-es/Makefile @@ -5,7 +5,7 @@ include $(TOP)/configs/current OUTPUTS := \ glapi_mapi_tmp.h \ - main/glapidispatch.h \ + main/dispatch.h \ main/remap_helper.h COMMON = gl_and_es_API.xml gl_XML.py glX_XML.py license.py typeexpr.py @@ -57,7 +57,7 @@ endef $(PYTHON2) $(PYTHON_FLAGS) $< \ --printer $(PRINTER) --mode lib $(GLAPI)/gl_and_es_API.xml > $@ -%/main/glapidispatch.h: $(GLAPI)/gl_table.py $(COMMON) +%/main/dispatch.h: $(GLAPI)/gl_table.py $(COMMON) $(call gen-glapi,-c -m remap_table) %/main/remap_helper.h: $(GLAPI)/remap_helper.py $(COMMON) |