Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-25 | Merge branch '7.8' | Brian Paul | |
2010-03-25 | glapi: return int = 0 from NoOpGeneric() | Brian Paul | |
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. | |||
2010-03-22 | Merge branch '7.8' | Brian Paul | |
Conflicts: src/gallium/drivers/cell/ppu/cell_screen.c src/mesa/state_tracker/st_cb_drawpixels.c | |||
2010-03-21 | glapi: Fix aliases to non-static functions. | Chia-I Wu | |
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. | |||
2010-03-20 | glapi: Correctly generate static disatches for X86. | Chia-I Wu | |
The entry point names, instead of the function name, should be used to test if the entry point should be statically dispatched. | |||
2010-03-17 | glapi: fix assorted warnings | Brian Paul | |
And replace some instances of GLuint with unsigned int to avoid pulling in GL/gl.h | |||
2010-03-14 | glapi: exec_malloc for dispatch stubs | George Sapountzis | |
2010-03-14 | glapi: this one should be by THREAD | George Sapountzis | |
2010-03-14 | glapi: more organize code by arch | George Sapountzis | |
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. | |||
2010-03-14 | glapi: organize arch-specific code by arch (2) | George Sapountzis | |
2010-03-14 | glapi: organize arch-specific code by arch | George Sapountzis | |
2010-03-10 | glapi: fix bug with tls and relocs | George Sapountzis | |
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. | |||
2010-03-10 | glapi: these two should be ok for add_dispatch ... | George Sapountzis | |
- a function cannot be both static and extension, right ? - we should be setting the offset only if not already set, right ? | |||
2010-03-10 | glapi: comments for _glapi_add_dispatch | George Sapountzis | |
2010-03-10 | glapi: minor cosmetic for _glapi_add_dispatch | George Sapountzis | |
2010-03-10 | glapi: add function set_entry_info | George Sapountzis | |
2010-03-10 | glapi: parameter checking, failure paths, ... for add_function_name | George Sapountzis | |
2010-03-10 | glapi: cosmetic for _glapi_add_dispatch | George Sapountzis | |
- static vs. extension - indent - s/new_offset/static_offset/ - ... | |||
2010-03-10 | glapi: use get_extension_proc in _glapi_add_dispatch | George Sapountzis | |
2010-03-10 | glapi: cosmetic for functions for static table | George Sapountzis | |
make similar to functions for extensions table | |||
2010-03-10 | glapi: add function to find extension by name | George Sapountzis | |
2010-03-10 | glapi: functions for extensions table similar to static table | George Sapountzis | |
2010-03-09 | glapi: allow for any mangle prefix | George Sapountzis | |
2010-03-09 | glapi: split out arch-specific code for entrypoints | George Sapountzis | |
2010-03-09 | glapi: mv table functions to glapi_getproc.c and add local header | George Sapountzis | |
2010-03-09 | drop stray XFree86Server, XGLServer | George Sapountzis | |
2010-03-04 | APPLE_object_purgeable: autogenerated files | Chris Wilson | |
2010-03-04 | APPLE_object_purgeable: xml | Chris Wilson | |
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-03-03 | Fix unmatched parenthesis introduce by previous commits | Ian Romanick | |
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 <ian.d.romanick@intel.com> | |||
2010-03-03 | Remove support for GCC older than 3.3.0 from generated sources | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | Remove support for GCC older than 3.3.0 from generator scripts | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | Remove support for GCC older than 3.3.0 | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | glapi: minor cosmetic | George Sapountzis | |
2010-03-03 | glapi: drop condvar | George Sapountzis | |
Seems unused and replaced by functionality in os module. | |||
2010-03-02 | glapi: fix compile with ES | George Sapountzis | |
2010-03-01 | glapi: Fix syntax. | José Fonseca | |
2010-03-01 | glapi: drop SOLARIS_THREADS | George Sapountzis | |
It seems that SOLARIS_THREADS is not used and does not work. | |||
2010-03-01 | glapi.c: misc coscmetic for FreeTSD | George Sapountzis | |
- 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 | |||
2010-03-01 | glapi.c: misc cosmetic | George Sapountzis | |
mainly, move the multithread check mutex out of the dispatch/context block, closer to where it is used. | |||
2010-03-01 | glapi.c: mv init_glapi_relocs to glapi_getproc.c | George Sapountzis | |
2010-03-01 | glapi.c: mv check_table to glapi_getproc.c | George Sapountzis | |
2010-03-01 | glapi.c: split check_table to not_null and get_proc | George Sapountzis | |
2010-03-01 | glapi.h: drop dispatch_override prototypes | George Sapountzis | |
cannot find them in mesa tree | |||
2010-03-01 | glapi.h: misc cosmetic | George Sapountzis | |
- revert context/dispatch order, similar to glapi.c - stray GL_GLEXT_PROTOTYPES | |||
2010-03-01 | glapi.h: consolidate GET_DISPATCH() and GET_CURRENT_CONTEXT() macros | George Sapountzis | |
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 | |||
2010-02-26 | Revert "glapi: Remove unnecessary headers." | José Fonseca | |
This reverts commit ead22e6a328e7d7b7c0b52af4705634e989e4d69. This headers are not unnecessary on windows. | |||
2010-02-25 | glapi: Remove unnecessary headers. | Vinson Lee | |
2010-02-25 | glapi/gen: just copy in glx/glapi | George Sapountzis | |
2010-02-25 | glapi: EXTRA_DEBUG is never defined, make this explicit | George Sapountzis | |
2010-02-25 | glapi: minor ugliness to be able to copy to xorg | George Sapountzis | |