aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/glapi/gen
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'gles2-2'Kristian Høgsberg2010-05-023-23/+21
|\ | | | | | | | | Conflicts: src/mesa/drivers/dri/common/dri_util.h
| * glapi: Update gl_enum.py to generate enum tables for multiple APIsKristian Høgsberg2010-04-282-13/+19
| |
| * mesa: Move references to main/remap_helper.h to api_exec.cKristian Høgsberg2010-04-271-10/+2
| |
* | Add missing _ in extension category nameIan Romanick2010-04-271-1/+1
|/
* glapi: GL 3.x xml fileBrian Paul2010-04-191-0/+581
| | | | | Some of the entrypoints defined in other .xml files will need to be removed in favor of these...
* glapi: plug in ARB_draw_instanced.xmlBrian Paul2010-04-042-0/+3
|
* glapi: ARB_draw_instanced.xml fileBrian Paul2010-04-041-0/+69
|
* glapi: include/build EXT_transform_feedback.xmlBrian Paul2010-04-022-0/+3
|
* glapi: new EXT_transform_feedback.xml fileBrian Paul2010-04-021-0/+123
|
* glapi: fix error messageBrian Paul2010-04-021-1/+1
|
* glapi: Fix aliases to non-static functions.Chia-I Wu2010-03-211-1/+1
| | | | | | | The bug is triggered by 41a87a43e11c664935349f938022d58d3e22da4e. glBlitFramebuffer, for example, is an alias to the non-static glBlitFramebufferEXT. We should define glBlitFramebuffer as an alias to _dispatch_stub_NNN.
* glapi: Correctly generate static disatches for X86.Chia-I Wu2010-03-201-2/+2
| | | | | The entry point names, instead of the function name, should be used to test if the entry point should be statically dispatched.
* APPLE_object_purgeable: xmlChris Wilson2010-03-043-0/+39
| | | | Signed-off-by: Chris Wilson <[email protected]>
* Fix unmatched parenthesis introduce by previous commitsIan Romanick2010-03-031-1/+1
| | | | | | | | I wasn't careful enough when removing support for GCC versions earlier than 3.3.0. I could have sworn that I compile tested before pushing, but apparently not. FAIL. Signed-off-by: Ian Romanick <[email protected]>
* Remove support for GCC older than 3.3.0 from generator scriptsIan Romanick2010-03-033-4/+4
| | | | Signed-off-by: Ian Romanick <[email protected]>
* glapi: drop SOLARIS_THREADSGeorge Sapountzis2010-03-012-2/+2
| | | | It seems that SOLARIS_THREADS is not used and does not work.
* glapi/gen: just copy in glx/glapiGeorge Sapountzis2010-02-251-23/+21
|
* mesa: Move src/mesa/glapi/dispatch.h to mesa.Chia-I Wu2010-02-252-2/+2
| | | | | | glapi/dispatch.h is a core Mesa header file. Move the header file to main/ to make this clear. It also becomes clear after this change that IN_DRI_DRIVER is only used in core Mesa to enable the remap table.
* glapi: Generated GLX sources should use glapidispatch.h.Chia-I Wu2010-02-252-2/+2
| | | | Fix glX_proto_recv.py and glX_proto_send.py, and regenerate the sources.
* glapi: Add GL_OES_EGL_imageKristian Høgsberg2010-02-243-1/+24
|
* glapi: fix code generation Makefile after mvGeorge Sapountzis2010-02-241-73/+118
|
* glapi: mv code generation to subdirGeorge Sapountzis2010-02-2442-0/+21750
This just moves files, code generation Makefile will be fixed in next commit for easier review.