summaryrefslogtreecommitdiffstats
path: root/src/mesa/glapi
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '7.8'Brian Paul2010-03-251-1/+2
|\
| * glapi: return int = 0 from NoOpGeneric()Brian Paul2010-03-251-1/+2
| | | | | | | | | | | | If a GL function is called w/out a current rendering context, this stub gets called. It should return 0 so that non-void-valued functions return 0/NULL instead of a random number.
* | Merge branch '7.8'Brian Paul2010-03-221-3/+3
|\| | | | | | | | | | | | | Conflicts: src/gallium/drivers/cell/ppu/cell_screen.c src/mesa/state_tracker/st_cb_drawpixels.c
| * 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.
* | glapi: fix assorted warningsBrian Paul2010-03-173-7/+10
| | | | | | | | | | And replace some instances of GLuint with unsigned int to avoid pulling in GL/gl.h
* | glapi: exec_malloc for dispatch stubsGeorge Sapountzis2010-03-144-8/+154
| |
* | glapi: this one should be by THREADGeorge Sapountzis2010-03-141-6/+4
| |
* | glapi: more organize code by archGeorge Sapountzis2010-03-141-4/+10
| | | | | | | | | | | | It seems that x86-64 with tls will fail to compile or load due to a missining gl_dispatch_functions_start symbol. Not changing though, since this is how it used to be and cannot test.
* | glapi: organize arch-specific code by arch (2)George Sapountzis2010-03-141-81/+73
| |
* | glapi: organize arch-specific code by archGeorge Sapountzis2010-03-141-19/+50
| |
* | glapi: fix bug with tls and relocsGeorge Sapountzis2010-03-101-0/+3
| | | | | | | | | | | | add_dispatch (driver) and maybe get_proc_address (client) may be called before set_dispatch is called, which results in generate_entrypoint using an unreloced function template.
* | glapi: these two should be ok for add_dispatch ...George Sapountzis2010-03-101-1/+5
| | | | | | | | | | | | - a function cannot be both static and extension, right ? - we should be setting the offset only if not already set, right ?
* | glapi: comments for _glapi_add_dispatchGeorge Sapountzis2010-03-101-6/+18
| |
* | glapi: minor cosmetic for _glapi_add_dispatchGeorge Sapountzis2010-03-101-10/+11
| |
* | glapi: add function set_entry_infoGeorge Sapountzis2010-03-101-3/+22
| |
* | glapi: parameter checking, failure paths, ... for add_function_nameGeorge Sapountzis2010-03-101-12/+26
| |
* | glapi: cosmetic for _glapi_add_dispatchGeorge Sapountzis2010-03-101-25/+32
| | | | | | | | | | | | | | - static vs. extension - indent - s/new_offset/static_offset/ - ...
* | glapi: use get_extension_proc in _glapi_add_dispatchGeorge Sapountzis2010-03-101-12/+8
| |
* | glapi: cosmetic for functions for static tableGeorge Sapountzis2010-03-101-26/+33
| | | | | | | | make similar to functions for extensions table
* | glapi: add function to find extension by nameGeorge Sapountzis2010-03-101-10/+21
| |
* | glapi: functions for extensions table similar to static tableGeorge Sapountzis2010-03-101-19/+50
| |
* | glapi: allow for any mangle prefixGeorge Sapountzis2010-03-091-2/+3
| |
* | glapi: split out arch-specific code for entrypointsGeorge Sapountzis2010-03-093-295/+356
| |
* | glapi: mv table functions to glapi_getproc.c and add local headerGeorge Sapountzis2010-03-094-66/+98
| |
* | drop stray XFree86Server, XGLServerGeorge Sapountzis2010-03-091-4/+4
|/
* APPLE_object_purgeable: autogenerated filesChris Wilson2010-03-045-353/+407
|
* 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-032-2/+2
| | | | | | | | 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 generated sourcesIan Romanick2010-03-031-1/+1
| | | | 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]>
* Remove support for GCC older than 3.3.0Ian Romanick2010-03-031-1/+1
| | | | Signed-off-by: Ian Romanick <[email protected]>
* glapi: minor cosmeticGeorge Sapountzis2010-03-031-3/+3
|
* glapi: drop condvarGeorge Sapountzis2010-03-031-45/+1
| | | | Seems unused and replaced by functionality in os module.
* glapi: fix compile with ESGeorge Sapountzis2010-03-022-1/+9
|
* glapi: Fix syntax.José Fonseca2010-03-011-1/+1
|
* glapi: drop SOLARIS_THREADSGeorge Sapountzis2010-03-014-103/+4
| | | | It seems that SOLARIS_THREADS is not used and does not work.
* glapi.c: misc coscmetic for FreeTSDGeorge Sapountzis2010-03-014-22/+48
| | | | | | | | - move out of of the dispatch/context block to after corresponding init functions - use more consistent naming with corresponding init functions - XXX use _glthread_InitTSD() vs (void)_glthread_GetTSD() in _glapi_check_multithread() XXX
* glapi.c: misc cosmeticGeorge Sapountzis2010-03-011-28/+33
| | | | | mainly, move the multithread check mutex out of the dispatch/context block, closer to where it is used.
* glapi.c: mv init_glapi_relocs to glapi_getproc.cGeorge Sapountzis2010-03-013-208/+196
|
* glapi.c: mv check_table to glapi_getproc.cGeorge Sapountzis2010-03-012-66/+67
|
* glapi.c: split check_table to not_null and get_procGeorge Sapountzis2010-03-012-13/+23
|
* glapi.h: drop dispatch_override prototypesGeorge Sapountzis2010-03-011-12/+0
| | | | cannot find them in mesa tree
* glapi.h: misc cosmeticGeorge Sapountzis2010-03-011-11/+11
| | | | | - revert context/dispatch order, similar to glapi.c - stray GL_GLEXT_PROTOTYPES
* glapi.h: consolidate GET_DISPATCH() and GET_CURRENT_CONTEXT() macrosGeorge Sapountzis2010-03-012-48/+66
| | | | | | | | Use likely() macro, as this is what most projects use. Drops GL_CALL define, cannot find it in mesa tree. Also, whitespace cleaunps in glthread.h
* Revert "glapi: Remove unnecessary headers."José Fonseca2010-02-261-0/+2
| | | | | | This reverts commit ead22e6a328e7d7b7c0b52af4705634e989e4d69. This headers are not unnecessary on windows.
* glapi: Remove unnecessary headers.Vinson Lee2010-02-251-2/+0
|
* glapi/gen: just copy in glx/glapiGeorge Sapountzis2010-02-251-23/+21
|
* glapi: EXTRA_DEBUG is never defined, make this explicitGeorge Sapountzis2010-02-251-1/+1
|
* glapi: minor ugliness to be able to copy to xorgGeorge Sapountzis2010-02-255-15/+22
|