Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-10 | gallium: Detect buffer overflows in the homegrown memory debugger. | José Fonseca | |
2008-06-10 | pipebuffer: Alternative buffer manager. | José Fonseca | |
For situations where one has a reserve memory pool, or a faster/slower pool. | |||
2008-06-10 | pipebuffer: Be more lenient when matching cached buffer sizes. | José Fonseca | |
Reuse cached buffers up to twice as big a requested. | |||
2008-06-10 | gallium: Deprecate GETENV. Replace by debug_get_bool_option. | José Fonseca | |
debug_get_bool_option will interpret "n", "no", "0", "f", or "false" as FALSE; and everything else as TRUE. The default value (used when the variable is not set) is received as a parameter. | |||
2008-06-09 | mesa: Xlib libGL.so fixes from master | Brian Paul | |
2008-06-09 | fix Xlib libGL.so build problem. | Brian Paul | |
Also, build driverfuncs.c into libmesa.a since it's always needed. | |||
2008-06-09 | mesa: remove unused api_eval.h header file | Brian Paul | |
2008-06-09 | mesa: refactor: move _mesa_update_minmax/histogram() into image.c | Brian Paul | |
2008-06-09 | mesa: refactor: move multisample-related functions into new multisample.c file | Brian Paul | |
2008-06-09 | mesa: refactor: move _mesa_resizebuffers(), _mesa_ResizeBuffersMESA() to ↵ | Brian Paul | |
framebuffer.c | |||
2008-06-09 | mesa: refactor: move glClear, glClearColor into new clear.c file. | Brian Paul | |
2008-06-09 | gallium: include scissor.h | Brian Paul | |
2008-06-09 | mesa: refactor: move scissor functions into new scissor.c file | Brian Paul | |
2008-06-09 | mesa: refactor: move _mesa_init_exec_table() into new api_exec.c file | Brian Paul | |
2008-06-09 | mesa: refactor: move pixel map/scale/bias code into image.c | Brian Paul | |
pixel.c is just the API-related code now. | |||
2008-06-09 | mesa: refactor: new _mesa_init_pixelstore() function | Brian Paul | |
2008-06-09 | mesa: refactor: move glReadPixels code into new readpix.c file | Brian Paul | |
2008-06-09 | mesa: refactor: move glPixelStore function into new pixelstore.c file | Brian Paul | |
2008-06-09 | s/SOLO/MESA/ | Brian Paul | |
2008-06-09 | s/SOLO/MESA/ | Brian Paul | |
2008-06-09 | mesa: chmod a-x context.c | Brian Paul | |
2008-06-09 | Makefile clean-ups | Brian Paul | |
2008-06-09 | more old stuff, rename SOLO->MESA, etc | Brian Paul | |
2008-06-09 | Makefile clean-ups | Brian Paul | |
2008-06-09 | Makefile clean-ups | Brian Paul | |
2008-06-09 | more old stuff, rename SOLO->MESA, etc | Brian Paul | |
2008-06-09 | mesa: disable VF_SOURCES | Brian Paul | |
2008-06-09 | mesa: remove some obsolete gallium bits | Brian Paul | |
2008-06-09 | mesa: get rid of FBDEV/SVGA/etc bits | Brian Paul | |
2008-06-09 | egl: s/softpipe_egl.so/egl_softpipe.so/ | Brian Paul | |
2008-06-09 | egl: choose between DRI and softpipe drivers | Brian Paul | |
2008-06-09 | glsl: fix array size initialiazers using const variables | Zack Rusin | |
e.g. const int kernelSize = 9; uniform vec2 kernel[kernelSize]; | |||
2008-06-09 | gallium: disable a tgsi_dump() call | Brian Paul | |
2008-06-09 | Check for NULL pointer | Alan Hourihane | |
2008-06-09 | glx: use goto's vs. nested if's ala xserver | George Sapountzis | |
compile tested only | |||
2008-06-09 | glx: add dri_common.c ala xserver | George Sapountzis | |
also drop driFilterModes which is unused in preparation of loading swrast_dri.so | |||
2008-06-09 | dri/swrast: minor cosmetic | George Sapountzis | |
2008-06-09 | i915: Disable color buffer writes if no color buffer is attached | Jakob Bornecrantz | |
2008-06-09 | mesa: Most of the functions of MESA_TEXTURE_S8_Z24 are now supported | Jakob Bornecrantz | |
2008-06-08 | r300: Workaround hardware readcache problem | Nicolai Haehnle | |
This workaround is similar to the one found in r200_span.c. It seems like some part of the read hardware doesn't realize that VRAM has changed. By reading from an arbitrary position, this is fixed. The piglit test bugs/r300-readcache is a regression test for this bug. | |||
2008-06-08 | remove realglx.[ch] from build | Brian | |
2008-06-08 | mesa: Add MESA_FORMAT_S8_Z24 texture format | Jakob Bornecrantz | |
None of the fetch and store functions implemented. This atleast stops shadowtex from locking the GPU on i915 with the linux-dri-x86 target. It most of it looks okay, with the exception of actually displaying the texture. | |||
2008-06-08 | i965: fix OPCODE_TEX when additional ops are needed | Roland Scheidegger | |
2008-06-07 | r300: Allow driconf to set a default anisotropy. | Corbin Simpson | |
If an app does not use GL_EXT_tex_filter_aniso, this lets driconf set it instead. | |||
2008-06-07 | r300: Some cleanups in depth and stencil state handling | Nicolai Haehnle | |
This also fixes a bug with Zfunc set to GL_NEVER in glean/paths. | |||
2008-06-07 | r300: Apply writemask when clearing stencil buffer | Nicolai Haehnle | |
This fixes the glean/maskedClear test. | |||
2008-06-07 | r300: Fix stencil buffer clear | Nicolai Haehnle | |
The glean/readPixSanity test passes now. | |||
2008-06-07 | r300: Further anisotropic filtering fixes | Nicolai Haehnle | |
Thanks to Corbin for the initial cut today. Fixed some minor stuff (in particular, make sure we still use a MIP_LINEAR filtering mode; anisotropy without MIP_LINEAR filtering is not the truly pleasing anisotropy). | |||
2008-06-07 | r300: Update LOD_BIAS register constants | Nicolai Haehnle | |
2008-06-07 | draw: fix temp vs output buffer typo in vsvg_run_elts | Keith Whitwell | |