Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-12 | r600: clean up Create/DestroyContext | Alex Deucher | |
2009-08-12 | r200: Prevent TexGenMatrix from leaking when destroying r200 context. | Pauli Nieminen | |
Signed-off-by: Pauli Nieminen <suokkos@gmail.com> | |||
2009-08-12 | vbo: fix incorrect pointer | Brian Paul | |
2009-08-12 | glsl: add gl_Vertex, gl_Normal, etc to list of active attributes | Brian Paul | |
If a vertex shader uses gl_Vertex, gl_Normal, etc, we need to include them when the user queries the list of active attributes. Before this we were just including the user-defined attributes. | |||
2009-08-12 | glsl: move predefined shader input/output info/code to slang_builtin.c | Brian Paul | |
This is a more logical place for this code. Also add some functions for querying vertex shader input names, types, etc. | |||
2009-08-12 | vbo: Avoid extra validation of DrawElements. | Eric Anholt | |
This saves mapping the index buffer to get a bounds on the indices that drivers just drop on the floor in the VBO case (cache win), saves a bonus walk of the indices in the CheckArrayBounds case, and other miscellaneous validation. On intel it's a particularly a large win (50-100% in my app) because even though we let the indices stay in both CPU and GPU caches, we still end up waiting for the GPU to be done with the buffer before reading from it. Drivers that want the min/max_index fields must now check index_bounds_valid and use vbo_get_minmax_index before using them. | |||
2009-08-12 | radeon: Minor warnings cleanup. | Eric Anholt | |
2009-08-12 | i965: Use _MaxElement instead of index-calculated min/max for VBO bounds. | Eric Anholt | |
2009-08-12 | radeon: Add protection against recursive DRM locking. | Pauli Nieminen | |
Reference counting protects DRM lock call from recursive locking that would cause hang. Code also adds optional debugging output for recursive call that is compiled only if NDEBUG is not defined. This code is not 100% thread safe because mesa doesn't include increment and test atomic operation. There is built-in gcc functions but they are only available from gcc 4.2. | |||
2009-08-12 | st/xorg: Acquire/drop DRM master in order to work with multiple servers. | Michel Dänzer | |
2009-08-12 | gallium/glx/xlib: main/ prefix on Mesa includes, remove -I$(TOP)/src/mesa/main/ | Brian Paul | |
2009-08-12 | gallium/glx/xlib: updated comments | Brian Paul | |
2009-08-12 | gallium/glx/xlib: delete fakeglx.h | Brian Paul | |
2009-08-12 | gallium/glx/xlib: rename fakeglx.c to glx_api.c | Brian Paul | |
2009-08-12 | gallium/glx/xlib: delete glxapi.h | Brian Paul | |
2009-08-12 | gallium/glx/xlib: rename fakeglx_fonts.c to glx_usefont.c | Brian Paul | |
2009-08-12 | gallium/glx/xlib: rename glxapi.c to glx_getproc.c | Brian Paul | |
2009-08-12 | gallium/glx/xlib: don't include fakeglx.h | Brian Paul | |
2009-08-12 | gallium/glx/xlib: overhaul and simplification of the Gallium Xlib-based GLX | Brian Paul | |
The old GLX dispatch table stuff isn't needed (same story for the Mesa/Xlib driver). The intention of that code was being able to switch on the fly between the real GLX library and the fake/Xlib-based emulation. That hasn't been used in a long time. Next up: some file renaming. | |||
2009-08-12 | r600: A shader is bound that exports Z as a float into Red channel | Cooper Yuan | |
2009-08-11 | egl: Use _eglAddAtExitCall to free thread infos and displays. | Chia-I Wu | |
Thread infos and displays are usually not freed by applications. This commit add atexit calls to free them. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Add _eglAddAtExitCall. | Chia-I Wu | |
Add a convenient wrapper to register atexit calls. Add mutex to _eglGlobal along the way. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Make _eglGlobal initialize statically. | Chia-I Wu | |
Now that display and surface hash tables are moved out, _eglGlobal can be initialized statically. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Implement _eglFiniDisplay. | Chia-I Wu | |
_eglFiniDisplay is called at exit time to free allocated displays. It is, however, not used right now. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Make display and surface hash tables local. | Chia-I Wu | |
Move display and surface hash tables to egldisplay.c, and have them initialized on demand. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Initialize current thread management on demand. | Chia-I Wu | |
Current thread management was initialized in _eglInitGlobals, which is called only in eglGetDisplay. Since EGL does not require eglGetDisplay to be called first, the initialization is better to be done on demand. _eglFiniCurrent is removed, as it is not called at all. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Destroy eglThreadInfo on thread exit. | Chia-I Wu | |
This is done through pthread TSD destructor. It destroys all thread infos except for main thread's. The thread info of the main thread is destroyed by _eglFiniCurrent. TLS case is not supported yet. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | egl: Add eglmutex.h. | Chia-I Wu | |
The implementation uses pthread mutex when available. Otherwise, it is no-op. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-11 | glx: fix signedness warning | RALOVICH, Kristóf | |
2009-08-11 | mesa: handle glDrawPixels images which are larger than max rect texture size | Brian Paul | |
2009-08-11 | mesa: added _mesa_meta_draw_pixels() | Brian Paul | |
2009-08-11 | mesa: added META_FOG and optimize some meta_begin/end() code | Brian Paul | |
2009-08-11 | gallium/trace: remove stray semicolons | Brian Paul | |
2009-08-11 | gallium/xlib: add missing tex_usage parameter | Brian Paul | |
2009-08-11 | gallium/egl: add missing tex_usage parameter | Brian Paul | |
2009-08-11 | gallium/xlib: add missing tex_usage parameter | Brian Paul | |
2009-08-11 | gallium/identity: remove stray semicolons | Brian Paul | |
2009-08-11 | r600: use the drm ioctls for swap and texture upload | Alex Deucher | |
NOTE: THIS REQUIRES AN UPDATED DRM! | |||
2009-08-12 | i915g: Reduce max relocs | Jakob Bornecrantz | |
2009-08-12 | i915g: Check relocs as well | Jakob Bornecrantz | |
2009-08-11 | i915g: Implement surface_buffer_create for softpipe | Jakob Bornecrantz | |
In order to run softpipe on st/xorg we need this function | |||
2009-08-11 | gallium: Add texture usage information to surface_buffer_create | Jakob Bornecrantz | |
We need aditional meta data about the usage of the surface in softpipe because we need to be able tell the diffrence between PRIMARY and DISPLAY_TARGET surfaces. | |||
2009-08-11 | mesa/glapi: regenerated files from gl_API.xml | Brian Paul | |
2009-08-11 | gallium: fix debug_printf() format string | Brian Paul | |
2009-08-11 | glut: fix incorrect Vista maximisation size due to WM_GETMINMAXINFO handling | Brian Paul | |
See bug 23182. | |||
2009-08-11 | mesa: remove _mesa_set_vp_override() from _mesa_Bitmap() | Brian Paul | |
This reverts part of commit 2c9812e3d346eb07180da520909b142e8afc1c59. The calls to _mesa_set_vp_override() were causing extra state validation and caused the gallium state tracker's bitmap cache to get flushed on every call. | |||
2009-08-11 | r300g: Fix up remaining VAP_CNTL_STATUS writes for big endian. | Michel Dänzer | |
2009-08-11 | r300g: Emit relocations for pitch registers. | Michel Dänzer | |
Fixes CS failures with tiling enabled kernels. | |||
2009-08-11 | r300g: a typo of debug message | Cooper Yuan | |
2009-08-11 | r600: update num of interp if posizition is used | Cooper Yuan | |