summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/remap.h
Commit message (Collapse)AuthorAgeFilesLines
* mesa: make _mesa_map_function_spec() staticEmil Velikov2016-06-131-3/+0
| | | | | | | Used only locally. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
* mesa: remove used _mesa_get_function_spec() and gl_function_remapEmil Velikov2016-06-131-9/+0
| | | | | | | Final user was killed with last commit. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
* mesa: remove unused _mesa_map_function_array()Emil Velikov2016-06-131-3/+0
| | | | | | | | Unused as of commit 5a175127f38 ("dri: Remove all extension enabling utility functions") and the patch before the previous patch. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
* mesa: remove unused function _mesa_map_static_functions()Emil Velikov2016-06-131-3/+0
| | | | | | | | Unused as of commit 5a175127f38 ("dri: Remove all extension enabling utility functions") Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
* mesa: trim down includes of compiler.hBrian Paul2015-03-021-2/+0
| | | | | | | In some cases, glheader.h is the right #include. Also remove some instances of struct _glapi_table declarations. Acked-by: Matt Turner <mattst88@gmail.com>
* mesa: remove outdated version lines in commentsRico Schüller2013-06-051-1/+0
| | | | Signed-off-by: Brian Paul <brianp@vmware.com>
* mesa: remove #include "mfeatures.h" from numerous source filesBrian Paul2013-04-171-1/+0
| | | | | | None of the remaining FEATURE_x symbols in mfeatures.h are used anymore. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
* mesa: remove FEATURE_remap_table from remap.[ch]Brian Paul2013-04-171-34/+0
| | | | | | It was always defined. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
* mesa: s/INLINE/inline/Brian Paul2011-10-011-5/+5
| | | | | | | INLINE is still seen in some files (some generated files, etc) but this is a good start. Acked-by: Kenneth Graunke <kenneth@whitecape.org>
* mesa: Allow contexts of different APIs to coexist.Chia-I Wu2010-11-021-44/+0
| | | | | | | | | | | | | | | | | | This effectively redoes 1741ddb747ca0be284315adb4b6fe67ddf292d03 in a way that allows contexts of different APIs to coexist. First, the changes to the remap table are reverted. The remap table (driDispatchRemapTable) is always initialized in the same way regardless of the context API. es_generator.py is updated to use a local remap table, whose sole purpose is to help initialize its dispatch table. The local remap table and the global one are always different, as they use different glapidispatch.h. But the dispatch tables initialized by both remap tables are always compatible with glapi (libGL.so). Finally, the semantics of one_time_init are changed to per-api one-time initialization.
* mesa: Include missing header in remap.h.Vinson Lee2010-07-311-0/+1
| | | | Include compiler.h for INLINE symbol.
* mesa: Move api_exec_es*.c into mesa/mainKristian Høgsberg2010-04-271-0/+33
| | | | | This requires renaming a few functions to have unique names so that they can all live within the same driver.
* mesa: Move references to main/remap_helper.h to api_exec.cKristian Høgsberg2010-04-271-6/+26
|
* Fix copyright headers.Chia-I Wu2010-04-101-5/+6
| | | | | | Update the warranty disclaimer to use the more general "THE AUTHORS OR COPYRIGHT HOLDERS". This is done manually on files created by me. Hope that I do not miss anything.
* mesa/main: Add support for remap table.Chia-I Wu2009-10-231-0/+87
This commit only adds the source files. It is supposed to replace the remap table in DRI drivers. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>