dispatch: Make all API functions non-static.
authorPaul Berry <stereotype441@gmail.com>
Fri, 19 Oct 2012 16:47:11 +0000 (09:47 -0700)
committerPaul Berry <stereotype441@gmail.com>
Tue, 6 Nov 2012 20:57:43 +0000 (12:57 -0800)
commitf7fa946d1da96178e63e42dd8d8739d3e0f66e1d
treee240af31b8c793bbbc965148177523a56e17d500
parente41d1a4e746775efa8c5f6bb72b8781417cb0ec0
dispatch: Make all API functions non-static.

Some of the functions that we store in the dispatch table are declared
as non-static in their .c files and are inserted into the dispatch
table directly by _mesa_create_exec_table().  Other functions are
declared as static, and are inserted into the dispatch table by a
dedicated function that lives in the same .c file
(e.g. _mesa_loopback_init_api_table() in api_loopback.c).

This patch makes all of these functions non-static, and creates
appropriate prototypes for them, so that in future patches we can
populate the entire dispatch table using a single code-generated
function.

Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
34 files changed:
src/mesa/main/accum.c
src/mesa/main/accum.h
src/mesa/main/api_loopback.c
src/mesa/main/api_loopback.h
src/mesa/main/bufferobj.c
src/mesa/main/bufferobj.h
src/mesa/main/colortab.c
src/mesa/main/colortab.h
src/mesa/main/convolve.c
src/mesa/main/convolve.h
src/mesa/main/dlist.c
src/mesa/main/dlist.h
src/mesa/main/drawpix.c
src/mesa/main/drawpix.h
src/mesa/main/errors.c
src/mesa/main/errors.h
src/mesa/main/eval.c
src/mesa/main/eval.h
src/mesa/main/feedback.c
src/mesa/main/feedback.h
src/mesa/main/histogram.c
src/mesa/main/histogram.h
src/mesa/main/pixel.c
src/mesa/main/pixel.h
src/mesa/main/queryobj.c
src/mesa/main/queryobj.h
src/mesa/main/rastpos.c
src/mesa/main/rastpos.h
src/mesa/main/samplerobj.c
src/mesa/main/samplerobj.h
src/mesa/main/texgen.c
src/mesa/main/texgen.h
src/mesa/main/uniforms.c
src/mesa/main/uniforms.h