| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-12-17 | llvmpipe: added function comments | Brian Paul | |
| 2009-12-17 | util/format: Fix bogus assertion. | Michal Krol | |
| 2009-12-17 | s/desc->type/desc->channel[0].type/ | Michal Krol | |
| 2009-12-17 | glsl/apps: Add dummy install target to fix 'make install' | Sedat Dilek | |
| Signed-off-by: Brian Paul <brianp@vmware.com> | |||
| 2009-12-17 | llvmpipe: remove unused code, added comments, etc | Brian Paul | |
| 2009-12-17 | llvmpipe: replace INT_MIN/2 with INT_MIN | Brian Paul | |
| Since changing the in/out test we can just use INT_MIN to be sure the comparison against the step values always passes. | |||
| 2009-12-17 | Merge branch 'glsl-pp-rework-2' | Michal Krol | |
| 2009-12-17 | llvmpipe: improve the in/out test a little | Brian Paul | |
| Instead of: s = c + step m = s > 0 Do: m = step > c (with negated c) | |||
| 2009-12-17 | llvmpipe: keep copy of framebuffer state in setup context | Keith Whitwell | |
| Avoids crashes when first frame is rendered before window is mapped. Avoids potential issue where fb state is changed before setup context is flushed. | |||
| 2009-12-17 | radeon: drop assert accessing cref which is meant to be hidden | Dave Airlie | |
| 2009-12-17 | radeon: drop unused members of radeon_state. | Dave Airlie | |
| 2009-12-17 | r600: move structs for legacy cmdbuf into cmdbuf C file. | Dave Airlie | |
| these really shouldn't be exposed here | |||
| 2009-12-16 | llvmpipe: do final the pixel in/out triangle test in the fragment shader | Brian Paul | |
| The test to determine which of the pixels in a 2x2 quad is now done in the fragment shader rather than in the calling C code. This is a little faster but there's a few more things to do. Note that the step[] array elements are in a different order now. Rather than being in row-major order for the 4x4 grid, they're in "quad-major" order. The setup of the step arrays is a little more complicated now. So is the course/intermediate tile test code, but some lookup tables help with that. Next steps: - early-cull 2x2 quads which are totally outside the triangle. - skip the in/out test for fully contained quads - make the in/out comparison code tighter/faster. | |||
| 2009-12-16 | r600: Invert front face winding when rendering to FBO | Alex Deucher | |
| fixes fdo bug 25679 Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
| 2009-12-16 | gallium: edgeflags change fixes | Roland Scheidegger | |
| use correct number of vertex inputs fix not running pipeline in case of edgeflags changes to mesa to tgsi translation still very broken | |||
| 2009-12-16 | llvmpipe: added lp_build_int32_vec4_type() | Brian Paul | |
| 2009-12-16 | llvmpipe: refactor lp_build_cmp() to use lp_build_compare() | Brian Paul | |
| 2009-12-16 | mesa: set version string to 7.6.1-rc4 | Ian Romanick | |
| 2009-12-16 | mesa: add missing semicolon | Brian Paul | |
| See bug 25663. | |||
| 2009-12-16 | r600 : clean a bit to prepare to enable gl2. | Richard Li | |
| 2009-12-16 | llvmpipe: add LP_DEBUG env var | José Fonseca | |
| Cherry-picked from dec35d04aeb398eef159aaf8cde5e0d04622b811. | |||
| 2009-12-16 | llvmpipe: fix broken TGSI_OPCODE_FRC codegen | Brian Paul | |
| 2009-12-16 | llvmpipe: fix broken lp_build_abs() | Brian Paul | |
| 2009-12-16 | mesa: test for __blrts for CPU_TO_LE32() | Brian Paul | |
| See bug 25663. | |||
| 2009-12-16 | mesa: no dlopen on BlueGene | Brian Paul | |
| See bug 25663. | |||
| 2009-12-16 | mesa: remove //-style comments | Brian Paul | |
| 2009-12-16 | st/mesa: remove //-style comments | Brian Paul | |
| 2009-12-15 | r300g: fix emission of which textures are enabled | Marek Olšák | |
| It fixes most of the "Bad CS" issues in piglit/texCombine and piglit/fbo. Some other issues of this kind will get fixed in the kernel soon (depth-only rendering, S3TC, and RGTC). | |||
| 2009-12-15 | r300g: clean up the invariant state | Marek Olšák | |
| 2009-12-15 | r300g: clamp vertex indices to [min,max] everywhere | Marek Olšák | |
| 2009-12-15 | r300g: if no colorbuffers are set, disable blending and set the color mask to 0 | Marek Olšák | |
| This seems to be the only way to disable the first colorbuffer. | |||
| 2009-12-15 | r300g: set the number of colorbuffers in RB3D_CCTL | Marek Olšák | |
| 2009-12-15 | r300g: remove unnecessary flush in set_sampler_textures | Marek Olšák | |
| 2009-12-15 | r300g: add Z24X8 to the list of unsupported sampler formats on R3xx-R4xx | Marek Olšák | |
| 2009-12-15 | r300g: add acceleration of the clear, surface_copy, and surface_fill functions | Marek Olšák | |
| 2009-12-15 | r300g: flush CS if a buffer being deleted is referenced by it | Marek Olšák | |
| 2009-12-15 | unichrome: Silence compiler warnings. | Vinson Lee | |
| 2009-12-15 | sis: Silence compiler warnings. | Vinson Lee | |
| 2009-12-15 | savage: Silence compiler warnings. | Vinson Lee | |
| 2009-12-16 | r300: Fix typo on < R5xx RS setup for blits. | Michel Dänzer | |
| 2009-12-15 | llvmpipe: tighten up an assertion | Brian Paul | |
| 2009-12-15 | r128: Silence uninitialized variable warnings in r128_tris.c. | Vinson Lee | |
| 2009-12-15 | dri: Initialize variable in driBindContext. | Vinson Lee | |
| 2009-12-15 | intel: Fallback to software if drawable size is > MaxRenderbufferSize | Ian Romanick | |
| This prevents the mystery blank window if, for example, glxgears is resized larger than 2048 wide on 915. Since the Intel drivers in Mesa 7.6 lack GTT mapped fallbacks, the performance is a slideshow at best. On Mesa 7.7 and later the performance is much better. | |||
| 2009-12-15 | x86: ifdef out unused function cptr. | Vinson Lee | |
| 2009-12-15 | util/blitter: kill the draw_quad callback | Marek Olšák | |
| 2009-12-15 | util/blitter: allocate most of the state objects on-demand | Marek Olšák | |
| 2009-12-15 | util/blitter: use PIPE_MAX_* limits, and fix a memory leak | Marek Olšák | |
| 2009-12-15 | pipe: add PIPE_MAX_TEXTURE_TYPES | Marek Olšák | |
| 2009-12-15 | util: add blitter | Marek Olšák | |
