dispatch: Include GLES1-only functions in dispatch table.
authorPaul Berry <stereotype441@gmail.com>
Tue, 23 Oct 2012 20:46:04 +0000 (13:46 -0700)
committerPaul Berry <stereotype441@gmail.com>
Thu, 1 Nov 2012 18:23:22 +0000 (11:23 -0700)
commitdd3218d73b3ffba98b885709ef086577e7cb8594
treebf414164a364b8ac200d913d21fcffcca296d1e7
parent571d5c353a6f801c7a6ce2dd323152e5a2dbf052
dispatch: Include GLES1-only functions in dispatch table.

Previously dispatch table-related code was generated from gl_API.xml,
so it did not include slots for GLES1-only functions (such as those
taking fixed-point arguments).

This patch generates dispatch table-related code from
gl_and_es_API.xml, so that GLES1-only functions are included.  This
paves the way for future patches that will unify the GLES1 dispatch
table with the dispatch tables for the other APIs.

The following generated files are affected:
- glapi_x86.S
- glapi_x86-64.S
- glapi_sparc.S
- glprocs.h
- glapitemp.h
- glapitable.h
- glapi_gentable.c
- dispatch.h
- remap_helper.h

Since this change affects makefiles, a full rebuild is required.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
v2: Adjust dependencies to ensure that generated files will be rebuilt
whenever any ES-related XML source files are changed.

Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
src/mapi/glapi/SConscript
src/mapi/glapi/gen/Makefile.am
src/mapi/glapi/gen/SConscript