Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-25 | vmware/xorg: Do buffer round-robin logic differently | Jakob Bornecrantz | |
2010-01-25 | st/xorg: Improve options and print them to log | Jakob Bornecrantz | |
Set 2D acceleration to off by default Get fallback debugging from the Xorg config Also print if 3D acceleration is enabled | |||
2010-01-25 | vmware/xorg: Export pci_probe function for ugly chain-loading | Jakob Bornecrantz | |
2010-01-25 | st/xorg: Export helper function for detecting modesetting | Jakob Bornecrantz | |
2010-01-25 | st/xorg: Fix warning | Jakob Bornecrantz | |
2010-01-24 | st/mesa: fix int->uint conversion for negative scissor bound values | Brian Paul | |
Based on a patch by Xavier Chantry <chantry.xavier@gmail.com>: If x+width or y+height is negative, then maxx or maxy will get a bogus value when converting that to unsigned. Fix this by setting 0 as minimal value. This was also triggered by teeworlds, but only with some combination of resolution and map section. For example upper part of dm2 at 1280x1024. | |||
2010-01-24 | mesa: move _mesa_debug() call earlier in _mesa_Scissor | Brian Paul | |
Part of a patch from Xavier Chantry <chantry.xavier@gmail.com> | |||
2010-01-24 | st/mesa: fix unsigned/signed breakage in scissor | Xavier Chantry | |
commit 53174afeeb introduced a portability change that converted GLint x,y to GLuint. That breaks when x and y are negative, which seems to be allowed, and which at least one game uses : teeworlds. Rather than simply reverting the change, it seems possible to convert the 16bit unsigned to GLint so that comparisons are made between signed integers instead. This hopefully does not break anything while keeping MSVC happy. Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-24 | r200: Silence fprintf format warning. | Vinson Lee | |
2010-01-23 | x86: Do not build read_rgba_span_x86.S on Mac OS X. | Vinson Lee | |
read_rgba_span_x86.S uses the pseudo-ops .hidden and .type which are not recognized on Mac OS X. | |||
2010-01-23 | x86: Do not use .hidden pseudo-op on Mac OS X. | Vinson Lee | |
The .hidden directive is an unknown pseudo-op on Mac OS X. | |||
2010-01-23 | glapi: Do not use .type pseudo-op on Mac OS X. | Vinson Lee | |
The .type directive is an unknown pseudo-op on Mac OS X. | |||
2010-01-23 | scons: Do not use ld options start-group and end-group on Darwin. | Vinson Lee | |
Mac OS X ld does not support these options. | |||
2010-01-23 | scons: Define _DARWIN_C_SOURCE on Darwin builds. | Vinson Lee | |
2010-01-23 | progs/demos: Remove unnecessary header from shadowtex.c. | Vinson Lee | |
2010-01-23 | r300: Remove unnecessary headers. | Vinson Lee | |
2010-01-23 | intel: Remove unnecessary headers. | Vinson Lee | |
2010-01-23 | radeon: Remove unused variable. | Vinson Lee | |
2010-01-23 | tdfx: Remove unnecessary headers. | Vinson Lee | |
2010-01-23 | sis: Remove unnecessary headers. | Vinson Lee | |
2010-01-23 | savage: Remove unnecessary headers. | Vinson Lee | |
2010-01-23 | mga: Remove unnecessary headers. | Vinson Lee | |
2010-01-22 | i965: Remove unnecessary headers. | Vinson Lee | |
2010-01-22 | i915: Remove unnecessary headers. | Vinson Lee | |
2010-01-22 | gallium/util: fix incorrect shift in a4r4g4b4_put_tile_rgba() | Brian Paul | |
Fixes fd.o bug 23313. | |||
2010-01-22 | mesa: re-implement _mesa_ProgramEnvParameter4fvARB() with memcpy() | Brian Paul | |
This is faster and ensures that NaN floats get stored properly. Before, NaN values (which might be used with UP2H, UP2US, UP4B and UP4UB) weren't getting stored properly with gcc -O3. This is the second part of the fix for the piglit fp-unpack-01 failure (bug 25973). | |||
2010-01-22 | mesa: use new fetch_vector1ui() function for 'unpack' GPU instructions | Brian Paul | |
The UP2H, UP2US, UP4B and UP4UB instructions interpret the float registers as integers. With gcc -O3 some bits were getting mixed up somewhere. This is part of the fix for the piglit fp-unpack-01 test failure (bug 25973). | |||
2010-01-22 | xlib/softpipe: more buffer free fixes | Brian Paul | |
The previous memory leak fix didn't always work properly. Now check the xm_buffer::smh field (now documented!) to see if the buffer points to shared memory. | |||
2010-01-22 | gallium/draw: apply DRAW_PIPE_FLAG_MASK to all vertex elements | Brian Paul | |
Depending on first/last provoking vertex either the first or last element/index may have the extra DRAW_PIPE_x flags. Mask off those bits for all vertex elements to be safe (esp. for the quad case). This may be overly cautious, but it's a cheap operation. Fixes a segfault caused by large/bogus vertex indexes otherwise. | |||
2010-01-22 | gallium/draw: added comments, whitespace fixes | Brian Paul | |
2010-01-22 | Fix PowerPC related typo in spantmp2.h | Ruediger Oertel | |
Signed-off-by: Matthias Hopf <mhopf@suse.de> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-22 | vmware/core: Update for pipebuffer changes. | José Fonseca | |
In particular, delay patching GMR relocations until the buffers are validated, since the buffers relative offset can only be established then. | |||
2010-01-21 | st/mesa: Remove unnecessary header from st_cb_viewport.c. | Vinson Lee | |
2010-01-21 | progs/trivial: Remove unnecessary header from tri-fbo-tex-mip.c. | Vinson Lee | |
2010-01-21 | i915g: Remove unnecessary header. | Vinson Lee | |
2010-01-21 | pipebuffer: Remove unnecessary header. | Vinson Lee | |
2010-01-21 | draw: Remove unnecessary headers. | Vinson Lee | |
2010-01-21 | svga: Remove unused variable. | Vinson Lee | |
2010-01-21 | vmware/core: Flush preemptively the FIFO commands to keep the GMR working ↵ | José Fonseca | |
set within reasonable bounds. | |||
2010-01-21 | vmware/core: Put GMR pool size in a define. | José Fonseca | |
2010-01-21 | vmw/wgl: Update for pipebuffer changes. | José Fonseca | |
This is a minimum change to keep things building and running minimally -- it might cause applications to fail to allocate buffers due to out of GMR memory. A proper update will be commited later. | |||
2010-01-21 | svga: Remove duplicate code. | José Fonseca | |
2010-01-21 | svga: Remove unused code. | José Fonseca | |
2010-01-21 | svga: Don't swap buffers to system memory -- winsys' responsibility. | José Fonseca | |
2010-01-21 | pipebuffer: Release the lock during map wait. Cleanups. | José Fonseca | |
2010-01-21 | pipebuffer: Swap buffers out to system memory when running out of memory. | José Fonseca | |
2010-01-21 | svga: Avoid synchronization issues when doing SW TNL. | José Fonseca | |
2010-01-21 | mesa: Use pipe_buffer_write_nooverlap where appropriate. | José Fonseca | |
2010-01-21 | util: Set DISCARD & UNSYNCHRONIZED when uploading vertices sequentially. | José Fonseca | |
2010-01-21 | util: Use pipe_buffer_write_nooverlap in blits / mipmap generation. | José Fonseca | |